X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/796a3ce005800d37ef5711b367c926ac720577d5..f6093a73debdd7135870582088202da459386f17:/src/views/collection-panel/collection-panel.tsx diff --git a/src/views/collection-panel/collection-panel.tsx b/src/views/collection-panel/collection-panel.tsx index f4d6532e88..c4221937e7 100644 --- a/src/views/collection-panel/collection-panel.tsx +++ b/src/views/collection-panel/collection-panel.tsx @@ -5,9 +5,8 @@ import * as React from 'react'; import { StyleRulesCallback, WithStyles, withStyles, Card, - CardHeader, IconButton, CardContent, Grid, Chip, Tooltip + CardHeader, IconButton, CardContent, Grid, Tooltip } from '@material-ui/core'; -import { compose } from "redux"; import { connect, DispatchProp } from "react-redux"; import { RouteComponentProps } from 'react-router'; import { ArvadosTheme } from '~/common/custom-theme'; @@ -22,13 +21,10 @@ import { getResource } from '~/store/resources/resources'; import { openContextMenu } from '~/store/context-menu/context-menu-actions'; import { ContextMenuKind } from '~/views-components/context-menu/context-menu'; import { formatFileSize } from "~/common/formatters"; -import { getResourceData } from "~/store/resources-data/resources-data"; -import { ResourceData } from "~/store/resources-data/resources-data-reducer"; import { openDetailsPanel } from '~/store/details-panel/details-panel-action'; -import * as CopyToClipboard from 'react-copy-to-clipboard'; import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; -import { connectVocabulary, VocabularyProp } from '~/views-components/resource-properties-form/property-field-common'; -import { getTagValueLabel, getTagKeyLabel } from '~/models/vocabulary'; +import { getPropertyChip } from '~/views-components/resource-properties-form/property-chip'; +import { IllegalNamingWarning } from '~/components/warning/warning'; type CssRules = 'card' | 'iconHeader' | 'tag' | 'label' | 'value' | 'link'; @@ -62,25 +58,20 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ interface CollectionPanelDataProps { item: CollectionResource; - data: ResourceData; } type CollectionPanelProps = CollectionPanelDataProps & DispatchProp & WithStyles & RouteComponentProps<{ id: string }>; -export const CollectionPanel = compose( - connectVocabulary, - withStyles(styles))( - connect((state: RootState, props: RouteComponentProps<{ id: string }> & VocabularyProp) => { - const item = getResource(props.match.params.id)(state.resources); - const data = getResourceData(props.match.params.id)(state.resourcesData); - const vocabulary = props.vocabulary; - return { item, data, vocabulary }; - })( - class extends React.Component { +export const CollectionPanel = withStyles(styles)( + connect((state: RootState, props: RouteComponentProps<{ id: string }>) => { + const item = getResource(props.match.params.id)(state.resources); + return { item }; + })( + class extends React.Component { render() { - const { classes, item, data, dispatch, vocabulary } = this.props; + const { classes, item, dispatch } = this.props; return item ? <> @@ -99,7 +90,7 @@ export const CollectionPanel = compose( } - title={item && item.name} + title={item && {item.name}} titleTypographyProps={this.titleProps} subheader={item && item.description} subheaderTypographyProps={this.titleProps} /> @@ -113,9 +104,9 @@ export const CollectionPanel = compose( label='Portable data hash' linkToUuid={item && item.portableDataHash} /> + label='Number of files' value={item && item.fileCount} /> + label='Content size' value={item && formatFileSize(item.fileSizeTotal)} /> {(item.properties.container_request || item.properties.containerRequest) && @@ -136,17 +127,18 @@ export const CollectionPanel = compose( - { - Object.keys(item.properties).map(k => { - const ids = `${k}: ${item.properties[k]}`; - const label = `${getTagKeyLabel(k, vocabulary)}: ${getTagValueLabel(k, item.properties[k], vocabulary)}`; - return this.onCopy("Copied")}> - - ; - }) - } + {Object.keys(item.properties).map(k => + Array.isArray(item.properties[k]) + ? item.properties[k].map((v: string) => + getPropertyChip( + k, v, + this.handleDelete(k, v), + classes.tag)) + : getPropertyChip( + k, item.properties[k], + this.handleDelete(k, item.properties[k]), + classes.tag) + )} @@ -180,8 +172,8 @@ export const CollectionPanel = compose( kind: SnackbarKind.SUCCESS })) - handleDelete = (key: string) => () => { - this.props.dispatch(deleteCollectionTag(key)); + handleDelete = (key: string, value: string) => () => { + this.props.dispatch(deleteCollectionTag(key, value)); } openCollectionDetails = () => {