refs #master Merge branch 'origin/master' into 13828-trash-view
[arvados-workbench2.git] / src / views / collection-panel / collection-panel.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import {
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';
23 import { getResource } from '~/store/resources/resources';
24 import { contextMenuActions, openContextMenu } from '~/store/context-menu/context-menu-actions';
25 import { ContextMenuKind } from '~/views-components/context-menu/context-menu';
26
27 type CssRules = 'card' | 'iconHeader' | 'tag' | 'copyIcon' | 'label' | 'value';
28
29 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
30     card: {
31         marginBottom: theme.spacing.unit * 2
32     },
33     iconHeader: {
34         fontSize: '1.875rem',
35         color: theme.customs.colors.yellow700
36     },
37     tag: {
38         marginRight: theme.spacing.unit,
39         marginBottom: theme.spacing.unit
40     },
41     copyIcon: {
42         marginLeft: theme.spacing.unit,
43         fontSize: '1.125rem',
44         color: theme.palette.grey["500"],
45         cursor: 'pointer'
46     },
47     label: {
48         fontSize: '0.875rem'
49     },
50     value: {
51         textTransform: 'none',
52         fontSize: '0.875rem'
53     }
54 });
55
56 interface CollectionPanelDataProps {
57     item: CollectionResource;
58     tags: TagResource[];
59 }
60
61 type CollectionPanelProps = CollectionPanelDataProps & DispatchProp
62     & WithStyles<CssRules> & RouteComponentProps<{ id: string }>;
63
64
65 export const CollectionPanel = withStyles(styles)(
66     connect((state: RootState, props: RouteComponentProps<{ id: string }>) => {
67         const collection = getResource(props.match.params.id)(state.resources);
68         return {
69             item: collection,
70             tags: state.collectionPanel.tags
71         };
72     })(
73         class extends React.Component<CollectionPanelProps> {
74             render() {
75                 const { classes, item, tags } = this.props;
76                 return <div>
77                     <Card className={classes.card}>
78                         <CardHeader
79                             avatar={<CollectionIcon className={classes.iconHeader} />}
80                             action={
81                                 <IconButton
82                                     aria-label="More options"
83                                     onClick={this.handleContextMenu}>
84                                     <MoreOptionsIcon />
85                                 </IconButton>
86                             }
87                             title={item && item.name}
88                             subheader={item && item.description} />
89                         <CardContent>
90                             <Grid container direction="column">
91                                 <Grid item xs={6}>
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} />
98                                             </CopyToClipboard>
99                                         </Tooltip>
100                                     </DetailsAttribute>
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} />
107                                 </Grid>
108                             </Grid>
109                         </CardContent>
110                     </Card>
111
112                     <Card className={classes.card}>
113                         <CardHeader title="Properties" />
114                         <CardContent>
115                             <Grid container direction="column">
116                                 <Grid item xs={12}><CollectionTagForm /></Grid>
117                                 <Grid item xs={12}>
118                                     {
119                                         tags.map(tag => {
120                                             return <Chip key={tag.etag} className={classes.tag}
121                                                 onDelete={this.handleDelete(tag.uuid)}
122                                                 label={renderTagLabel(tag)} />;
123                                         })
124                                     }
125                                 </Grid>
126                             </Grid>
127                         </CardContent>
128                     </Card>
129                     <div className={classes.card}>
130                         <CollectionPanelFiles />
131                     </div>
132                 </div>;
133             }
134
135             handleContextMenu = (event: React.MouseEvent<any>) => {
136                 const { uuid, name, description } = this.props.item;
137                 const resource = {
138                     uuid,
139                     name,
140                     description,
141                     kind: ContextMenuKind.COLLECTION
142                 };
143                 this.props.dispatch<any>(openContextMenu(event, resource));
144             }
145
146             handleDelete = (uuid: string) => () => {
147                 this.props.dispatch<any>(deleteCollectionTag(uuid));
148             }
149
150             onCopy = () => {
151                 this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
152                     message: "Uuid has been copied",
153                     hideDuration: 2000
154                 }));
155             }
156         }
157     )
158 );
159
160 const renderTagLabel = (tag: TagResource) => {
161     const { properties } = tag;
162     return `${properties.key}: ${properties.value}`;
163 };