1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-24 11:55:50 +01:00

clear search index

This commit is contained in:
Kyle Spearrin 2018-08-13 14:09:22 -04:00
parent a9db6c1d38
commit 09f4ee7f67
3 changed files with 7 additions and 5 deletions

2
jslib

@ -1 +1 @@
Subproject commit d917651d9f844dc07abf3e817073aa1e10213b9a Subproject commit 364192b27a54d76bd95929ee88a954548c0229c9

View File

@ -5,7 +5,6 @@ import {
Component, Component,
ComponentFactoryResolver, ComponentFactoryResolver,
NgZone, NgZone,
OnDestroy,
OnInit, OnInit,
Type, Type,
ViewChild, ViewChild,
@ -34,6 +33,7 @@ import { LockService } from 'jslib/abstractions/lock.service';
import { MessagingService } from 'jslib/abstractions/messaging.service'; import { MessagingService } from 'jslib/abstractions/messaging.service';
import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service'; import { PasswordGenerationService } from 'jslib/abstractions/passwordGeneration.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service'; import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { SearchService } from 'jslib/abstractions/search.service';
import { SettingsService } from 'jslib/abstractions/settings.service'; import { SettingsService } from 'jslib/abstractions/settings.service';
import { StorageService } from 'jslib/abstractions/storage.service'; import { StorageService } from 'jslib/abstractions/storage.service';
import { SyncService } from 'jslib/abstractions/sync.service'; import { SyncService } from 'jslib/abstractions/sync.service';
@ -79,7 +79,8 @@ export class AppComponent implements OnInit {
private platformUtilsService: PlatformUtilsService, private ngZone: NgZone, private platformUtilsService: PlatformUtilsService, private ngZone: NgZone,
private lockService: LockService, private storageService: StorageService, private lockService: LockService, private storageService: StorageService,
private cryptoService: CryptoService, private componentFactoryResolver: ComponentFactoryResolver, private cryptoService: CryptoService, private componentFactoryResolver: ComponentFactoryResolver,
private messagingService: MessagingService, private collectionService: CollectionService) { private messagingService: MessagingService, private collectionService: CollectionService,
private searchService: SearchService) {
(window as any).BitwardenToasterService = toasterService; (window as any).BitwardenToasterService = toasterService;
} }
@ -161,6 +162,7 @@ export class AppComponent implements OnInit {
this.passwordGenerationService.clear(), this.passwordGenerationService.clear(),
]); ]);
this.searchService.clearIndex();
this.authService.logOut(async () => { this.authService.logOut(async () => {
this.analytics.eventTrack.next({ action: 'Logged Out' }); this.analytics.eventTrack.next({ action: 'Logged Out' });
if (expired) { if (expired) {

View File

@ -98,9 +98,9 @@ const cipherService = new CipherService(cryptoService, userService, settingsServ
const folderService = new FolderService(cryptoService, userService, apiService, storageService, const folderService = new FolderService(cryptoService, userService, apiService, storageService,
i18nService, cipherService); i18nService, cipherService);
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService); const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
const lockService = new LockService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService, messagingService, null);
searchService = new SearchService(cipherService, platformUtilsService); searchService = new SearchService(cipherService, platformUtilsService);
const lockService = new LockService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService, messagingService, searchService, null);
const syncService = new SyncService(userService, apiService, settingsService, const syncService = new SyncService(userService, apiService, settingsService,
folderService, cipherService, cryptoService, collectionService, storageService, messagingService, folderService, cipherService, cryptoService, collectionService, storageService, messagingService,
async (expired: boolean) => messagingService.send('logout', { expired: expired })); async (expired: boolean) => messagingService.send('logout', { expired: expired }));