[SM-877] Updating trash to have ability to copy UUID (#5986)
* [SM-877] Updating trash to have ability to copy UUID * Fixing the ordering of Div's for trash secret UUID copying * moving ngif to div * merge fixs
This commit is contained in:
parent
76888d6fd7
commit
c6972f3e1c
|
@ -65,16 +65,12 @@
|
|||
<div class="tw-flex tw-items-center tw-gap-4 tw-break-all">
|
||||
<i class="bwi bwi-key tw-text-muted" aria-hidden="true"></i>
|
||||
<div>
|
||||
<div>
|
||||
<button
|
||||
type="button"
|
||||
bitLink
|
||||
(click)="editSecretEvent.emit(secret.id)"
|
||||
*ngIf="!trash"
|
||||
>
|
||||
<div *ngIf="!trash">
|
||||
<button type="button" bitLink (click)="editSecretEvent.emit(secret.id)">
|
||||
{{ secret.name }}
|
||||
</button>
|
||||
</div>
|
||||
<div *ngIf="trash">{{ secret.name }}</div>
|
||||
<div class="tw-text-sm tw-text-muted">
|
||||
{{ secret.id }}
|
||||
<button
|
||||
|
@ -88,7 +84,6 @@
|
|||
></button>
|
||||
</div>
|
||||
</div>
|
||||
<div *ngIf="trash">{{ secret.name }}</div>
|
||||
</div>
|
||||
</td>
|
||||
<td bitCell>
|
||||
|
|
|
@ -9,4 +9,5 @@
|
|||
(restoreSecretsEvent)="openRestoreSecret($event)"
|
||||
[secrets]="secrets$ | async"
|
||||
[trash]="true"
|
||||
(copySecretUuidEvent)="copySecretUuid($event)"
|
||||
></sm-secrets-list>
|
||||
|
|
|
@ -2,10 +2,13 @@ import { Component, OnInit } from "@angular/core";
|
|||
import { ActivatedRoute } from "@angular/router";
|
||||
import { combineLatestWith, Observable, startWith, switchMap } from "rxjs";
|
||||
|
||||
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
||||
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
||||
import { DialogService } from "@bitwarden/components";
|
||||
|
||||
import { SecretListView } from "../models/view/secret-list.view";
|
||||
import { SecretService } from "../secrets/secret.service";
|
||||
import { SecretsListComponent } from "../shared/secrets-list.component";
|
||||
|
||||
import {
|
||||
SecretHardDeleteDialogComponent,
|
||||
|
@ -28,6 +31,8 @@ export class TrashComponent implements OnInit {
|
|||
constructor(
|
||||
private route: ActivatedRoute,
|
||||
private secretService: SecretService,
|
||||
private platformUtilsService: PlatformUtilsService,
|
||||
private i18nService: I18nService,
|
||||
private dialogService: DialogService
|
||||
) {}
|
||||
|
||||
|
@ -65,4 +70,8 @@ export class TrashComponent implements OnInit {
|
|||
},
|
||||
});
|
||||
}
|
||||
|
||||
copySecretUuid(id: string) {
|
||||
SecretsListComponent.copySecretUuid(id, this.platformUtilsService, this.i18nService);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue