X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bba514524b48490a8aeeb01376a10c853a90a2f2..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 643949a20e..bcf8683e89 100644 --- a/services/workbench2/src/views-components/data-explorer/data-explorer.tsx +++ b/services/workbench2/src/views-components/data-explorer/data-explorer.tsx @@ -12,6 +12,7 @@ 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 { toggleMSToolbar, setCheckedListOnStore } from "store/multiselect/multiselect-actions"; +import { setSelectedResourceUuid } from "store/selected-resource/selected-resource-actions"; interface Props { id: string; @@ -22,23 +23,21 @@ interface Props { working?: boolean; } -const mapStateToProps = ({ progressIndicator, dataExplorer, router, multiselect, detailsPanel, properties}: RootState, { id }: Props) => { - const working = !!progressIndicator.some(p => p.id === id && p.working); +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 isDetailsResourceChecked = multiselect.checkedList[detailsPanel.resourceUuid] - const isOnlyOneSelected = Object.values(multiselect.checkedList).filter(x => x === true).length === 1; - const currentItemUuid = - currentRoute === '/workflows' ? properties.workflowPanelDetailsUuid : isDetailsResourceChecked && isOnlyOneSelected ? detailsPanel.resourceUuid : multiselect.selectedUuid; const isMSToolbarVisible = multiselect.isVisible; return { ...dataExplorerState, currentRoute: currentRoute, paperKey: currentRoute, - currentItemUuid, + currentRouteUuid: properties.currentRouteUuid, isMSToolbarVisible, + selectedResourceUuid, checkedList: multiselect.checkedList, working, + searchBarValue: searchBar.searchValue, }; }; @@ -84,6 +83,10 @@ const mapDispatchToProps = () => { dispatch(setCheckedListOnStore(checkedList)); }, + setSelectedUuid: (uuid: string | null) => { + dispatch(setSelectedResourceUuid(uuid)); + }, + onRowClick, onRowDoubleClick,