X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c77d85e1b722e2140736af692235ceed24952563..4b75b09d1c75d6796e75efc55e7b06917834b63e:/src/views/search-results-panel/search-results-panel-view.tsx diff --git a/src/views/search-results-panel/search-results-panel-view.tsx b/src/views/search-results-panel/search-results-panel-view.tsx index fd420b83..60fdd33e 100644 --- a/src/views/search-results-panel/search-results-panel-view.tsx +++ b/src/views/search-results-panel/search-results-panel-view.tsx @@ -28,6 +28,7 @@ import { Link } from 'react-router-dom'; import { StyleRulesCallback, withStyles, WithStyles } from '@material-ui/core'; import { ArvadosTheme } from 'common/custom-theme'; import { getSearchSessions } from 'store/search-bar/search-bar-actions'; +import { camelCase } from 'lodash'; export enum SearchResultsPanelColumnNames { CLUSTER = "Cluster", @@ -39,9 +40,12 @@ export enum SearchResultsPanelColumnNames { LAST_MODIFIED = "Last modified" } -export type CssRules = 'siteManagerLink'; +export type CssRules = 'siteManagerLink' | 'searchResults'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ + searchResults: { + width: '100%' + }, siteManagerLink: { marginRight: theme.spacing.unit * 2, float: 'right' @@ -111,9 +115,10 @@ export const SearchResultsPanelView = withStyles(styles, { withTheme: true })( const homeCluster = props.user.uuid.substring(0, 5); const loggedIn = props.sessions.filter((ss) => ss.loggedIn && ss.userIsActive); const [selectedItem, setSelectedItem] = useState(''); + const [itemPath, setItemPath] = useState([]); useEffect(() => { - let itemPath: string[] = []; + let tmpPath: string[] = []; (async () => { if (selectedItem !== '') { @@ -122,16 +127,16 @@ export const SearchResultsPanelView = withStyles(styles, { withTheme: true })( while (itemKind !== ResourceKind.USER) { const clusterId = searchUuid.split('-')[0]; - const serviceType = itemKind?.replace('arvados#', ''); + const serviceType = camelCase(itemKind?.replace('arvados#', '')); const service = Object.values(servicesProvider.getServices()) .filter(({resourceType}) => !!resourceType) - .find(({resourceType}) => resourceType.indexOf(serviceType) > -1); + .find(({resourceType}) => camelCase(resourceType).indexOf(serviceType) > -1); const sessions = getSearchSessions(clusterId, props.sessions); if (sessions.length > 0) { const session = sessions[0]; const { name, ownerUuid } = await (service as any).get(searchUuid, false, session); - itemPath.push(name); + tmpPath.push(name); searchUuid = ownerUuid; itemKind = extractUuidKind(searchUuid); } else { @@ -139,8 +144,8 @@ export const SearchResultsPanelView = withStyles(styles, { withTheme: true })( } } - itemPath.push(props.user.uuid === searchUuid ? 'Projects' : 'Shared with me'); - props.onPathDisplay(`/ ${itemPath.reverse().join(' / ')}`); + tmpPath.push(props.user.uuid === searchUuid ? 'Projects' : 'Shared with me'); + setItemPath(tmpPath); } })(); @@ -153,13 +158,14 @@ export const SearchResultsPanelView = withStyles(styles, { withTheme: true })( // eslint-disable-next-line react-hooks/exhaustive-deps },[props.onItemClick]); - return + return