mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
no need to just search name on edge any longer
This commit is contained in:
parent
1de193eea1
commit
20fb4d3a39
@ -5,20 +5,12 @@ import {
|
|||||||
|
|
||||||
import { CipherView } from '../../models/view/cipherView';
|
import { CipherView } from '../../models/view/cipherView';
|
||||||
|
|
||||||
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
|
|
||||||
|
|
||||||
import { DeviceType } from '../../enums';
|
|
||||||
|
|
||||||
@Pipe({
|
@Pipe({
|
||||||
name: 'searchCiphers',
|
name: 'searchCiphers',
|
||||||
})
|
})
|
||||||
export class SearchCiphersPipe implements PipeTransform {
|
export class SearchCiphersPipe implements PipeTransform {
|
||||||
private onlySearchName = false;
|
private onlySearchName = false;
|
||||||
|
|
||||||
constructor(platformUtilsService: PlatformUtilsService) {
|
|
||||||
this.onlySearchName = platformUtilsService.getDevice() === DeviceType.EdgeExtension;
|
|
||||||
}
|
|
||||||
|
|
||||||
transform(ciphers: CipherView[], searchText: string): CipherView[] {
|
transform(ciphers: CipherView[], searchText: string): CipherView[] {
|
||||||
if (ciphers == null || ciphers.length === 0) {
|
if (ciphers == null || ciphers.length === 0) {
|
||||||
return [];
|
return [];
|
||||||
|
@ -3,11 +3,9 @@ import * as lunr from 'lunr';
|
|||||||
import { CipherView } from '../models/view/cipherView';
|
import { CipherView } from '../models/view/cipherView';
|
||||||
|
|
||||||
import { CipherService } from '../abstractions/cipher.service';
|
import { CipherService } from '../abstractions/cipher.service';
|
||||||
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
|
|
||||||
import { SearchService as SearchServiceAbstraction } from '../abstractions/search.service';
|
import { SearchService as SearchServiceAbstraction } from '../abstractions/search.service';
|
||||||
|
|
||||||
import { CipherType } from '../enums/cipherType';
|
import { CipherType } from '../enums/cipherType';
|
||||||
import { DeviceType } from '../enums/deviceType';
|
|
||||||
import { FieldType } from '../enums/fieldType';
|
import { FieldType } from '../enums/fieldType';
|
||||||
import { UriMatchType } from '../enums/uriMatchType';
|
import { UriMatchType } from '../enums/uriMatchType';
|
||||||
|
|
||||||
@ -16,10 +14,7 @@ export class SearchService implements SearchServiceAbstraction {
|
|||||||
private index: lunr.Index = null;
|
private index: lunr.Index = null;
|
||||||
private onlySearchName = false;
|
private onlySearchName = false;
|
||||||
|
|
||||||
constructor(private cipherService: CipherService, platformUtilsService: PlatformUtilsService) {
|
constructor(private cipherService: CipherService) { }
|
||||||
this.onlySearchName = platformUtilsService == null ||
|
|
||||||
platformUtilsService.getDevice() === DeviceType.EdgeExtension;
|
|
||||||
}
|
|
||||||
|
|
||||||
clearIndex(): void {
|
clearIndex(): void {
|
||||||
this.index = null;
|
this.index = null;
|
||||||
|
Loading…
Reference in New Issue
Block a user