X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/eede2d8dc696f24552414b2425bb5d3a745280cc..cc70636e87a68db6a6af296a924e66e78578280a:/src/components/breadcrumbs/breadcrumbs.tsx diff --git a/src/components/breadcrumbs/breadcrumbs.tsx b/src/components/breadcrumbs/breadcrumbs.tsx index 41f71981..301f3041 100644 --- a/src/components/breadcrumbs/breadcrumbs.tsx +++ b/src/components/breadcrumbs/breadcrumbs.tsx @@ -2,68 +2,106 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { Button, Grid, StyleRulesCallback, WithStyles, Typography, Tooltip } from '@material-ui/core'; import ChevronRightIcon from '@material-ui/icons/ChevronRight'; import { withStyles } from '@material-ui/core'; +import { IllegalNamingWarning } from '../warning/warning'; +import { IconType, FreezeIcon } from 'components/icon/icon'; +import grey from '@material-ui/core/colors/grey'; +import { ResourcesState } from 'store/resources/resources'; +import classNames from 'classnames'; +import { ArvadosTheme } from 'common/custom-theme'; export interface Breadcrumb { label: string; + icon?: IconType; + uuid: string; } -interface BreadcrumbsProps { - items: Breadcrumb[]; - onClick: (breadcrumb: Breadcrumb) => void; -} - -const Breadcrumbs: React.SFC> = ({ classes, onClick, items }) => { - return - { - items.map((item, index) => { - const isLastItem = index === items.length - 1; - return ( - - - - - { - !isLastItem && - } - - ); - }) - } - ; -}; - -type CssRules = "item" | "currentItem" | "label"; +type CssRules = "item" | "label" | "icon" | "frozenIcon"; -const styles: StyleRulesCallback = theme => { - const { unit } = theme.spacing; - return { - item: { - opacity: 0.6 +const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ + item: { + borderRadius: '16px', + height: '32px', + backgroundColor: theme.customs.colors.grey300, + '&.parentItem': { + backgroundColor: `${theme.customs.colors.grey300}99`, }, - currentItem: { - opacity: 1 + '&:hover': { + backgroundColor: theme.customs.colors.grey400, }, - label: { - textTransform: "none" - } - }; -}; + '&.parentItem:hover': { + backgroundColor: `${theme.customs.colors.grey400}99`, + }, + }, + label: { + textTransform: "none", + paddingRight: '3px', + paddingLeft: '3px', + lineHeight: '1.4', + }, + icon: { + fontSize: 20, + color: grey["600"], + marginRight: '5px', + }, + frozenIcon: { + fontSize: 20, + color: grey["600"], + marginLeft: '3px', + }, +}); -export default withStyles(styles)(Breadcrumbs); +export interface BreadcrumbsProps { + items: Breadcrumb[]; + resources: ResourcesState; + onClick: (breadcrumb: Breadcrumb) => void; + onContextMenu: (event: React.MouseEvent, breadcrumb: Breadcrumb) => void; +} +export const Breadcrumbs = withStyles(styles)( + ({ classes, onClick, onContextMenu, items, resources }: BreadcrumbsProps & WithStyles) => + + { + items.map((item, index) => { + const isLastItem = index === items.length - 1; + const isFirstItem = index === 0; + const Icon = item.icon || (() => (null)); + return ( + + {isFirstItem ? null : } + + + + {!isLastItem && } + + ); + }) + } + +);