X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/36b4e36f75ea0035b6b0de6aaaad4edd3231371c..6f73d03da9243243e52acedc60c34398fb1ce436:/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 9ddfc9c517..2541e7a3a5 100644 --- a/src/store/search-bar/search-bar-actions.ts +++ b/src/store/search-bar/search-bar-actions.ts @@ -24,7 +24,8 @@ export const searchBarActions = unionize({ CLOSE_SEARCH_VIEW: ofType<{}>(), SET_SEARCH_RESULTS: ofType(), SET_SEARCH_VALUE: ofType(), - SET_SAVED_QUERIES: ofType() + SET_SAVED_QUERIES: ofType(), + UPDATE_SAVED_QUERY: ofType() }); export type SearchBarActions = UnionOf; @@ -46,13 +47,24 @@ export const loadRecentQueries = () => return recentSearchQueries || []; }; +// Todo: create ids for particular searchQuery export const saveQuery = (data: SearchBarAdvanceFormData) => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { + const savedSearchQueries = services.searchService.getSavedQueries(); + const filteredQuery = savedSearchQueries.find(query => query.searchQuery === data.searchQuery); if (data.saveQuery && data.searchQuery) { - services.searchService.saveQuery(data); - dispatch(searchBarActions.SET_SAVED_QUERIES(services.searchService.getSavedQueries())); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Query has been sucessfully saved', kind: SnackbarKind.SUCCESS })); + if (filteredQuery) { + services.searchService.editSavedQueries(data); + dispatch(searchBarActions.UPDATE_SAVED_QUERY(savedSearchQueries)); + dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Query has been sucessfully updated', hideDuration: 2000, kind: SnackbarKind.SUCCESS })); + } else { + services.searchService.saveQuery(data); + dispatch(searchBarActions.SET_SAVED_QUERIES(savedSearchQueries)); + dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Query has been sucessfully saved', hideDuration: 2000, kind: SnackbarKind.SUCCESS })); + } } + dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.BASIC)); + dispatch(searchBarActions.CLOSE_SEARCH_VIEW()); }; export const deleteSavedQuery = (id: number) => @@ -63,9 +75,10 @@ export const deleteSavedQuery = (id: number) => return savedSearchQueries || []; }; -export const editSavedQuery = (data: SearchBarAdvanceFormData, id: number) => +export const editSavedQuery = (data: SearchBarAdvanceFormData) => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(searchBarActions.SET_CURRENT_VIEW(SearchView.ADVANCED)); + dispatch(searchBarActions.SET_SEARCH_VALUE(data.searchQuery)); dispatch(initialize(SEARCH_BAR_ADVANCE_FORM_NAME, data)); }; @@ -108,6 +121,26 @@ export const searchData = (searchValue: string) => }); dispatch(searchBarActions.SET_SEARCH_RESULTS(items)); } + if (currentView !== SearchView.AUTOCOMPLETE) { + dispatch(navigateToSearchResults); + } + + }; + +export const searchDataOnEnter = (searchValue: string) => + async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { + dispatch(searchBarActions.CLOSE_SEARCH_VIEW()); + dispatch(searchBarActions.SET_SEARCH_VALUE(searchValue)); + dispatch(searchBarActions.SET_SEARCH_RESULTS([])); + if (searchValue) { + const filters = getFilters('name', searchValue); + const { items } = await services.groupsService.contents('', { + filters, + limit: 5, + recursive: true + }); + dispatch(searchBarActions.SET_SEARCH_RESULTS(items)); + } dispatch(navigateToSearchResults); }; @@ -121,17 +154,17 @@ export const getFilters = (filterName: string, searchValue: string): string => { .getFilters(); }; -export const initAdvanceFormProjectsTree = () => +export const initAdvanceFormProjectsTree = () => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(initUserProject(SEARCH_BAR_ADVANCE_FORM_PICKER_ID)); }; -export const changeAdvanceFormProperty = (property: string, value: PropertyValues[] | string = '') => +export const changeAdvanceFormProperty = (property: string, value: PropertyValues[] | string = '') => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(change(SEARCH_BAR_ADVANCE_FORM_NAME, property, value)); }; -export const updateAdvanceFormProperties = (propertyValues: PropertyValues) => +export const updateAdvanceFormProperties = (propertyValues: PropertyValues) => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(arrayPush(SEARCH_BAR_ADVANCE_FORM_NAME, 'properties', propertyValues)); }; \ No newline at end of file