mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 11:33:28 +00:00
* update attachments v2 view. using download attachment component. remove excess code. Refactor location of attachments v2
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { Component, EventEmitter, Input, Output } from "@angular/core";
|
|
|
|
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
import { LogService } from "@bitwarden/common/platform/abstractions/log.service";
|
|
import { CipherService } from "@bitwarden/common/vault/abstractions/cipher.service";
|
|
import { AttachmentView } from "@bitwarden/common/vault/models/view/attachment.view";
|
|
import {
|
|
AsyncActionsModule,
|
|
ButtonModule,
|
|
DialogService,
|
|
IconButtonModule,
|
|
ToastService,
|
|
} from "@bitwarden/components";
|
|
|
|
@Component({
|
|
standalone: true,
|
|
selector: "app-delete-attachment",
|
|
templateUrl: "./delete-attachment.component.html",
|
|
imports: [AsyncActionsModule, CommonModule, JslibModule, ButtonModule, IconButtonModule],
|
|
})
|
|
export class DeleteAttachmentComponent {
|
|
/** Id of the cipher associated with the attachment */
|
|
@Input({ required: true }) cipherId: string;
|
|
|
|
/** The attachment that is can be deleted */
|
|
@Input({ required: true }) attachment: AttachmentView;
|
|
|
|
/** Emits when the attachment is successfully deleted */
|
|
@Output() onDeletionSuccess = new EventEmitter<void>();
|
|
|
|
constructor(
|
|
private toastService: ToastService,
|
|
private i18nService: I18nService,
|
|
private cipherService: CipherService,
|
|
private logService: LogService,
|
|
private dialogService: DialogService,
|
|
) {}
|
|
|
|
delete = async () => {
|
|
const confirmed = await this.dialogService.openSimpleDialog({
|
|
title: { key: "deleteAttachment" },
|
|
content: { key: "permanentlyDeleteAttachmentConfirmation" },
|
|
type: "warning",
|
|
});
|
|
|
|
if (!confirmed) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await this.cipherService.deleteAttachmentWithServer(this.cipherId, this.attachment.id);
|
|
|
|
this.toastService.showToast({
|
|
variant: "success",
|
|
title: null,
|
|
message: this.i18nService.t("deletedAttachment"),
|
|
});
|
|
|
|
this.onDeletionSuccess.emit();
|
|
} catch (e) {
|
|
this.logService.error(e);
|
|
}
|
|
};
|
|
}
|