在我的项目中有一个场景,其中必须根据为登录的特定用户提供的角色权限隐藏内容。
因此,我们创建了一个名为<app-authorise>
的全局组件,它将根据用户拥有的权限启用子项。
Component.ts
import { Component, Input, ChangeDetectionStrategy } from '@angular/core';
import { GlobalService } from '../../../core/global/global.service';
@Component({
selector: 'app-authorise',
templateUrl: './app-authorise.component.html',
styleUrls: ['./app-authorise.component.scss'],
changeDetection: ChangeDetectionStrategy.Default
})
export class AuthoriseComponent {
@Input() public module: string;
@Input() public permission: string;
@Input() public field: string;
@Input() public role: string;
public currentUser: any = {};
public currentUserRoles = [];
constructor(private globalService: GlobalService) {
this.globalService.subscribeToUserSource((updatedUser: any) => {
this.currentUser = updatedUser;
this.currentUserRoles = updatedUser.rolePermissions;
});
}
get enable() {
const {
currentUser,
currentUserRoles,
module,
permission,
role
} = this;
if (currentUser && currentUserRoles) {
return role ? this.hasRole(currentUserRoles, role) :
this.globalService.hasPermissionForModule({
currentUserRoles,
module,
permission,
});
}
return false;
}
public hasRole(currentUserRoles: any, role: string) {
return Boolean(currentUserRoles[role]);
}
}
Component.html
<ng-container>
<ng-content *ngIf="enable"></ng-content>
</ng-container>
用例
<app-authorise [module]="properties.modules.project" [permission]="properties.permissions.CREATE">
<app-psm-list></app-psm-list>
</app-authorise>
我们面临的实际问题是,即使在父组件中启用了子组件,也会调用子组件的onInit()方法。
任何想法,对此的建议将非常有帮助。
您可以在将<app-psm-list>
组件投影到<app-authorise>
之前检查条件,以便在条件失败时不会调用app-psm-list
组件ngOnInit()
。
要做到这一点,你需要一些参考,如#authorise
对app-authorise
组件
<app-authorise #authorise [module]="properties.modules.project" [permission]="properties.permissions.CREATE">
<ng-conatiner *ngIf="authorise.enable">
<app-psm-list></app-psm-list>
</ng-conatiner>
</app-authorise>
并且app-authorise
内部不再需要条件
应用程序检查
<ng-container>
<ng-content></ng-content>
</ng-container>
发现这个custom-permission-directive真有帮助。可以使用指令而不是组件。