ing
This commit is contained in:
parent
fbab76addc
commit
e8ab9a3234
|
@ -1,7 +1,7 @@
|
||||||
<div class="profile" [ngClass]="{'profile-expanded':active}" *ngIf="member">
|
<div class="profile" [ngClass]="{'profile-expanded':active}" *ngIf="domainMember$ | async as domainMember">
|
||||||
<a href="#" (click)="onClick($event)">
|
<a href="#" (click)="onClick($event)">
|
||||||
<img class="profile-image" src="assets/layout/images/avatar.png" />
|
<img class="profile-image" src="assets/layout/images/avatar.png" />
|
||||||
<span class="profile-name">{{name}}</span>
|
<span class="profile-name">{{domainMember.member.name}}</span>
|
||||||
<i class="material-icons">keyboard_arrow_down</i>
|
<i class="material-icons">keyboard_arrow_down</i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -9,6 +9,7 @@ import { AuthContainerSelector } from '@overflow/shared/auth/store';
|
||||||
|
|
||||||
import { AppComponent } from '../../../../app.component';
|
import { AppComponent } from '../../../../app.component';
|
||||||
import { PagesComponent } from '../../../../pages/pages.component';
|
import { PagesComponent } from '../../../../pages/pages.component';
|
||||||
|
import { DomainMember } from '@overflow/commons-typescript/model/domain';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'of-inline-profile',
|
selector: 'of-inline-profile',
|
||||||
|
@ -28,7 +29,7 @@ import { PagesComponent } from '../../../../pages/pages.component';
|
||||||
})
|
})
|
||||||
export class AppInlineProfileComponent implements OnInit {
|
export class AppInlineProfileComponent implements OnInit {
|
||||||
active: boolean;
|
active: boolean;
|
||||||
member$: Observable<Member>;
|
domainMember$: Observable<DomainMember>;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
public app: PagesComponent,
|
public app: PagesComponent,
|
||||||
|
@ -37,7 +38,7 @@ export class AppInlineProfileComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.member$ = this.store.select(AuthContainerSelector.selectDomainMember);
|
this.domainMember$ = this.store.select(AuthContainerSelector.selectDomainMember);
|
||||||
}
|
}
|
||||||
|
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user