File
Implements
Metadata
selector |
cd-role-details |
styleUrls |
./role-details.component.scss |
templateUrl |
./role-details.component.html |
Index
Properties
|
|
Methods
|
|
Inputs
|
|
Constructor
constructor(i18n: I18n)
|
|
Parameters :
Name |
Type |
Optional |
i18n |
I18n
|
No
|
|
scopes
|
Type : Array<string>
|
|
Methods
ngOnChanges
|
ngOnChanges()
|
|
|
scopes_permissions
|
Type : Array<any>
|
Default value : []
|
|
import { Component, Input, OnChanges, OnInit } from '@angular/core';
import { I18n } from '@ngx-translate/i18n-polyfill';
import * as _ from 'lodash';
import { CellTemplate } from '../../../shared/enum/cell-template.enum';
import { CdTableColumn } from '../../../shared/models/cd-table-column';
import { CdTableSelection } from '../../../shared/models/cd-table-selection';
@Component({
selector: 'cd-role-details',
templateUrl: './role-details.component.html',
styleUrls: ['./role-details.component.scss']
})
export class RoleDetailsComponent implements OnChanges, OnInit {
@Input()
selection: CdTableSelection;
@Input()
scopes: Array<string>;
selectedItem: any;
columns: CdTableColumn[];
scopes_permissions: Array<any> = [];
constructor(private i18n: I18n) {}
ngOnInit() {
this.columns = [
{
prop: 'scope',
name: this.i18n('Scope'),
flexGrow: 2
},
{
prop: 'read',
name: this.i18n('Read'),
flexGrow: 1,
cellClass: 'text-center',
cellTransformation: CellTemplate.checkIcon
},
{
prop: 'create',
name: this.i18n('Create'),
flexGrow: 1,
cellClass: 'text-center',
cellTransformation: CellTemplate.checkIcon
},
{
prop: 'update',
name: this.i18n('Update'),
flexGrow: 1,
cellClass: 'text-center',
cellTransformation: CellTemplate.checkIcon
},
{
prop: 'delete',
name: this.i18n('Delete'),
flexGrow: 1,
cellClass: 'text-center',
cellTransformation: CellTemplate.checkIcon
}
];
}
ngOnChanges() {
if (this.selection.hasSelection) {
this.selectedItem = this.selection.first();
// Build the scopes/permissions data used by the data table.
const scopes_permissions = [];
_.each(this.scopes, (scope) => {
const scope_permission = { read: false, create: false, update: false, delete: false };
scope_permission['scope'] = scope;
if (scope in this.selectedItem['scopes_permissions']) {
_.each(this.selectedItem['scopes_permissions'][scope], (permission) => {
scope_permission[permission] = true;
});
}
scopes_permissions.push(scope_permission);
});
this.scopes_permissions = scopes_permissions;
}
}
}
<tabset *ngIf="selection?.hasSingleSelection">
<tab heading="Details" i18n-heading>
<cd-table [data]="scopes_permissions"
[columns]="columns"
columnMode="flex"
[toolHeader]="false"
[autoReload]="false"
[autoSave]="false"
[footer]="false"
[limit]="0">
</cd-table>
</tab>
</tabset>
@import '../../../../defaults';
thead {
background-color: $color-table-header-bg;
}
.fa {
font-size: large;
&.fa-square-o {
color: $color-light-gray;
}
}
Legend
Html element with directive