search-results-view
[arvados-workbench2.git] / src / store / search-results-panel / search-results-panel-actions.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Dispatch } from 'redux';
6 import { RootState } from '~/store/store';
7 import { ServiceRepository } from '~/services/services';
8 import { bindDataExplorerActions } from '~/store/data-explorer/data-explorer-action';
9
10 export const SEARCH_RESULTS_PANEL_ID = "searchResultsPanel";
11 export const searchResultsPanelActions = bindDataExplorerActions(SEARCH_RESULTS_PANEL_ID);
12
13 export const loadSearchResultsPanel = () =>
14     (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
15         dispatch(searchResultsPanelActions.REQUEST_ITEMS());
16     };