mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
|
|
class SearchStore {
|
||
|
|
savedSearchTerms = $state<string[]>([]);
|
||
|
|
isSearchEnabled = $state(false);
|
||
|
|
preventRaceConditionSearchBar = $state(false);
|
||
|
|
|
||
|
|
clearCache() {
|
||
|
|
this.savedSearchTerms = [];
|
||
|
|
this.isSearchEnabled = false;
|
||
|
|
this.preventRaceConditionSearchBar = false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export const searchStore = new SearchStore();
|