X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ee9d1e39b5d469a827be5a719c9c0860914ab2a8..83e7cbb4620d7e7d61c56fb25efc2069955eb78a:/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..40ecfc5b38 100644 --- a/services/workbench2/src/components/data-explorer/data-explorer.tsx +++ b/services/workbench2/src/components/data-explorer/data-explorer.tsx @@ -3,7 +3,7 @@ // SPDX-License-Identifier: AGPL-3.0 import React from "react"; -import { Grid, Paper, Toolbar, StyleRulesCallback, withStyles, WithStyles, TablePagination, IconButton, Tooltip, Button } from "@material-ui/core"; +import { Grid, Paper, Toolbar, StyleRulesCallback, withStyles, WithStyles, TablePagination, IconButton, Tooltip, Button, Typography } from "@material-ui/core"; import { ColumnSelector } from "components/column-selector/column-selector"; import { DataTable, DataColumns, DataTableFetchMode } from "components/data-table/data-table"; import { DataColumn } from "components/data-table/data-column"; @@ -16,14 +16,21 @@ import { DataTableFilters } from "components/data-table-filters/data-table-filte import { CloseIcon, IconType, MaximizeIcon, UnMaximizeIcon, MoreVerticalIcon } from "components/icon/icon"; import { PaperProps } from "@material-ui/core/Paper"; import { MPVPanelProps } from "components/multi-panel-view/multi-panel-view"; +import classNames from "classnames"; -type CssRules = "titleWrapper" | "searchBox" | "headerMenu" | "toolbar" | "footer" | "root" | "moreOptionsButton" | "title" | "dataTable" | "container"; +type CssRules = "titleWrapper" | "msToolbarStyles" | "subpanelToolbarStyles" | "searchBox" | "headerMenu" | "toolbar" | "footer"| "loadMoreContainer" | "numResults" | "root" | "moreOptionsButton" | "title" | 'subProcessTitle' | 'progressWrapper' | 'progressWrapperNoTitle' | "dataTable" | "container"; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ titleWrapper: { display: "flex", justifyContent: "space-between", }, + msToolbarStyles: { + paddingTop: "0.6rem", + }, + subpanelToolbarStyles: { + paddingTop: "1.2rem", + }, searchBox: { paddingBottom: 0, }, @@ -35,13 +42,32 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ footer: { overflow: "auto", }, + loadMoreContainer: { + minWidth: '8rem', + }, root: { height: "100%", + flex: 1, + overflowY: "auto", }, moreOptionsButton: { padding: 0, }, + numResults: { + marginTop: 0, + fontSize: "10px", + marginLeft: "10px", + marginBottom: '-0.5rem', + minWidth: '8.5rem', + }, 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, @@ -49,6 +75,14 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ flexGrow: 0, paddingRight: "10px", }, + progressWrapper: { + margin: "28px 0 0", + flexGrow: 1, + flexBasis: "100px", + }, + progressWrapperNoTitle: { + paddingLeft: "10px", + }, dataTable: { height: "100%", overflow: "auto", @@ -77,7 +111,6 @@ interface DataExplorerDataProps { defaultViewIcon?: IconType; defaultViewMessages?: string[]; working?: boolean; - currentRefresh?: string; currentRoute?: string; hideColumnSelector?: boolean; paperProps?: PaperProps; @@ -86,10 +119,14 @@ interface DataExplorerDataProps { title?: React.ReactNode; progressBar?: React.ReactNode; paperKey?: string; - currentItemUuid: string; + currentRouteUuid: string; + selectedResourceUuid: string; elementPath?: string; isMSToolbarVisible: boolean; checkedList: TCheckedList; + isNotFound: boolean; + searchBarValue: string; + paperClassName?: string; } interface DataExplorerActionProps { @@ -107,6 +144,7 @@ interface DataExplorerActionProps { extractKey?: (item: T) => React.Key; toggleMSToolbar: (isVisible: boolean) => void; setCheckedListOnStore: (checkedList: TCheckedList) => void; + setSelectedUuid: (uuid: string) => void; } type DataExplorerProps = DataExplorerDataProps & DataExplorerActionProps & WithStyles & MPVPanelProps; @@ -114,51 +152,31 @@ type DataExplorerProps = DataExplorerDataProps & DataExplorerActionProps extends React.Component> { state = { - showLoading: false, - prevRefresh: "", - prevRoute: "", + msToolbarInDetailsCard: true, }; multiSelectToolbarInTitle = !this.props.title && !this.props.progressBar; + maxItemsAvailable = 0; - 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, - }); + componentDidMount() { + if (this.props.onSetColumns) { + this.props.onSetColumns(this.props.columns); } + } - if (currentRefresh !== this.state.prevRefresh) { - // Component already mounted, but the user just clicked the - // refresh button. + componentDidUpdate( prevProps: Readonly>, prevState: Readonly<{}>, snapshot?: any ): void { + const { selectedResourceUuid, currentRouteUuid } = this.props; + if(selectedResourceUuid !== prevProps.selectedResourceUuid || currentRouteUuid !== prevProps.currentRouteUuid) { this.setState({ - showLoading: this.props.working, - prevRefresh: currentRefresh, - }); + msToolbarInDetailsCard: selectedResourceUuid === this.props.currentRouteUuid, + }) } - if (this.state.showLoading && !this.props.working) { - this.setState({ - showLoading: false, - }); + if (this.props.itemsAvailable !== prevProps.itemsAvailable) { + this.maxItemsAvailable = Math.max(this.maxItemsAvailable, this.props.itemsAvailable); } - } - - componentDidMount() { - if (this.props.onSetColumns) { - this.props.onSetColumns(this.props.columns); + if (this.props.searchBarValue !== prevProps.searchBarValue) { + this.maxItemsAvailable = 0; } - // 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() { @@ -187,7 +205,8 @@ export const DataExplorer = withStyles(styles)( hideSearchInput, paperKey, fetchMode, - currentItemUuid, + selectedResourceUuid, + currentRoute, title, progressBar, doHidePanel, @@ -199,10 +218,12 @@ export const DataExplorer = withStyles(styles)( toggleMSToolbar, setCheckedListOnStore, checkedList, + working, + paperClassName, } = this.props; return ( -
+
{title && ( {title} )} - {!!progressBar && progressBar} - {this.multiSelectToolbarInTitle && } + {!!progressBar && +
{progressBar}
+ } + {this.multiSelectToolbarInTitle && !this.state.msToolbarInDetailsCard && } {(!hideColumnSelector || !hideSearchInput || !!actions) && ( )}
- {!this.multiSelectToolbarInTitle && } + {!this.multiSelectToolbarInTitle && } {elementPath && ( - {elementPath} + {elementPath.length > 2 ? elementPath : ''} )} ) : ( - + + + Showing {items.length} / {this.maxItemsAvailable} results + + + )} @@ -381,7 +419,10 @@ export const DataExplorer = withStyles(styles)( > this.props.onContextMenu(event, item)} + onClick={event => { + event.stopPropagation() + this.props.onContextMenu(event, item) + }} >