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.
81 lines
2.3 KiB
81 lines
2.3 KiB
import { ConfirmationDialogType } from '@ghostfolio/client/core/notification/confirmation-dialog/confirmation-dialog.type';
|
|
import { NotificationService } from '@ghostfolio/client/core/notification/notification.service';
|
|
import { DEFAULT_LANGUAGE_CODE } from '@ghostfolio/common/config';
|
|
import { Access, User } from '@ghostfolio/common/interfaces';
|
|
|
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnChanges,
|
|
Output
|
|
} from '@angular/core';
|
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
import { MatTableDataSource } from '@angular/material/table';
|
|
|
|
@Component({
|
|
selector: 'gf-access-table',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './access-table.component.html',
|
|
styleUrls: ['./access-table.component.scss'],
|
|
standalone: false
|
|
})
|
|
export class AccessTableComponent implements OnChanges {
|
|
@Input() accesses: Access[];
|
|
@Input() showActions: boolean;
|
|
@Input() user: User;
|
|
|
|
@Output() accessDeleted = new EventEmitter<string>();
|
|
|
|
public baseUrl = window.location.origin;
|
|
public dataSource: MatTableDataSource<Access>;
|
|
public displayedColumns = [];
|
|
|
|
public constructor(
|
|
private clipboard: Clipboard,
|
|
private notificationService: NotificationService,
|
|
private snackBar: MatSnackBar
|
|
) {}
|
|
|
|
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 getPublicUrl(aId: string): string {
|
|
const languageCode = this.user?.settings?.language ?? DEFAULT_LANGUAGE_CODE;
|
|
|
|
return `${this.baseUrl}/${languageCode}/p/${aId}`;
|
|
}
|
|
|
|
public onCopyUrlToClipboard(aId: string): void {
|
|
this.clipboard.copy(this.getPublicUrl(aId));
|
|
|
|
this.snackBar.open(
|
|
'✅ ' + $localize`Link has been copied to the clipboard`,
|
|
undefined,
|
|
{
|
|
duration: 3000
|
|
}
|
|
);
|
|
}
|
|
|
|
public onDeleteAccess(aId: string) {
|
|
this.notificationService.confirm({
|
|
confirmFn: () => {
|
|
this.accessDeleted.emit(aId);
|
|
},
|
|
confirmType: ConfirmationDialogType.Warn,
|
|
title: $localize`Do you really want to revoke this granted access?`
|
|
});
|
|
}
|
|
}
|
|
|