profile-image.component.ts 461 Bytes
import {Inject, Input, Component} from "ng-forward";

@Component({
    selector: "noosfero-profile-image",
    templateUrl: 'app/components/noosfero/profile-image/profile-image.html',
})
export class ProfileImage {

    @Input() profile: noosfero.Profile;
    defaultIcon: string;

    ngOnInit() {
        this.defaultIcon = 'fa-users';
        if (this.profile && this.profile.type === 'Person') {
            this.defaultIcon = 'fa-user';
        }
    }
}