X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ce0830b72d9ea4e58fa06b0b7a9b938067a6c802..3c7e3cdc547ad5468421e1c049daa94b0d4b8bc0:/src/components/tree/tree.tsx diff --git a/src/components/tree/tree.tsx b/src/components/tree/tree.tsx index b6320580..1b77b5d9 100644 --- a/src/components/tree/tree.tsx +++ b/src/components/tree/tree.tsx @@ -2,15 +2,18 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { List, ListItem, ListItemIcon, Collapse, Checkbox, Radio } from "@material-ui/core"; +import React from 'react'; +import { List, ListItem, ListItemIcon, Checkbox, Radio, Collapse } from "@material-ui/core"; import { StyleRulesCallback, withStyles, WithStyles } from '@material-ui/core/styles'; +import { CollectionIcon, DefaultIcon, DirectoryIcon, FileIcon, ProjectIcon, FilterGroupIcon } from 'components/icon/icon'; import { ReactElement } from "react"; import CircularProgress from '@material-ui/core/CircularProgress'; -import * as classnames from "classnames"; +import classnames from "classnames"; -import { ArvadosTheme } from '~/common/custom-theme'; +import { ArvadosTheme } from 'common/custom-theme'; import { SidePanelRightArrowIcon } from '../icon/icon'; +import { ResourceKind } from 'models/resource'; +import { GroupClass } from 'models/group'; type CssRules = 'list' | 'listItem' @@ -21,7 +24,9 @@ type CssRules = 'list' | 'renderContainer' | 'iconOpen' | 'toggableIcon' - | 'checkbox'; + | 'checkbox' + | 'childItem' + | 'childItemIcon'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ list: { @@ -46,9 +51,6 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ renderContainer: { flex: 1 }, - active: { - color: theme.palette.primary.main, - }, iconClose: { transition: 'all 0.1s ease', }, @@ -62,7 +64,25 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ margin: `0 ${theme.spacing.unit}px`, padding: 0, color: theme.palette.grey["500"], - } + }, + childItem: { + cursor: 'pointer', + display: 'flex', + padding: '3px 20px', + fontSize: '0.875rem', + alignItems: 'center', + '&:hover': { + backgroundColor: 'rgba(0, 0, 0, 0.08)', + } + }, + childItemIcon: { + marginLeft: '8px', + marginRight: '16px', + color: 'rgba(0, 0, 0, 0.54)', + }, + active: { + color: theme.palette.primary.main, + }, }); export enum TreeItemStatus { @@ -77,6 +97,7 @@ export interface TreeItem { open: boolean; active: boolean; selected?: boolean; + flatTree?: boolean; status: TreeItemStatus; items?: Array>; } @@ -86,6 +107,7 @@ export interface TreeProps { currentItemUuid?: string; items?: Array>; level?: number; + itemsMap?: Map>; onContextMenu: (event: React.MouseEvent, item: TreeItem) => void; render: (item: TreeItem, level?: number) => ReactElement<{}>; showSelection?: boolean | ((item: TreeItem) => boolean); @@ -96,24 +118,150 @@ export interface TreeProps { toggleItemSelection?: (event: React.MouseEvent, item: TreeItem) => void; /** - * When set to true use radio buttons instead of checkboxes for item selection. + * When set to true use radio buttons instead of checkboxes for item selection. * This does not guarantee radio group behavior (i.e item mutual exclusivity). - * Any item selection logic must be done in the toggleItemRadioButton callback prop. + * Any item selection logic must be done in the toggleItemActive callback prop. */ useRadioButtons?: boolean; +} - /** - * Called when selection of an item in the tree is toggled via a radio button. - * Use this callback prop to implement any selection logic (i.e item mutual exclusivity). - */ - toggleItemRadioButton?: (item: TreeItem) => void; +const getActionAndId = (event: any, initAction: string | undefined = undefined) => { + const { nativeEvent: { target } } = event; + let currentTarget: HTMLElement = target as HTMLElement; + let action: string | undefined = initAction || currentTarget.dataset.action; + let id: string | undefined = currentTarget.dataset.id; + + while (action === undefined || id === undefined) { + currentTarget = currentTarget.parentElement as HTMLElement; + + if (!currentTarget) { + break; + } + + action = action || currentTarget.dataset.action; + id = id || currentTarget.dataset.id; + } + + return [action, id]; +}; + +interface FlatTreeProps { + it: TreeItem; + levelIndentation: number; + onContextMenu: Function; + handleToggleItemOpen: Function; + toggleItemActive: Function; + getToggableIconClassNames: Function; + getProperArrowAnimation: Function; + itemsMap?: Map>; + classes: any; + showSelection: any; + useRadioButtons?: boolean; + handleCheckboxChange: Function; } +const FLAT_TREE_ACTIONS = { + toggleOpen: 'TOGGLE_OPEN', + contextMenu: 'CONTEXT_MENU', + toggleActive: 'TOGGLE_ACTIVE', +}; + +const ItemIcon = React.memo(({ type, kind, active, groupClass, classes }: any) => { + let Icon = ProjectIcon; + + if (groupClass === GroupClass.FILTER) { + Icon = FilterGroupIcon; + } + + if (type) { + switch (type) { + case 'directory': + Icon = DirectoryIcon; + break; + case 'file': + Icon = FileIcon; + break; + default: + Icon = DefaultIcon; + } + } + + if (kind) { + switch (kind) { + case ResourceKind.COLLECTION: + Icon = CollectionIcon; + break; + default: + break; + } + } + + return ; +}); + +const FlatTree = (props: FlatTreeProps) => +
{ + const [action, id] = getActionAndId(event, FLAT_TREE_ACTIONS.contextMenu); + props.onContextMenu(event, { id } as any); + }} + onClick={(event) => { + const [action, id] = getActionAndId(event); + + if (action && id) { + const item = props.itemsMap ? props.itemsMap[id] : { id }; + + switch (action) { + case FLAT_TREE_ACTIONS.toggleOpen: + props.handleToggleItemOpen(item as any, event); + break; + case FLAT_TREE_ACTIONS.toggleActive: + props.toggleItemActive(event, item as any); + break; + default: + break; + } + } + }} + > + { + (props.it.items || []) + .map((item: any) =>
+ + + {props.getProperArrowAnimation(item.status, item.items!)} + + + {props.showSelection(item) && !props.useRadioButtons && + } + {props.showSelection(item) && props.useRadioButtons && + } +
+ + + + {item.data.name} + + +
+
) + } +
; + export const Tree = withStyles(styles)( class Component extends React.Component & WithStyles, {}> { render(): ReactElement { const level = this.props.level ? this.props.level : 0; - const { classes, render, toggleItemOpen, items, toggleItemActive, onContextMenu, disableRipple, currentItemUuid, useRadioButtons } = this.props; + const { classes, render, items, toggleItemActive, toggleItemOpen, disableRipple, currentItemUuid, useRadioButtons, itemsMap } = this.props; const { list, listItem, loader, toggableIconContainer, renderContainer } = classes; const showSelection = typeof this.props.showSelection === 'function' ? this.props.showSelection @@ -123,7 +271,7 @@ export const Tree = withStyles(styles)( return {items && items.map((it: TreeItem, idx: number) => -
+
toggleItemActive(event, it)} selected={showSelection(it) && it.id === currentItemUuid} - onContextMenu={this.handleRowContextMenu(it)}> + onContextMenu={(event) => this.props.onContextMenu(event, it)}> {it.status === TreeItemStatus.PENDING ? : null} - this.handleToggleItemOpen(it, e)} className={toggableIconContainer}> {this.getProperArrowAnimation(it.status, it.items!)} @@ -151,25 +299,41 @@ export const Tree = withStyles(styles)( } + color="primary" />}
{render(it, level)}
- {it.items && it.items.length > 0 && - - - } + { + it.open && it.items && it.items.length > 0 && + it.flatTree ? + : + + + + }
)} ; } @@ -193,10 +357,6 @@ export const Tree = withStyles(styles)( }); } - handleRowContextMenu = (item: TreeItem) => - (event: React.MouseEvent) => - this.props.onContextMenu(event, item) - handleCheckboxChange = (item: TreeItem) => { const { toggleItemSelection } = this.props; return toggleItemSelection @@ -207,17 +367,7 @@ export const Tree = withStyles(styles)( : undefined; } - handleRadioButtonChange = (item: TreeItem) => { - const { toggleItemRadioButton } = this.props; - return toggleItemRadioButton - ? (event: React.ChangeEvent, checked: boolean) => { - event.stopPropagation(); - toggleItemRadioButton(item); - } - : undefined; - } - - handleToggleItemOpen = (item: TreeItem) => (event: React.MouseEvent) => { + handleToggleItemOpen = (item: TreeItem, event: React.MouseEvent) => { event.stopPropagation(); this.props.toggleItemOpen(event, item); }