1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { unionize, ofType, UnionOf } from "~/common/unionize";
6 import { GroupContentsResource, GroupContentsResourcePrefix } from '~/services/groups-service/groups-service';
7 import { Dispatch } from 'redux';
8 import { RootState } from '~/store/store';
9 import { ServiceRepository } from '~/services/services';
10 import { FilterBuilder } from "~/services/api/filter-builder";
11 import { ResourceKind } from '~/models/resource';
12 import { GroupClass } from '~/models/group';
14 export const searchBarActions = unionize({
15 SET_CURRENT_VIEW: ofType<string>(),
16 OPEN_SEARCH_VIEW: ofType<{}>(),
17 CLOSE_SEARCH_VIEW: ofType<{}>(),
18 SET_SEARCH_RESULTS: ofType<GroupContentsResource[]>(),
19 SET_SEARCH_VALUE: ofType<string>()
22 export type SearchBarActions = UnionOf<typeof searchBarActions>;
24 export interface SearchBarAdvanceFormData {
25 type?: GroupContentsResource;
33 export const SEARCH_BAR_ADVANCE_FORM_NAME = 'searchBarAdvanceFormName';
35 export const goToView = (currentView: string) => searchBarActions.SET_CURRENT_VIEW(currentView);
37 export const saveRecentQuery = (query: string) =>
38 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
39 services.searchQueriesService.saveRecentQuery(query);
42 export const loadRecentQueries = () =>
43 (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
44 const recentSearchQueries = services.searchQueriesService.getRecentQueries();
45 return recentSearchQueries || [];
48 export const searchData = (searchValue: string) =>
49 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
50 dispatch(searchBarActions.SET_SEARCH_VALUE(searchValue));
51 dispatch(searchBarActions.SET_SEARCH_RESULTS([]));
53 const filters = getFilters('name', searchValue);
54 const { items } = await services.groupsService.contents('', {
59 dispatch(searchBarActions.SET_SEARCH_RESULTS(items));
63 const getFilters = (filterName: string, searchValue: string): string => {
64 return new FilterBuilder()
65 .addIsA("uuid", [ResourceKind.PROJECT, ResourceKind.COLLECTION, ResourceKind.PROCESS])
66 .addILike(filterName, searchValue, GroupContentsResourcePrefix.COLLECTION)
67 .addILike(filterName, searchValue, GroupContentsResourcePrefix.PROCESS)
68 .addILike(filterName, searchValue, GroupContentsResourcePrefix.PROJECT)
69 .addEqual('groupClass', GroupClass.PROJECT, GroupContentsResourcePrefix.PROJECT)