1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from 'react';
7 StyleRulesCallback, WithStyles, withStyles, Card,
8 CardHeader, IconButton, CardContent, Grid, Chip, Tooltip
9 } from '@material-ui/core';
10 import { connect, DispatchProp } from "react-redux";
11 import { RouteComponentProps } from 'react-router';
12 import { ArvadosTheme } from '~/common/custom-theme';
13 import { RootState } from '~/store/store';
14 import { MoreOptionsIcon, CollectionIcon, CopyIcon } from '~/components/icon/icon';
15 import { DetailsAttribute } from '~/components/details-attribute/details-attribute';
16 import { CollectionResource } from '~/models/collection';
17 import { CollectionPanelFiles } from '~/views-components/collection-panel-files/collection-panel-files';
18 import * as CopyToClipboard from 'react-copy-to-clipboard';
19 import { TagResource } from '~/models/tag';
20 import { CollectionTagForm } from './collection-tag-form';
21 import { deleteCollectionTag } from '~/store/collection-panel/collection-panel-action';
22 import { snackbarActions } from '~/store/snackbar/snackbar-actions';
24 type CssRules = 'card' | 'iconHeader' | 'tag' | 'copyIcon' | 'label' | 'value';
26 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
28 marginBottom: theme.spacing.unit * 2
32 color: theme.customs.colors.yellow700
35 marginRight: theme.spacing.unit,
36 marginBottom: theme.spacing.unit
39 marginLeft: theme.spacing.unit,
41 color: theme.palette.grey["500"],
48 textTransform: 'none',
53 interface CollectionPanelDataProps {
54 item: CollectionResource;
58 interface CollectionPanelActionProps {
59 onItemRouteChange: (collectionId: string) => void;
60 onContextMenu: (event: React.MouseEvent<HTMLElement>, item: CollectionResource) => void;
63 type CollectionPanelProps = CollectionPanelDataProps & CollectionPanelActionProps & DispatchProp
64 & WithStyles<CssRules> & RouteComponentProps<{ id: string }>;
67 export const CollectionPanel = withStyles(styles)(
68 connect((state: RootState) => ({
69 item: state.collectionPanel.item,
70 tags: state.collectionPanel.tags
72 class extends React.Component<CollectionPanelProps> {
75 const { classes, item, tags, onContextMenu } = this.props;
77 <Card className={classes.card}>
79 avatar={ <CollectionIcon className={classes.iconHeader} /> }
82 aria-label="More options"
83 onClick={event => onContextMenu(event, item)}>
87 title={item && item.name }
88 subheader={item && item.description} />
90 <Grid container direction="column">
92 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
93 label='Collection UUID'
94 value={item && item.uuid}>
95 <Tooltip title="Copy uuid">
96 <CopyToClipboard text={item && item.uuid} onCopy={() => this.onCopy() }>
97 <CopyIcon className={classes.copyIcon} />
101 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
102 label='Number of files' value='14' />
103 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
104 label='Content size' value='54 MB' />
105 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
106 label='Owner' value={item && item.ownerUuid} />
112 <Card className={classes.card}>
113 <CardHeader title="Properties" />
115 <Grid container direction="column">
116 <Grid item xs={12}><CollectionTagForm /></Grid>
120 return <Chip key={tag.etag} className={classes.tag}
121 onDelete={this.handleDelete(tag.uuid)}
122 label={renderTagLabel(tag)} />;
129 <div className={classes.card}>
130 <CollectionPanelFiles/>
135 handleDelete = (uuid: string) => () => {
136 this.props.dispatch<any>(deleteCollectionTag(uuid));
140 this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
141 message: "Uuid has been copied",
146 componentWillReceiveProps({ match, item, onItemRouteChange }: CollectionPanelProps) {
147 if (!item || match.params.id !== item.uuid) {
148 onItemRouteChange(match.params.id);
156 const renderTagLabel = (tag: TagResource) => {
157 const { properties } = tag;
158 return `${properties.key}: ${properties.value}`;