X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/66088cabf30c5291ad8894e7009d9c9af466c158..83e7cbb4620d7e7d61c56fb25efc2069955eb78a:/services/workbench2/src/views-components/data-explorer/data-explorer.tsx diff --git a/services/workbench2/src/views-components/data-explorer/data-explorer.tsx b/services/workbench2/src/views-components/data-explorer/data-explorer.tsx index d5a9977a71..bcf8683e89 100644 --- a/services/workbench2/src/views-components/data-explorer/data-explorer.tsx +++ b/services/workbench2/src/views-components/data-explorer/data-explorer.tsx @@ -11,8 +11,8 @@ import { dataExplorerActions } from "store/data-explorer/data-explorer-action"; import { DataColumn } from "components/data-table/data-column"; import { DataColumns, TCheckedList } from "components/data-table/data-table"; import { DataTableFilters } from "components/data-table-filters/data-table-filters-tree"; -import { LAST_REFRESH_TIMESTAMP } from "components/refresh-button/refresh-button"; import { toggleMSToolbar, setCheckedListOnStore } from "store/multiselect/multiselect-actions"; +import { setSelectedResourceUuid } from "store/selected-resource/selected-resource-actions"; interface Props { id: string; @@ -20,28 +20,28 @@ interface Props { onContextMenu?: (event: React.MouseEvent, item: any, isAdmin?: boolean) => void; onRowDoubleClick: (item: any) => void; extractKey?: (item: any) => React.Key; + working?: boolean; } -const mapStateToProps = (state: RootState, { id }: Props) => { - const progress = state.progressIndicator.find(p => p.id === id); - const dataExplorerState = getDataExplorer(state.dataExplorer, id); - const currentRoute = state.router.location ? state.router.location.pathname : ""; - const currentRefresh = localStorage.getItem(LAST_REFRESH_TIMESTAMP) || ""; - const currentItemUuid = currentRoute === "/workflows" ? state.properties.workflowPanelDetailsUuid : state.detailsPanel.resourceUuid; - const isMSToolbarVisible = state.multiselect.isVisible; +const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, selectedResourceUuid, properties, searchBar}: RootState, { id }: Props) => { + const working = !!progressIndicator.some(p => p.working); + const dataExplorerState = getDataExplorer(dataExplorer, id); + const currentRoute = router.location ? router.location.pathname : ""; + const isMSToolbarVisible = multiselect.isVisible; return { ...dataExplorerState, - working: !!progress?.working, - currentRefresh: currentRefresh, currentRoute: currentRoute, paperKey: currentRoute, - currentItemUuid, + currentRouteUuid: properties.currentRouteUuid, isMSToolbarVisible, - checkedList: state.multiselect.checkedList, + selectedResourceUuid, + checkedList: multiselect.checkedList, + working, + searchBarValue: searchBar.searchValue, }; }; -const mapDispatchToProps = dispatchFn => { +const mapDispatchToProps = () => { return (dispatch: Dispatch, { id, onRowClick, onRowDoubleClick, onContextMenu }: Props) => ({ onSetColumns: (columns: DataColumns) => { dispatch(dataExplorerActions.SET_COLUMNS({ id, columns })); @@ -83,6 +83,10 @@ const mapDispatchToProps = dispatchFn => { dispatch(setCheckedListOnStore(checkedList)); }, + setSelectedUuid: (uuid: string | null) => { + dispatch(setSelectedResourceUuid(uuid)); + }, + onRowClick, onRowDoubleClick,