// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 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'; import { extractUuidKind, ResourceKind } from 'models/resource'; import { ClassNameMap } from '@material-ui/core/styles/withStyles'; export interface Breadcrumb { label: string; icon?: IconType; uuid: string; } type CssRules = "item" | "defaultItem" | "processItem" | "collectionItem" | "parentItem" | "currentItem" | "label" | "icon" | "frozenIcon"; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ item: { borderRadius: '16px', }, defaultItem: { backgroundColor: theme.customs.colors.grey300, '&:hover': { backgroundColor: theme.customs.colors.grey400, } }, processItem: { backgroundColor: theme.customs.colors.lightGreen300, '&:hover': { backgroundColor: theme.customs.colors.lightGreen400, } }, collectionItem: { backgroundColor: theme.customs.colors.cyan100, '&:hover': { backgroundColor: theme.customs.colors.cyan200, } }, parentItem: { opacity: 0.75 }, currentItem: { opacity: 1 }, label: { textTransform: "none" }, icon: { fontSize: 20, color: grey["600"], marginRight: '10px', }, frozenIcon: { fontSize: 20, color: grey["600"], marginLeft: '10px', }, }); export interface BreadcrumbsProps { items: Breadcrumb[]; resources: ResourcesState; onClick: (breadcrumb: Breadcrumb) => void; onContextMenu: (event: React.MouseEvent, breadcrumb: Breadcrumb) => void; } const getBreadcrumbClass = (item: Breadcrumb, classes: ClassNameMap): string => { switch (extractUuidKind(item.uuid)) { case ResourceKind.PROCESS: return classes.processItem; case ResourceKind.COLLECTION: return classes.collectionItem; default: return classes.defaultItem; } }; 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 && } ); }) } );