1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
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";
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;
25 const mapStateToProps = (state: RootState, { id }: Props) => {
26 const progress = state.progressIndicator.find(p => p.id === id);
27 const dataExplorerState = getDataExplorer(state.dataExplorer, id);
28 const currentRoute = state.router.location ? state.router.location.pathname : "";
29 const currentRefresh = localStorage.getItem(LAST_REFRESH_TIMESTAMP) || "";
30 const currentItemUuid = currentRoute === "/workflows" ? state.properties.workflowPanelDetailsUuid : state.detailsPanel.resourceUuid;
31 const isMSToolbarVisible = state.multiselect.isVisible;
34 working: !!progress?.working,
35 currentRefresh: currentRefresh,
36 currentRoute: currentRoute,
37 paperKey: currentRoute,
40 checkedList: state.multiselect.checkedList,
44 const mapDispatchToProps = () => {
45 return (dispatch: Dispatch, { id, onRowClick, onRowDoubleClick, onContextMenu }: Props) => ({
46 onSetColumns: (columns: DataColumns<any, any>) => {
47 dispatch(dataExplorerActions.SET_COLUMNS({ id, columns }));
50 onSearch: (searchValue: string) => {
51 dispatch(dataExplorerActions.SET_EXPLORER_SEARCH_VALUE({ id, searchValue }));
54 onColumnToggle: (column: DataColumn<any, any>) => {
55 dispatch(dataExplorerActions.TOGGLE_COLUMN({ id, columnName: column.name }));
58 onSortToggle: (column: DataColumn<any, any>) => {
59 dispatch(dataExplorerActions.TOGGLE_SORT({ id, columnName: column.name }));
62 onFiltersChange: (filters: DataTableFilters, column: DataColumn<any, any>) => {
63 dispatch(dataExplorerActions.SET_FILTERS({ id, columnName: column.name, filters }));
66 onChangePage: (page: number) => {
67 dispatch(dataExplorerActions.SET_PAGE({ id, page }));
70 onChangeRowsPerPage: (rowsPerPage: number) => {
71 dispatch(dataExplorerActions.SET_ROWS_PER_PAGE({ id, rowsPerPage }));
74 onLoadMore: (page: number) => {
75 dispatch(dataExplorerActions.SET_PAGE({ id, page }));
78 toggleMSToolbar: (isVisible: boolean) => {
79 dispatch<any>(toggleMSToolbar(isVisible));
82 setCheckedListOnStore: (checkedList: TCheckedList) => {
83 dispatch<any>(setCheckedListOnStore(checkedList));
94 export const DataExplorer = connect(mapStateToProps, mapDispatchToProps)(DataExplorerComponent);