bitwarden-estensione-browser/src/angular/components/ciphers.component.ts

78 lines
2.1 KiB
TypeScript
Raw Normal View History

import {
EventEmitter,
Input,
Output,
} from '@angular/core';
import { SearchService } from '../../abstractions/search.service';
import { CipherView } from '../../models/view/cipherView';
export class CiphersComponent {
@Input() activeCipherId: string = null;
@Output() onCipherClicked = new EventEmitter<CipherView>();
@Output() onCipherRightClicked = new EventEmitter<CipherView>();
@Output() onAddCipher = new EventEmitter();
@Output() onAddCipherOptions = new EventEmitter();
loaded: boolean = false;
ciphers: CipherView[] = [];
searchText: string;
searchPlaceholder: string = null;
2018-08-23 04:35:18 +02:00
filter: (cipher: CipherView) => boolean = null;
2018-07-04 05:33:15 +02:00
2018-08-13 17:52:55 +02:00
protected searchPending = false;
private searchTimeout: any = null;
constructor(protected searchService: SearchService) { }
async load(filter: (cipher: CipherView) => boolean = null) {
await this.applyFilter(filter);
this.loaded = true;
}
async refresh() {
this.loaded = false;
this.ciphers = [];
await this.load(this.filter);
}
async applyFilter(filter: (cipher: CipherView) => boolean = null) {
2018-07-04 05:33:15 +02:00
this.filter = filter;
2018-08-13 17:52:55 +02:00
await this.search(null);
}
2018-08-13 17:52:55 +02:00
async search(timeout: number = null) {
this.searchPending = false;
if (this.searchTimeout != null) {
clearTimeout(this.searchTimeout);
2018-07-04 05:33:15 +02:00
}
2018-08-13 17:52:55 +02:00
if (timeout == null) {
this.ciphers = await this.searchService.searchCiphers(this.searchText, this.filter);
return;
}
this.searchPending = true;
this.searchTimeout = setTimeout(async () => {
this.ciphers = await this.searchService.searchCiphers(this.searchText, this.filter);
2018-08-13 17:52:55 +02:00
this.searchPending = false;
}, timeout);
2018-07-04 05:33:15 +02:00
}
selectCipher(cipher: CipherView) {
this.onCipherClicked.emit(cipher);
}
rightClickCipher(cipher: CipherView) {
this.onCipherRightClicked.emit(cipher);
}
addCipher() {
this.onAddCipher.emit();
}
addCipherOptions() {
this.onAddCipherOptions.emit();
}
}