X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/19c37b6272043711e64fa30b02d82dfa9aab3f19..6477e004fb67681b8b64bcdbca187dbc32c6cd60:/services/workbench2/src/components/data-explorer/data-explorer.tsx diff --git a/services/workbench2/src/components/data-explorer/data-explorer.tsx b/services/workbench2/src/components/data-explorer/data-explorer.tsx index 8f5661929b..ba710bc783 100644 --- a/services/workbench2/src/components/data-explorer/data-explorer.tsx +++ b/services/workbench2/src/components/data-explorer/data-explorer.tsx @@ -17,7 +17,7 @@ import { CloseIcon, IconType, MaximizeIcon, UnMaximizeIcon, MoreVerticalIcon } f import { PaperProps } from "@material-ui/core/Paper"; import { MPVPanelProps } from "components/multi-panel-view/multi-panel-view"; -type CssRules = "titleWrapper" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | "dataTable" | "container"; +type CssRules = "titleWrapper" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | 'subProcessTitle' | "dataTable" | "container"; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ titleWrapper: { @@ -42,6 +42,13 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ padding: 0, }, title: { + display: "inline-block", + paddingLeft: theme.spacing.unit * 2, + paddingTop: theme.spacing.unit * 2, + fontSize: "18px", + paddingRight: "10px", + }, + subProcessTitle: { display: "inline-block", paddingLeft: theme.spacing.unit * 2, paddingTop: theme.spacing.unit * 2, @@ -77,7 +84,6 @@ interface DataExplorerDataProps { defaultViewIcon?: IconType; defaultViewMessages?: string[]; working?: boolean; - currentRefresh?: string; currentRoute?: string; hideColumnSelector?: boolean; paperProps?: PaperProps; @@ -90,6 +96,7 @@ interface DataExplorerDataProps { elementPath?: string; isMSToolbarVisible: boolean; checkedList: TCheckedList; + isNotFound: boolean; } interface DataExplorerActionProps { @@ -113,52 +120,13 @@ type DataExplorerProps = DataExplorerDataProps & DataExplorerActionProps extends React.Component> { - state = { - showLoading: false, - prevRefresh: "", - prevRoute: "", - }; multiSelectToolbarInTitle = !this.props.title && !this.props.progressBar; - componentDidUpdate(prevProps: DataExplorerProps) { - const currentRefresh = this.props.currentRefresh || ""; - const currentRoute = this.props.currentRoute || ""; - - if (currentRoute !== this.state.prevRoute) { - // Component already mounted, but the user comes from a route change, - // like browsing through a project hierarchy. - this.setState({ - showLoading: this.props.working, - prevRoute: currentRoute, - }); - } - - if (currentRefresh !== this.state.prevRefresh) { - // Component already mounted, but the user just clicked the - // refresh button. - this.setState({ - showLoading: this.props.working, - prevRefresh: currentRefresh, - }); - } - if (this.state.showLoading && !this.props.working) { - this.setState({ - showLoading: false, - }); - } - } - componentDidMount() { if (this.props.onSetColumns) { this.props.onSetColumns(this.props.columns); } - // Component just mounted, so we need to show the loading indicator. - this.setState({ - showLoading: this.props.working, - prevRefresh: this.props.currentRefresh || "", - prevRoute: this.props.currentRoute || "", - }); } render() { @@ -188,6 +156,7 @@ export const DataExplorer = withStyles(styles)( paperKey, fetchMode, currentItemUuid, + currentRoute, title, progressBar, doHidePanel, @@ -199,6 +168,7 @@ export const DataExplorer = withStyles(styles)( toggleMSToolbar, setCheckedListOnStore, checkedList, + working, } = this.props; return ( -
+
{title && ( {title} @@ -295,6 +265,7 @@ export const DataExplorer = withStyles(styles)( item xs="auto" className={classes.dataTable} + style={currentRoute?.includes('search-results') || !!progressBar ? {marginTop: '-10px'} : {}} > this.props.onContextMenu(event, item)} + onClick={event => { + event.stopPropagation() + this.props.onContextMenu(event, item) + }} >