import { CommonModule } from "@angular/common"; import { Component, Input } from "@angular/core"; import { JslibModule } from "@bitwarden/angular/jslib.module"; import { CipherType } from "@bitwarden/common/vault/enums"; import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view"; import { IconButtonModule, ItemModule, MenuModule } from "@bitwarden/components"; import { CopyCipherFieldDirective } from "@bitwarden/vault"; @Component({ standalone: true, selector: "app-item-copy-actions", templateUrl: "item-copy-actions.component.html", imports: [ ItemModule, IconButtonModule, JslibModule, MenuModule, CommonModule, CopyCipherFieldDirective, ], }) export class ItemCopyActionsComponent { @Input() cipher: CipherView; protected CipherType = CipherType; get hasLoginValues() { return ( !!this.cipher.login.hasTotp || !!this.cipher.login.password || !!this.cipher.login.username ); } get hasCardValues() { return !!this.cipher.card.code || !!this.cipher.card.number; } get hasIdentityValues() { return ( !!this.cipher.identity.fullAddressForCopy || !!this.cipher.identity.email || !!this.cipher.identity.username || !!this.cipher.identity.phone ); } get hasSecureNoteValue() { return !!this.cipher.notes; } constructor() {} }