import * as template from './ciphers.component.html'; import { Component, EventEmitter, Input, Output, } from '@angular/core'; import { CipherView } from 'jslib/models/view/cipherView'; import { CipherService } from 'jslib/abstractions/cipher.service'; @Component({ selector: 'app-vault-ciphers', template: template, }) export class CiphersComponent { @Input() activeCipherId: string = null; @Output() onCipherClicked = new EventEmitter(); @Output() onAddCipher = new EventEmitter(); ciphers: CipherView[] = []; searchText: string; searchPlaceholder: string = null; private filter: (cipher: CipherView) => boolean = null; constructor(private cipherService: CipherService) {} async load(filter: (cipher: CipherView) => boolean = null) { this.filter = filter; let ciphers = await this.cipherService.getAllDecrypted(); if (this.filter == null) { this.ciphers = ciphers; } else { this.ciphers = ciphers.filter(this.filter); } } async refresh() { await this.load(this.filter); } cipherClicked(cipher: CipherView) { this.onCipherClicked.emit(cipher); } addCipher() { this.onAddCipher.emit(); } }