05e923f1bbeecfb90583e1314b68e9e8e9afd3f0
[arvados.git] / services / workbench2 / src / views-components / data-explorer / data-explorer.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { connect } from "react-redux";
6 import { RootState } from "store/store";
7 import { DataExplorer as DataExplorerComponent } from "components/data-explorer/data-explorer";
8 import { getDataExplorer } from "store/data-explorer/data-explorer-reducer";
9 import { Dispatch } from "redux";
10 import { dataExplorerActions } from "store/data-explorer/data-explorer-action";
11 import { DataColumn } from "components/data-table/data-column";
12 import { DataColumns, TCheckedList } from "components/data-table/data-table";
13 import { DataTableFilters } from "components/data-table-filters/data-table-filters-tree";
14 import { LAST_REFRESH_TIMESTAMP } from "components/refresh-button/refresh-button";
15 import { toggleMSToolbar, setCheckedListOnStore } from "store/multiselect/multiselect-actions";
16
17 interface Props {
18     id: string;
19     onRowClick: (item: any) => void;
20     onContextMenu?: (event: React.MouseEvent<HTMLElement>, item: any, isAdmin?: boolean) => void;
21     onRowDoubleClick: (item: any) => void;
22     extractKey?: (item: any) => React.Key;
23     working?: boolean;
24 }
25
26 const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, detailsPanel, properties}: RootState, { id }: Props) => {
27     const dataExplorerState = getDataExplorer(dataExplorer, id);
28     const currentRoute = router.location ? router.location.pathname : "";
29     const currentRefresh = localStorage.getItem(LAST_REFRESH_TIMESTAMP) || "";
30     const isDetailsResourceChecked = multiselect.checkedList[detailsPanel.resourceUuid]
31     const isOnlyOneSelected = Object.values(multiselect.checkedList).filter(x => x === true).length === 1;
32     const currentItemUuid =
33         currentRoute === '/workflows' ? properties.workflowPanelDetailsUuid : isDetailsResourceChecked && isOnlyOneSelected ? detailsPanel.resourceUuid : multiselect.selectedUuid;
34     const isMSToolbarVisible = multiselect.isVisible;
35     return {
36         ...dataExplorerState,
37         currentRefresh: currentRefresh,
38         currentRoute: currentRoute,
39         paperKey: currentRoute,
40         currentItemUuid,
41         isMSToolbarVisible,
42         checkedList: multiselect.checkedList,
43     };
44 };
45
46 const mapDispatchToProps = () => {
47     return (dispatch: Dispatch, { id, onRowClick, onRowDoubleClick, onContextMenu }: Props) => ({
48         onSetColumns: (columns: DataColumns<any, any>) => {
49             dispatch(dataExplorerActions.SET_COLUMNS({ id, columns }));
50         },
51
52         onSearch: (searchValue: string) => {
53             dispatch(dataExplorerActions.SET_EXPLORER_SEARCH_VALUE({ id, searchValue }));
54         },
55
56         onColumnToggle: (column: DataColumn<any, any>) => {
57             dispatch(dataExplorerActions.TOGGLE_COLUMN({ id, columnName: column.name }));
58         },
59
60         onSortToggle: (column: DataColumn<any, any>) => {
61             dispatch(dataExplorerActions.TOGGLE_SORT({ id, columnName: column.name }));
62         },
63
64         onFiltersChange: (filters: DataTableFilters, column: DataColumn<any, any>) => {
65             dispatch(dataExplorerActions.SET_FILTERS({ id, columnName: column.name, filters }));
66         },
67
68         onChangePage: (page: number) => {
69             dispatch(dataExplorerActions.SET_PAGE({ id, page }));
70         },
71
72         onChangeRowsPerPage: (rowsPerPage: number) => {
73             dispatch(dataExplorerActions.SET_ROWS_PER_PAGE({ id, rowsPerPage }));
74         },
75
76         onLoadMore: (page: number) => {
77             dispatch(dataExplorerActions.SET_PAGE({ id, page }));
78         },
79
80         toggleMSToolbar: (isVisible: boolean) => {
81             dispatch<any>(toggleMSToolbar(isVisible));
82         },
83
84         setCheckedListOnStore: (checkedList: TCheckedList) => {
85             dispatch<any>(setCheckedListOnStore(checkedList));
86         },
87
88         onRowClick,
89
90         onRowDoubleClick,
91
92         onContextMenu,
93     });
94 };
95
96 export const DataExplorer = connect(mapStateToProps, mapDispatchToProps)(DataExplorerComponent);