21224: finished removing context menu from details card Arvados-DCO-1.1-Signed-off...
[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 import { setSelectedResourceUuid } from "store/selected-resource/selected-resource-actions";
17
18 interface Props {
19     id: string;
20     onRowClick: (item: any) => void;
21     onContextMenu?: (event: React.MouseEvent<HTMLElement>, item: any, isAdmin?: boolean) => void;
22     onRowDoubleClick: (item: any) => void;
23     extractKey?: (item: any) => React.Key;
24 }
25
26 const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, properties, selectedResourceUuid}: RootState, { id }: Props) => {
27     const progress = progressIndicator.find(p => p.id === id);
28     const dataExplorerState = getDataExplorer(dataExplorer, id);
29     const currentRoute = router.location ? router.location.pathname : "";
30     const currentRefresh = localStorage.getItem(LAST_REFRESH_TIMESTAMP) || "";
31     const isMSToolbarVisible = multiselect.isVisible;
32     return {
33         ...dataExplorerState,
34         working: !!progress?.working,
35         currentRefresh: currentRefresh,
36         currentRoute: currentRoute,
37         paperKey: currentRoute,
38         currentRouteUuid: properties.currentRouteUuid,
39         selectedResourceUuid: selectedResourceUuid,
40         isMSToolbarVisible,
41         checkedList: multiselect.checkedList,
42     };
43 };
44
45 const mapDispatchToProps = () => {
46     return (dispatch: Dispatch, { id, onRowClick, onRowDoubleClick, onContextMenu }: Props) => ({
47         onSetColumns: (columns: DataColumns<any, any>) => {
48             dispatch(dataExplorerActions.SET_COLUMNS({ id, columns }));
49         },
50
51         onSearch: (searchValue: string) => {
52             dispatch(dataExplorerActions.SET_EXPLORER_SEARCH_VALUE({ id, searchValue }));
53         },
54
55         onColumnToggle: (column: DataColumn<any, any>) => {
56             dispatch(dataExplorerActions.TOGGLE_COLUMN({ id, columnName: column.name }));
57         },
58
59         onSortToggle: (column: DataColumn<any, any>) => {
60             dispatch(dataExplorerActions.TOGGLE_SORT({ id, columnName: column.name }));
61         },
62
63         onFiltersChange: (filters: DataTableFilters, column: DataColumn<any, any>) => {
64             dispatch(dataExplorerActions.SET_FILTERS({ id, columnName: column.name, filters }));
65         },
66
67         onChangePage: (page: number) => {
68             dispatch(dataExplorerActions.SET_PAGE({ id, page }));
69         },
70
71         onChangeRowsPerPage: (rowsPerPage: number) => {
72             dispatch(dataExplorerActions.SET_ROWS_PER_PAGE({ id, rowsPerPage }));
73         },
74
75         onLoadMore: (page: number) => {
76             dispatch(dataExplorerActions.SET_PAGE({ id, page }));
77         },
78
79         toggleMSToolbar: (isVisible: boolean) => {
80             dispatch<any>(toggleMSToolbar(isVisible));
81         },
82
83         setCheckedListOnStore: (checkedList: TCheckedList) => {
84             dispatch<any>(setCheckedListOnStore(checkedList));
85         },
86
87         setSelectedUuid: (uuid: string | null) => {
88             dispatch<any>(setSelectedResourceUuid(uuid));
89         },
90         
91         onRowClick,
92
93         onRowDoubleClick,
94
95         onContextMenu,
96     });
97 };
98
99 export const DataExplorer = connect(mapStateToProps, mapDispatchToProps)(DataExplorerComponent);