mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnChanges,
|
|
OnInit,
|
|
Output
|
|
} from '@angular/core';
|
|
import { MatTableDataSource } from '@angular/material/table';
|
|
import { DEFAULT_LANGUAGE_CODE } from '@ghostfolio/common/config';
|
|
import { Access } from '@ghostfolio/common/interfaces';
|
|
|
|
@Component({
|
|
selector: 'gf-access-table',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './access-table.component.html',
|
|
styleUrls: ['./access-table.component.scss']
|
|
})
|
|
export class AccessTableComponent implements OnChanges, OnInit {
|
|
@Input() accesses: Access[];
|
|
@Input() showActions: boolean;
|
|
|
|
@Output() accessDeleted = new EventEmitter<string>();
|
|
|
|
public baseUrl = window.location.origin;
|
|
public dataSource: MatTableDataSource<Access>;
|
|
public defaultLanguageCode = DEFAULT_LANGUAGE_CODE;
|
|
public displayedColumns = [];
|
|
|
|
public constructor() {}
|
|
|
|
public ngOnInit() {}
|
|
|
|
public ngOnChanges() {
|
|
this.displayedColumns = ['alias', 'grantee', 'type', 'details'];
|
|
|
|
if (this.showActions) {
|
|
this.displayedColumns.push('actions');
|
|
}
|
|
|
|
if (this.accesses) {
|
|
this.dataSource = new MatTableDataSource(this.accesses);
|
|
}
|
|
}
|
|
|
|
public onDeleteAccess(aId: string) {
|
|
const confirmation = confirm(
|
|
$localize`Do you really want to revoke this granted access?`
|
|
);
|
|
|
|
if (confirmation) {
|
|
this.accessDeleted.emit(aId);
|
|
}
|
|
}
|
|
}
|
|
|