I am trying to get data from api and show into the table on of the column contains status attribute which return true or false value but I want to show on client side Active or Block instead of this. How can I able to achieve this in angular 2.
How can I able to achieve this in angular 2
Just use javascript/typescript:
const valueFromServer = false; // Assuming
const toShow = valueFromServer ? 'Active' : 'Blocked';
I would suggest a pipe that returns either active or blocked according to the boolean.
import {Pipe, PipeTransform} from '@angular/core';
@Pipe({name: 'activeBlocked'})
export class ActiveBlockedPipe implements PipeTransform {
transform(value) {
return value ? 'Active' : 'Blocked';
}
}
Then you can use it like this in you components template:
{{value | activeBlocked}}
In my opinion this is the easiest to reuse.
You could do it directly in the view:
<td>{{user.IsActive && 'Active' || 'Block'}}</td>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With