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

96 lines
2.7 KiB
TypeScript
Raw Normal View History

import {
Directive,
EventEmitter,
Input,
Output,
} from '@angular/core';
import { SearchService } from 'jslib-common/abstractions/search.service';
import { CipherView } from 'jslib-common/models/view/cipherView';
@Directive()
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;
deleted: boolean = false;
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, deleted: boolean = false) {
this.deleted = deleted || false;
await this.applyFilter(filter);
this.loaded = true;
}
async reload(filter: (cipher: CipherView) => boolean = null, deleted: boolean = false) {
this.loaded = false;
this.ciphers = [];
await this.load(filter, deleted);
}
async refresh() {
await this.reload(this.filter, this.deleted);
}
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);
}
async search(timeout: number = null, indexedCiphers?: CipherView[]) {
2018-08-13 17:52:55 +02:00
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) {
2021-08-10 22:36:16 +02:00
await this.doSearch(indexedCiphers);
2018-08-13 17:52:55 +02:00
return;
}
this.searchPending = true;
this.searchTimeout = setTimeout(async () => {
2021-08-10 22:36:16 +02:00
await this.doSearch(indexedCiphers);
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();
}
isSearching() {
return !this.searchPending && this.searchService.isSearchable(this.searchText);
}
protected deletedFilter: (cipher: CipherView) => boolean = c => c.isDeleted === this.deleted;
protected async doSearch(indexedCiphers?: CipherView[]) {
this.ciphers = await this.searchService.searchCiphers(this.searchText, [this.filter, this.deletedFilter], indexedCiphers);
}
}