Pass multiple values to pipe in Angular 6
up vote
9
down vote
favorite
I need to create a search form in Angular 6 with pipe and must pass multiple arguments to pipe .
nameSearch
, emailSearch
,roleSeach
, accountSearch
<tr *ngFor="let user of data | searchuser: nameSearch" ></tr>
and this my pipe :
@Pipe({
name: 'searchuser'
})
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch: string): IUser {
if(!users) return ;
if(!nameSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
return item.desplayName.toLocaleLowerCase().includes(nameSearch)
});
}
please guide me how create pipe search with multi argument .
Edit :
transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser {
if(!users) return ;
if(!nameSearch) return users;
if(!eamilSearch) return users;
if(!roleSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
item.desplayName.toLocaleLowerCase().includes(nameSearch),
item.email.toLocaleLowerCase().includes(eamilSearch),
item.description.toLocaleLowerCase().includes(roleSearch)
});
}
angular angular6 angular-pipe
add a comment |
up vote
9
down vote
favorite
I need to create a search form in Angular 6 with pipe and must pass multiple arguments to pipe .
nameSearch
, emailSearch
,roleSeach
, accountSearch
<tr *ngFor="let user of data | searchuser: nameSearch" ></tr>
and this my pipe :
@Pipe({
name: 'searchuser'
})
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch: string): IUser {
if(!users) return ;
if(!nameSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
return item.desplayName.toLocaleLowerCase().includes(nameSearch)
});
}
please guide me how create pipe search with multi argument .
Edit :
transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser {
if(!users) return ;
if(!nameSearch) return users;
if(!eamilSearch) return users;
if(!roleSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
item.desplayName.toLocaleLowerCase().includes(nameSearch),
item.email.toLocaleLowerCase().includes(eamilSearch),
item.description.toLocaleLowerCase().includes(roleSearch)
});
}
angular angular6 angular-pipe
1
Have you checked : angular.io/guide/pipes#custom-pipes ?
– Florian
Nov 30 at 9:55
add a comment |
up vote
9
down vote
favorite
up vote
9
down vote
favorite
I need to create a search form in Angular 6 with pipe and must pass multiple arguments to pipe .
nameSearch
, emailSearch
,roleSeach
, accountSearch
<tr *ngFor="let user of data | searchuser: nameSearch" ></tr>
and this my pipe :
@Pipe({
name: 'searchuser'
})
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch: string): IUser {
if(!users) return ;
if(!nameSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
return item.desplayName.toLocaleLowerCase().includes(nameSearch)
});
}
please guide me how create pipe search with multi argument .
Edit :
transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser {
if(!users) return ;
if(!nameSearch) return users;
if(!eamilSearch) return users;
if(!roleSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
item.desplayName.toLocaleLowerCase().includes(nameSearch),
item.email.toLocaleLowerCase().includes(eamilSearch),
item.description.toLocaleLowerCase().includes(roleSearch)
});
}
angular angular6 angular-pipe
I need to create a search form in Angular 6 with pipe and must pass multiple arguments to pipe .
nameSearch
, emailSearch
,roleSeach
, accountSearch
<tr *ngFor="let user of data | searchuser: nameSearch" ></tr>
and this my pipe :
@Pipe({
name: 'searchuser'
})
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch: string): IUser {
if(!users) return ;
if(!nameSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
return item.desplayName.toLocaleLowerCase().includes(nameSearch)
});
}
please guide me how create pipe search with multi argument .
Edit :
transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser {
if(!users) return ;
if(!nameSearch) return users;
if(!eamilSearch) return users;
if(!roleSearch) return users;
nameSearch=nameSearch.toLocaleLowerCase();
return users.filter(item=>
{
item.desplayName.toLocaleLowerCase().includes(nameSearch),
item.email.toLocaleLowerCase().includes(eamilSearch),
item.description.toLocaleLowerCase().includes(roleSearch)
});
}
angular angular6 angular-pipe
angular angular6 angular-pipe
edited Nov 30 at 11:38
asked Nov 30 at 9:48
kianoush
756
756
1
Have you checked : angular.io/guide/pipes#custom-pipes ?
– Florian
Nov 30 at 9:55
add a comment |
1
Have you checked : angular.io/guide/pipes#custom-pipes ?
– Florian
Nov 30 at 9:55
1
1
Have you checked : angular.io/guide/pipes#custom-pipes ?
– Florian
Nov 30 at 9:55
Have you checked : angular.io/guide/pipes#custom-pipes ?
– Florian
Nov 30 at 9:55
add a comment |
2 Answers
2
active
oldest
votes
up vote
6
down vote
accepted
You can add more parameters to the transform
method that you'll have to implement in the pipe.
Make these parameters as optional so that you could use them as per your convenience.
Something like this:
import { Pipe, PipeTransform } from '@angular/core';
export interface IUser {
displayName: string;
name: string;
email: string;
role: string;
account: string;
description: string;
}
@Pipe({
name: 'searchUser'
})
export class SearchUserPipe implements PipeTransform {
transform(
users: IUser,
nameSearch?: string,
emailSearch?: string,
roleSearch?: string,
accountSearch?: string
): IUser {
if (!users) return ;
if (!nameSearch) return users;
nameSearch = nameSearch.toLocaleLowerCase();
users = [...users.filter(user => user.displayName.toLocaleLowerCase() === nameSearch)];
if (!emailSearch) return users;
emailSearch = emailSearch.toLocaleLowerCase();
users = [...users.filter(user => user.email.toLocaleLowerCase() === emailSearch)];
if (!roleSearch) return users;
roleSearch = roleSearch.toLocaleLowerCase();
users = [...users.filter(user => user.role.toLocaleLowerCase() === roleSearch)];
return users;
}
}
Now in your template, you can simply use this pipe
and pass arguments separated by a color(:
), something like this:
<input type="text" placeholder="name" [(ngModel)]="nameSearch">
<input type="text" placeholder="email" [(ngModel)]="emailSearch">
<input type="text" placeholder="role" [(ngModel)]="roleSearch">
<input type="text" placeholder="account" [(ngModel)]="accountSearch">
<table>
<tbody>
<tr *ngFor="let user of data | searchUser: nameSearch: emailSearch: roleSearch: accountSearch">
<td>
{{ user | json }}
</td>
</tr>
</tbody>
</table>
Here's also the Component Code:
import { Component } from '@angular/core';
@Component({...})
export class AppComponent {
nameSearch = '';
emailSearch = '';
roleSearch = '';
accountSearch = '';
data = [...];
}
Here's a Working Sample StackBlitz for your ref.
1
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
when i use one argument, it work , when i use 3 field justroleSearch
is work . i put the code in edit question
– kianoush
Nov 30 at 11:12
Yeah the overall idea is to just use the arguments separated by:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.
– SiddAjmera
Nov 30 at 11:13
|
show 3 more comments
up vote
6
down vote
It should be same way the you pass the single parameter with comma separation as follows,
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch:string, emailSearch:string, roleSearch:
string):IUser {
}
and in template,
<tr *ngFor="let user of data | searchuser: nameSearch : emailSearch : roleSearch" ></tr>
thanks but when i using this code it not work my pipt :transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
accepted
You can add more parameters to the transform
method that you'll have to implement in the pipe.
Make these parameters as optional so that you could use them as per your convenience.
Something like this:
import { Pipe, PipeTransform } from '@angular/core';
export interface IUser {
displayName: string;
name: string;
email: string;
role: string;
account: string;
description: string;
}
@Pipe({
name: 'searchUser'
})
export class SearchUserPipe implements PipeTransform {
transform(
users: IUser,
nameSearch?: string,
emailSearch?: string,
roleSearch?: string,
accountSearch?: string
): IUser {
if (!users) return ;
if (!nameSearch) return users;
nameSearch = nameSearch.toLocaleLowerCase();
users = [...users.filter(user => user.displayName.toLocaleLowerCase() === nameSearch)];
if (!emailSearch) return users;
emailSearch = emailSearch.toLocaleLowerCase();
users = [...users.filter(user => user.email.toLocaleLowerCase() === emailSearch)];
if (!roleSearch) return users;
roleSearch = roleSearch.toLocaleLowerCase();
users = [...users.filter(user => user.role.toLocaleLowerCase() === roleSearch)];
return users;
}
}
Now in your template, you can simply use this pipe
and pass arguments separated by a color(:
), something like this:
<input type="text" placeholder="name" [(ngModel)]="nameSearch">
<input type="text" placeholder="email" [(ngModel)]="emailSearch">
<input type="text" placeholder="role" [(ngModel)]="roleSearch">
<input type="text" placeholder="account" [(ngModel)]="accountSearch">
<table>
<tbody>
<tr *ngFor="let user of data | searchUser: nameSearch: emailSearch: roleSearch: accountSearch">
<td>
{{ user | json }}
</td>
</tr>
</tbody>
</table>
Here's also the Component Code:
import { Component } from '@angular/core';
@Component({...})
export class AppComponent {
nameSearch = '';
emailSearch = '';
roleSearch = '';
accountSearch = '';
data = [...];
}
Here's a Working Sample StackBlitz for your ref.
1
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
when i use one argument, it work , when i use 3 field justroleSearch
is work . i put the code in edit question
– kianoush
Nov 30 at 11:12
Yeah the overall idea is to just use the arguments separated by:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.
– SiddAjmera
Nov 30 at 11:13
|
show 3 more comments
up vote
6
down vote
accepted
You can add more parameters to the transform
method that you'll have to implement in the pipe.
Make these parameters as optional so that you could use them as per your convenience.
Something like this:
import { Pipe, PipeTransform } from '@angular/core';
export interface IUser {
displayName: string;
name: string;
email: string;
role: string;
account: string;
description: string;
}
@Pipe({
name: 'searchUser'
})
export class SearchUserPipe implements PipeTransform {
transform(
users: IUser,
nameSearch?: string,
emailSearch?: string,
roleSearch?: string,
accountSearch?: string
): IUser {
if (!users) return ;
if (!nameSearch) return users;
nameSearch = nameSearch.toLocaleLowerCase();
users = [...users.filter(user => user.displayName.toLocaleLowerCase() === nameSearch)];
if (!emailSearch) return users;
emailSearch = emailSearch.toLocaleLowerCase();
users = [...users.filter(user => user.email.toLocaleLowerCase() === emailSearch)];
if (!roleSearch) return users;
roleSearch = roleSearch.toLocaleLowerCase();
users = [...users.filter(user => user.role.toLocaleLowerCase() === roleSearch)];
return users;
}
}
Now in your template, you can simply use this pipe
and pass arguments separated by a color(:
), something like this:
<input type="text" placeholder="name" [(ngModel)]="nameSearch">
<input type="text" placeholder="email" [(ngModel)]="emailSearch">
<input type="text" placeholder="role" [(ngModel)]="roleSearch">
<input type="text" placeholder="account" [(ngModel)]="accountSearch">
<table>
<tbody>
<tr *ngFor="let user of data | searchUser: nameSearch: emailSearch: roleSearch: accountSearch">
<td>
{{ user | json }}
</td>
</tr>
</tbody>
</table>
Here's also the Component Code:
import { Component } from '@angular/core';
@Component({...})
export class AppComponent {
nameSearch = '';
emailSearch = '';
roleSearch = '';
accountSearch = '';
data = [...];
}
Here's a Working Sample StackBlitz for your ref.
1
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
when i use one argument, it work , when i use 3 field justroleSearch
is work . i put the code in edit question
– kianoush
Nov 30 at 11:12
Yeah the overall idea is to just use the arguments separated by:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.
– SiddAjmera
Nov 30 at 11:13
|
show 3 more comments
up vote
6
down vote
accepted
up vote
6
down vote
accepted
You can add more parameters to the transform
method that you'll have to implement in the pipe.
Make these parameters as optional so that you could use them as per your convenience.
Something like this:
import { Pipe, PipeTransform } from '@angular/core';
export interface IUser {
displayName: string;
name: string;
email: string;
role: string;
account: string;
description: string;
}
@Pipe({
name: 'searchUser'
})
export class SearchUserPipe implements PipeTransform {
transform(
users: IUser,
nameSearch?: string,
emailSearch?: string,
roleSearch?: string,
accountSearch?: string
): IUser {
if (!users) return ;
if (!nameSearch) return users;
nameSearch = nameSearch.toLocaleLowerCase();
users = [...users.filter(user => user.displayName.toLocaleLowerCase() === nameSearch)];
if (!emailSearch) return users;
emailSearch = emailSearch.toLocaleLowerCase();
users = [...users.filter(user => user.email.toLocaleLowerCase() === emailSearch)];
if (!roleSearch) return users;
roleSearch = roleSearch.toLocaleLowerCase();
users = [...users.filter(user => user.role.toLocaleLowerCase() === roleSearch)];
return users;
}
}
Now in your template, you can simply use this pipe
and pass arguments separated by a color(:
), something like this:
<input type="text" placeholder="name" [(ngModel)]="nameSearch">
<input type="text" placeholder="email" [(ngModel)]="emailSearch">
<input type="text" placeholder="role" [(ngModel)]="roleSearch">
<input type="text" placeholder="account" [(ngModel)]="accountSearch">
<table>
<tbody>
<tr *ngFor="let user of data | searchUser: nameSearch: emailSearch: roleSearch: accountSearch">
<td>
{{ user | json }}
</td>
</tr>
</tbody>
</table>
Here's also the Component Code:
import { Component } from '@angular/core';
@Component({...})
export class AppComponent {
nameSearch = '';
emailSearch = '';
roleSearch = '';
accountSearch = '';
data = [...];
}
Here's a Working Sample StackBlitz for your ref.
You can add more parameters to the transform
method that you'll have to implement in the pipe.
Make these parameters as optional so that you could use them as per your convenience.
Something like this:
import { Pipe, PipeTransform } from '@angular/core';
export interface IUser {
displayName: string;
name: string;
email: string;
role: string;
account: string;
description: string;
}
@Pipe({
name: 'searchUser'
})
export class SearchUserPipe implements PipeTransform {
transform(
users: IUser,
nameSearch?: string,
emailSearch?: string,
roleSearch?: string,
accountSearch?: string
): IUser {
if (!users) return ;
if (!nameSearch) return users;
nameSearch = nameSearch.toLocaleLowerCase();
users = [...users.filter(user => user.displayName.toLocaleLowerCase() === nameSearch)];
if (!emailSearch) return users;
emailSearch = emailSearch.toLocaleLowerCase();
users = [...users.filter(user => user.email.toLocaleLowerCase() === emailSearch)];
if (!roleSearch) return users;
roleSearch = roleSearch.toLocaleLowerCase();
users = [...users.filter(user => user.role.toLocaleLowerCase() === roleSearch)];
return users;
}
}
Now in your template, you can simply use this pipe
and pass arguments separated by a color(:
), something like this:
<input type="text" placeholder="name" [(ngModel)]="nameSearch">
<input type="text" placeholder="email" [(ngModel)]="emailSearch">
<input type="text" placeholder="role" [(ngModel)]="roleSearch">
<input type="text" placeholder="account" [(ngModel)]="accountSearch">
<table>
<tbody>
<tr *ngFor="let user of data | searchUser: nameSearch: emailSearch: roleSearch: accountSearch">
<td>
{{ user | json }}
</td>
</tr>
</tbody>
</table>
Here's also the Component Code:
import { Component } from '@angular/core';
@Component({...})
export class AppComponent {
nameSearch = '';
emailSearch = '';
roleSearch = '';
accountSearch = '';
data = [...];
}
Here's a Working Sample StackBlitz for your ref.
edited Nov 30 at 11:25
answered Nov 30 at 9:59
SiddAjmera
11.7k21137
11.7k21137
1
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
when i use one argument, it work , when i use 3 field justroleSearch
is work . i put the code in edit question
– kianoush
Nov 30 at 11:12
Yeah the overall idea is to just use the arguments separated by:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.
– SiddAjmera
Nov 30 at 11:13
|
show 3 more comments
1
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
when i use one argument, it work , when i use 3 field justroleSearch
is work . i put the code in edit question
– kianoush
Nov 30 at 11:12
Yeah the overall idea is to just use the arguments separated by:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.
– SiddAjmera
Nov 30 at 11:13
1
1
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
thanks when i using your code it not show me any list
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
i edit the question
– kianoush
Nov 30 at 11:00
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
@kianoush, could you please add some sample data as well to work with?
– SiddAjmera
Nov 30 at 11:06
when i use one argument, it work , when i use 3 field just
roleSearch
is work . i put the code in edit question– kianoush
Nov 30 at 11:12
when i use one argument, it work , when i use 3 field just
roleSearch
is work . i put the code in edit question– kianoush
Nov 30 at 11:12
Yeah the overall idea is to just use the arguments separated by
:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.– SiddAjmera
Nov 30 at 11:13
Yeah the overall idea is to just use the arguments separated by
:
. But in case of static arguments wrap them around quotes. In case of arguments as I have as of now in the Updated answer and StackBlitz, you can use the properties as I've done.– SiddAjmera
Nov 30 at 11:13
|
show 3 more comments
up vote
6
down vote
It should be same way the you pass the single parameter with comma separation as follows,
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch:string, emailSearch:string, roleSearch:
string):IUser {
}
and in template,
<tr *ngFor="let user of data | searchuser: nameSearch : emailSearch : roleSearch" ></tr>
thanks but when i using this code it not work my pipt :transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
add a comment |
up vote
6
down vote
It should be same way the you pass the single parameter with comma separation as follows,
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch:string, emailSearch:string, roleSearch:
string):IUser {
}
and in template,
<tr *ngFor="let user of data | searchuser: nameSearch : emailSearch : roleSearch" ></tr>
thanks but when i using this code it not work my pipt :transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
add a comment |
up vote
6
down vote
up vote
6
down vote
It should be same way the you pass the single parameter with comma separation as follows,
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch:string, emailSearch:string, roleSearch:
string):IUser {
}
and in template,
<tr *ngFor="let user of data | searchuser: nameSearch : emailSearch : roleSearch" ></tr>
It should be same way the you pass the single parameter with comma separation as follows,
export class SearchuserPipe implements PipeTransform {
transform(users: IUser, nameSearch:string, emailSearch:string, roleSearch:
string):IUser {
}
and in template,
<tr *ngFor="let user of data | searchuser: nameSearch : emailSearch : roleSearch" ></tr>
answered Nov 30 at 9:52
Sajeetharan
115k27157215
115k27157215
thanks but when i using this code it not work my pipt :transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
add a comment |
thanks but when i using this code it not work my pipt :transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
thanks but when i using this code it not work my pipt :
transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
thanks but when i using this code it not work my pipt :
transform(users: IUser, nameSearch: string ,eamilSearch:string,roleSearch:string): IUser { if(!users) return ; if(!nameSearch) return users; if(!eamilSearch) return users; if(!roleSearch) return users; nameSearch=nameSearch.toLocaleLowerCase(); return users.filter(item=> { item.desplayName.toLocaleLowerCase().includes(nameSearch), item.email.toLocaleLowerCase().includes(eamilSearch), item.description.toLocaleLowerCase().includes(roleSearch) });
– kianoush
Nov 30 at 10:57
i edit the question
– kianoush
Nov 30 at 11:00
i edit the question
– kianoush
Nov 30 at 11:00
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53555003%2fpass-multiple-values-to-pipe-in-angular-6%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Have you checked : angular.io/guide/pipes#custom-pipes ?
– Florian
Nov 30 at 9:55