X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d92b067614b451c27a8bd702253e87278defa7a3..2820212ec0df02a85ae74ede8c52d3b5e936c6aa:/src/store/search-bar/search-bar-actions.ts diff --git a/src/store/search-bar/search-bar-actions.ts b/src/store/search-bar/search-bar-actions.ts index 2b8ca83e69..7a13197a0e 100644 --- a/src/store/search-bar/search-bar-actions.ts +++ b/src/store/search-bar/search-bar-actions.ts @@ -21,6 +21,19 @@ export const searchBarActions = unionize({ export type SearchBarActions = UnionOf; +export interface SearchBarAdvanceFormData { + type?: GroupContentsResource; + cluster?: string; + project?: string; + inTrash: boolean; + dataFrom: string; + dataTo: string; + saveQuery: boolean; + searchQuery: string; +} + +export const SEARCH_BAR_ADVANCE_FORM_NAME = 'searchBarAdvanceFormName'; + export const goToView = (currentView: string) => searchBarActions.SET_CURRENT_VIEW(currentView); export const saveRecentQuery = (query: string) =>