1
0
mirror of https://github.com/bitwarden/desktop synced 2025-12-27 05:33:24 +00:00
Files
desktop/src/app/vault/ciphers.component.ts
Kyle Spearrin 375f2a1e02 group filtering
2018-01-26 23:32:03 -05:00

70 lines
1.6 KiB
TypeScript

import * as template from './ciphers.component.html';
import {
Component,
EventEmitter,
Input,
OnInit,
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 implements OnInit {
@Output() onCipherClicked = new EventEmitter<CipherView>();
@Output() onAddCipher = new EventEmitter();
ciphers: CipherView[] = [];
private filter: (cipher: CipherView) => boolean = null;
constructor(private cipherService: CipherService) {
}
async ngOnInit() {
await this.load();
}
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);
}
updateCipher(cipher: CipherView) {
const i = this.ciphers.findIndex((c) => c.id === cipher.id);
if (i > -1) {
this.ciphers[i] = cipher;
}
}
removeCipher(cipherId: string) {
const i = this.ciphers.findIndex((c) => c.id === cipherId);
if (i > -1) {
this.ciphers.splice(i, 1);
}
}
cipherClicked(cipher: CipherView) {
this.onCipherClicked.emit(cipher);
}
addCipher() {
this.onAddCipher.emit();
}
}