Merge branch 'master'
[arvados-workbench2.git] / src / store / search-bar / search-bar-actions.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
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';
13
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>()
20 });
21
22 export type SearchBarActions = UnionOf<typeof searchBarActions>;
23
24 export interface SearchBarAdvanceFormData {
25     type?: GroupContentsResource;
26     cluster?: string;
27     project?: string;
28     dataFrom: string;
29     dataTo: string;
30     searchQuery: string;
31 }
32
33 export const SEARCH_BAR_ADVANCE_FORM_NAME = 'searchBarAdvanceFormName';
34
35 export const goToView = (currentView: string) => searchBarActions.SET_CURRENT_VIEW(currentView);
36
37 export const saveRecentQuery = (query: string) =>
38     (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
39         services.searchQueriesService.saveRecentQuery(query);
40     };
41
42 export const loadRecentQueries = () =>
43     (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
44         const recentSearchQueries = services.searchQueriesService.getRecentQueries();
45         return recentSearchQueries || [];
46     };
47
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([]));
52         if (searchValue) {
53             const filters = getFilters('name', searchValue);
54             const { items } = await services.groupsService.contents('', {
55                 filters,
56                 limit: 5,
57                 recursive: true
58             });
59             dispatch(searchBarActions.SET_SEARCH_RESULTS(items));
60         }
61     };
62
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)
70         .getFilters();
71 };