#refs tooltips
[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 { 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                                     <Tooltip title="More options">
85                                         <MoreOptionsIcon />
86                                     </Tooltip>
87                                 </IconButton>
88                             }
89                             title={item && item.name}
90                             subheader={item && item.description} />
91                         <CardContent>
92                             <Grid container direction="column">
93                                 <Grid item xs={6}>
94                                     <DetailsAttribute classLabel={classes.label} classValue={classes.value}
95                                         label='Collection UUID'
96                                         value={item && item.uuid}>
97                                         <Tooltip title="Copy uuid">
98                                             <CopyToClipboard text={item && item.uuid} onCopy={() => this.onCopy()}>
99                                                 <CopyIcon className={classes.copyIcon} />
100                                             </CopyToClipboard>
101                                         </Tooltip>
102                                     </DetailsAttribute>
103                                     <DetailsAttribute classLabel={classes.label} classValue={classes.value}
104                                         label='Number of files' value='14' />
105                                     <DetailsAttribute classLabel={classes.label} classValue={classes.value}
106                                         label='Content size' value='54 MB' />
107                                     <DetailsAttribute classLabel={classes.label} classValue={classes.value}
108                                         label='Owner' value={item && item.ownerUuid} />
109                                 </Grid>
110                             </Grid>
111                         </CardContent>
112                     </Card>
113
114                     <Card className={classes.card}>
115                         <CardHeader title="Properties" />
116                         <CardContent>
117                             <Grid container direction="column">
118                                 <Grid item xs={12}><CollectionTagForm /></Grid>
119                                 <Grid item xs={12}>
120                                     {
121                                         tags.map(tag => {
122                                             return <Chip key={tag.etag} className={classes.tag}
123                                                 onDelete={this.handleDelete(tag.uuid)}
124                                                 label={renderTagLabel(tag)} />;
125                                         })
126                                     }
127                                 </Grid>
128                             </Grid>
129                         </CardContent>
130                     </Card>
131                     <div className={classes.card}>
132                         <CollectionPanelFiles />
133                     </div>
134                 </div>;
135             }
136
137             handleContextMenu = (event: React.MouseEvent<any>) => {
138                 const { uuid, ownerUuid, name, description, kind } = this.props.item;
139                 const resource = {
140                     uuid,
141                     ownerUuid,
142                     name,
143                     description,
144                     kind,
145                     menuKind: ContextMenuKind.COLLECTION
146                 };
147                 this.props.dispatch<any>(openContextMenu(event, resource));
148             }
149
150             handleDelete = (uuid: string) => () => {
151                 this.props.dispatch<any>(deleteCollectionTag(uuid));
152             }
153
154             onCopy = () => {
155                 this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
156                     message: "Uuid has been copied",
157                     hideDuration: 2000
158                 }));
159             }
160         }
161     )
162 );
163
164 const renderTagLabel = (tag: TagResource) => {
165     const { properties } = tag;
166     return `${properties.key}: ${properties.value}`;
167 };