X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5627bf1a83323d2b0364cb069564998eb8c6ca7a..44cbbc08d7a5b559a542bbf6491a05467de1c15c:/src/views/collection-panel/collection-panel.tsx?ds=sidebyside diff --git a/src/views/collection-panel/collection-panel.tsx b/src/views/collection-panel/collection-panel.tsx index d22dd0de28..0b264b6bab 100644 --- a/src/views/collection-panel/collection-panel.tsx +++ b/src/views/collection-panel/collection-panel.tsx @@ -16,12 +16,11 @@ import { DetailsAttribute } from '~/components/details-attribute/details-attribu import { CollectionResource } from '~/models/collection'; import { CollectionPanelFiles } from '~/views-components/collection-panel-files/collection-panel-files'; import * as CopyToClipboard from 'react-copy-to-clipboard'; -import { TagResource } from '~/models/tag'; import { CollectionTagForm } from './collection-tag-form'; import { deleteCollectionTag } from '~/store/collection-panel/collection-panel-action'; import { snackbarActions } from '~/store/snackbar/snackbar-actions'; import { getResource } from '~/store/resources/resources'; -import { contextMenuActions } from '~/store/context-menu/context-menu-actions'; +import { openContextMenu } from '~/store/context-menu/context-menu-actions'; import { ContextMenuKind } from '~/views-components/context-menu/context-menu'; type CssRules = 'card' | 'iconHeader' | 'tag' | 'copyIcon' | 'label' | 'value'; @@ -55,7 +54,6 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ interface CollectionPanelDataProps { item: CollectionResource; - tags: TagResource[]; } type CollectionPanelProps = CollectionPanelDataProps & DispatchProp @@ -66,24 +64,24 @@ export const CollectionPanel = withStyles(styles)( connect((state: RootState, props: RouteComponentProps<{ id: string }>) => { const collection = getResource(props.match.params.id)(state.resources); return { - item: collection, - tags: state.collectionPanel.tags + item: collection }; })( class extends React.Component { - render() { - const { classes, item, tags } = this.props; + const { classes, item } = this.props; return
} action={ - - - + + + + + } title={item && item.name} subheader={item && item.description} /> @@ -117,10 +115,10 @@ export const CollectionPanel = withStyles(styles)( { - tags.map(tag => { - return ; + Object.keys(item.properties).map( key => { + return ; }) } @@ -134,24 +132,20 @@ export const CollectionPanel = withStyles(styles)( } handleContextMenu = (event: React.MouseEvent) => { - event.preventDefault(); - const { uuid, name, description } = this.props.item; + const { uuid, ownerUuid, name, description, kind } = this.props.item; const resource = { uuid, + ownerUuid, name, description, - kind: ContextMenuKind.COLLECTION + kind, + menuKind: ContextMenuKind.COLLECTION }; - this.props.dispatch( - contextMenuActions.OPEN_CONTEXT_MENU({ - position: { x: event.clientX, y: event.clientY }, - resource - }) - ); + this.props.dispatch(openContextMenu(event, resource)); } - handleDelete = (uuid: string) => () => { - this.props.dispatch(deleteCollectionTag(uuid)); + handleDelete = (key: string) => () => { + this.props.dispatch(deleteCollectionTag(key)); } onCopy = () => { @@ -160,12 +154,6 @@ export const CollectionPanel = withStyles(styles)( hideDuration: 2000 })); } - } ) ); - -const renderTagLabel = (tag: TagResource) => { - const { properties } = tag; - return `${properties.key}: ${properties.value}`; -};