X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/0da5b926cb7aa461e8d45d86d5fc423d90e768a1..2d03b09bc6f29ab1bfe42a2fd3a88f17189e6a52:/src/views/main-panel/main-panel.tsx diff --git a/src/views/main-panel/main-panel.tsx b/src/views/main-panel/main-panel.tsx index 087163dc..5828c6db 100644 --- a/src/views/main-panel/main-panel.tsx +++ b/src/views/main-panel/main-panel.tsx @@ -7,6 +7,8 @@ import { connect } from 'react-redux'; import { MainPanelRoot, MainPanelRootDataProps } from '~/views/main-panel/main-panel-root'; import { isSystemWorking } from '~/store/progress-indicator/progress-indicator-reducer'; import { isWorkbenchLoading } from '~/store/workbench/workbench-actions'; +import { LinkAccountPanelStatus } from '~/store/link-account-panel/link-account-panel-reducer'; +import { matchLinkAccountRoute } from '~/routes/routes'; const mapStateToProps = (state: RootState): MainPanelRootDataProps => { return { @@ -14,7 +16,10 @@ const mapStateToProps = (state: RootState): MainPanelRootDataProps => { working: isSystemWorking(state.progressIndicator), loading: isWorkbenchLoading(state), buildInfo: state.appInfo.buildInfo, - uuidPrefix: state.properties.uuidPrefix + uuidPrefix: state.auth.localCluster, + isNotLinking: state.linkAccountPanel.status === LinkAccountPanelStatus.NONE || state.linkAccountPanel.status === LinkAccountPanelStatus.INITIAL, + isLinkingPath: state.router.location ? matchLinkAccountRoute(state.router.location.pathname) !== null : false, + siteBanner: state.auth.config.clusterConfig.Workbench.SiteName }; };