1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

refresh ciphers list on add/edit/delete

This commit is contained in:
Kyle Spearrin
2018-01-31 17:20:27 -05:00
parent 16450f3ba9
commit 59726ad818
3 changed files with 7 additions and 26 deletions

View File

@@ -4,7 +4,6 @@ import {
Component,
EventEmitter,
Input,
OnInit,
Output,
} from '@angular/core';
@@ -16,7 +15,7 @@ import { CipherService } from 'jslib/abstractions/cipher.service';
selector: 'app-vault-ciphers',
template: template,
})
export class CiphersComponent implements OnInit {
export class CiphersComponent {
@Input() activeCipherId: string = null;
@Output() onCipherClicked = new EventEmitter<CipherView>();
@Output() onAddCipher = new EventEmitter();
@@ -26,12 +25,7 @@ export class CiphersComponent implements OnInit {
searchPlaceholder: string = null;
private filter: (cipher: CipherView) => boolean = null;
constructor(private cipherService: CipherService) {
}
async ngOnInit() {
//await this.load();
}
constructor(private cipherService: CipherService) {}
async load(filter: (cipher: CipherView) => boolean = null) {
this.filter = filter;
@@ -48,20 +42,6 @@ export class CiphersComponent implements OnInit {
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);
}