Merge branch '13855-data-collection-files-card'
[arvados-workbench2.git] / 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 { DataTableFilterItem } from "../../components/data-table-filters/data-table-filters";
13 import { DataColumns } from "../../components/data-table/data-table";
14
15 interface Props {
16     id: string;
17     columns: DataColumns<any>;
18     onRowClick: (item: any) => void;
19     onContextMenu: (event: React.MouseEvent<HTMLElement>, item: any) => void;
20     onRowDoubleClick: (item: any) => void;
21     extractKey?: (item: any) => React.Key;
22 }
23
24 const mapStateToProps = (state: RootState, { id }: Props) =>
25     getDataExplorer(state.dataExplorer, id);
26
27 const mapDispatchToProps = () => {
28     let prevColumns: DataColumns<any>;
29     return (dispatch: Dispatch, { id, columns, onRowClick, onRowDoubleClick, onContextMenu }: Props) => {
30         if (columns !== prevColumns) {
31             prevColumns = columns;
32             dispatch(dataExplorerActions.SET_COLUMNS({ id, columns }));
33         }
34         return {
35             onSearch: (searchValue: string) => {
36                 dispatch(dataExplorerActions.SET_SEARCH_VALUE({ id, searchValue }));
37             },
38
39             onColumnToggle: (column: DataColumn<any>) => {
40                 dispatch(dataExplorerActions.TOGGLE_COLUMN({ id, columnName: column.name }));
41             },
42
43             onSortToggle: (column: DataColumn<any>) => {
44                 dispatch(dataExplorerActions.TOGGLE_SORT({ id, columnName: column.name }));
45             },
46
47             onFiltersChange: (filters: DataTableFilterItem[], column: DataColumn<any>) => {
48                 dispatch(dataExplorerActions.SET_FILTERS({ id, columnName: column.name, filters }));
49             },
50
51             onChangePage: (page: number) => {
52                 dispatch(dataExplorerActions.SET_PAGE({ id, page }));
53             },
54
55             onChangeRowsPerPage: (rowsPerPage: number) => {
56                 dispatch(dataExplorerActions.SET_ROWS_PER_PAGE({ id, rowsPerPage }));
57             },
58
59             onRowClick,
60
61             onRowDoubleClick,
62
63             onContextMenu,
64         };
65     };
66 };
67
68 export const DataExplorer = connect(mapStateToProps, mapDispatchToProps())(DataExplorerComponent);
69