mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* feat: hybrid search * fixing normal search * building out the query * okla * filters * date * order by date * Remove hybrid search endpoint * remove search hybrid endpoint * faces query * search for person * search and pagination * with exif * with exif * justify gallery viewer * memory view * Fixed userId is null * openapi and styling * searchdto * lint and format * remove term * generate sql * fix test * chips * not showing true * pr feedback * pr feedback * nit name * linting * pr feedback * styling * linting
9 lines
469 B
TypeScript
9 lines
469 B
TypeScript
import type { MetadataSearchDto, SmartSearchDto } from '@immich/sdk';
|
|
import { persisted } from 'svelte-local-storage-store';
|
|
import { writable } from 'svelte/store';
|
|
|
|
export const savedSearchTerms = persisted<string[]>('search-terms', [], {});
|
|
export const isSearchEnabled = writable<boolean>(false);
|
|
export const preventRaceConditionSearchBar = writable<boolean>(false);
|
|
export const searchQuery = writable<SmartSearchDto | MetadataSearchDto | undefined>(undefined);
|