File
Implements
Metadata
selector |
cd-nfs-details |
styleUrls |
./nfs-details.component.scss |
templateUrl |
./nfs-details.component.html |
Index
Properties
|
|
Methods
|
|
Inputs
|
|
Constructor
constructor(i18n: I18n)
|
|
Parameters :
Name |
Type |
Optional |
i18n |
I18n
|
No
|
|
Methods
ngOnChanges
|
ngOnChanges()
|
|
|
import { Component, Input, OnChanges } from '@angular/core';
import { I18n } from '@ngx-translate/i18n-polyfill';
import * as _ from 'lodash';
import { CdTableSelection } from '../../../shared/models/cd-table-selection';
@Component({
selector: 'cd-nfs-details',
templateUrl: './nfs-details.component.html',
styleUrls: ['./nfs-details.component.scss']
})
export class NfsDetailsComponent implements OnChanges {
@Input()
selection: CdTableSelection;
selectedItem: any;
data: any;
constructor(private i18n: I18n) {}
ngOnChanges() {
if (this.selection.hasSelection) {
this.selectedItem = this.selection.first();
this.data = {};
this.data[this.i18n('Cluster')] = this.selectedItem.cluster_id;
this.data[this.i18n('Daemons')] = this.selectedItem.daemons;
this.data[this.i18n('NFS Protocol')] = this.selectedItem.protocols.map(
(protocol) => 'NFSv' + protocol
);
this.data[this.i18n('Pseudo')] = this.selectedItem.pseudo;
this.data[this.i18n('Access Type')] = this.selectedItem.access_type;
this.data[this.i18n('Squash')] = this.selectedItem.squash;
this.data[this.i18n('Transport')] = this.selectedItem.transports;
this.data[this.i18n('Path')] = this.selectedItem.path;
if (this.selectedItem.fsal.name === 'CEPH') {
this.data[this.i18n('Storage Backend')] = this.i18n('CephFS');
this.data[this.i18n('CephFS User')] = this.selectedItem.fsal.user_id;
this.data[this.i18n('CephFS Filesystem')] = this.selectedItem.fsal.fs_name;
this.data[this.i18n('Security Label')] = this.selectedItem.fsal.sec_label_xattr;
} else {
this.data[this.i18n('Storage Backend')] = this.i18n('Object Gateway');
this.data[this.i18n('Object Gateway User')] = this.selectedItem.fsal.rgw_user_id;
}
}
}
}
<tabset *ngIf="selection?.hasSingleSelection">
<tab heading="Details"
i18n-heading>
<cd-table-key-value [data]="data">
</cd-table-key-value>
</tab>
</tabset>
Legend
Html element with directive