19231: Add smaller page sizes (10 and 20 items) to load faster
[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 { DataColumns } 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
16 interface Props {
17     id: string;
18     onRowClick: (item: any) => void;
19     onContextMenu?: (event: React.MouseEvent<HTMLElement>, item: any, isAdmin?: boolean) => void;
20     onRowDoubleClick: (item: any) => void;
21     extractKey?: (item: any) => React.Key;
22 }
23
24 const mapStateToProps = (state: RootState, { id }: Props) => {
25     const progress = state.progressIndicator.find(p => p.id === id);
26     const dataExplorerState = getDataExplorer(state.dataExplorer, id);
27     const currentRoute = state.router.location ? state.router.location.pathname : '';
28     const currentRefresh = localStorage.getItem(LAST_REFRESH_TIMESTAMP) || '';
29     const currentItemUuid = currentRoute === '/workflows' ? state.properties.workflowPanelDetailsUuid : state.detailsPanel.resourceUuid;
30
31     return {
32         ...dataExplorerState,
33         working: !!progress?.working,
34         currentRefresh: currentRefresh,
35         currentRoute: currentRoute,
36         paperKey: currentRoute,
37         currentItemUuid
38     };
39 };
40
41 const mapDispatchToProps = () => {
42     return (dispatch: Dispatch, { id, onRowClick, onRowDoubleClick, onContextMenu }: Props) => ({
43         onSetColumns: (columns: DataColumns<any>) => {
44             dispatch(dataExplorerActions.SET_COLUMNS({ id, columns }));
45         },
46
47         onSearch: (searchValue: string) => {
48             dispatch(dataExplorerActions.SET_EXPLORER_SEARCH_VALUE({ id, searchValue }));
49         },
50
51         onColumnToggle: (column: DataColumn<any>) => {
52             dispatch(dataExplorerActions.TOGGLE_COLUMN({ id, columnName: column.name }));
53         },
54
55         onSortToggle: (column: DataColumn<any>) => {
56             dispatch(dataExplorerActions.TOGGLE_SORT({ id, columnName: column.name }));
57         },
58
59         onFiltersChange: (filters: DataTableFilters, column: DataColumn<any>) => {
60             dispatch(dataExplorerActions.SET_FILTERS({ id, columnName: column.name, filters }));
61         },
62
63         onChangePage: (page: number) => {
64             dispatch(dataExplorerActions.SET_PAGE({ id, page }));
65         },
66
67         onChangeRowsPerPage: (rowsPerPage: number) => {
68             dispatch(dataExplorerActions.SET_ROWS_PER_PAGE({ id, rowsPerPage }));
69         },
70
71         onLoadMore: (page: number) => {
72             dispatch(dataExplorerActions.SET_PAGE({ id, page }));
73         },
74
75         onRowClick,
76
77         onRowDoubleClick,
78
79         onContextMenu,
80     });
81 };
82
83 export const DataExplorer = connect(mapStateToProps, mapDispatchToProps)(DataExplorerComponent);
84