2cecc8ce4bfe69cc5bb7e25a2eb39be2b5ef227e
[arvados-workbench2.git] / src / components / details-attribute / details-attribute.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 { connect, DispatchProp } from 'react-redux';
7 import Typography from '@material-ui/core/Typography';
8 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
9 import { Tooltip } from '@material-ui/core';
10 import { CopyIcon } from '~/components/icon/icon';
11 import * as CopyToClipboard from 'react-copy-to-clipboard';
12 import { ArvadosTheme } from '~/common/custom-theme';
13 import * as classnames from "classnames";
14 import { Link } from 'react-router-dom';
15 import { RootState } from "~/store/store";
16 import { FederationConfig, getNavUrl } from "~/routes/routes";
17 import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions';
18
19 type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link' | 'copyIcon';
20
21 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
22     attribute: {
23         marginBottom: ".6 rem"
24     },
25     label: {
26         boxSizing: 'border-box',
27         color: theme.palette.grey["500"],
28         width: '100%'
29     },
30     value: {
31         boxSizing: 'border-box',
32         alignItems: 'flex-start'
33     },
34     lowercaseValue: {
35         textTransform: 'lowercase'
36     },
37     link: {
38         color: theme.palette.primary.main,
39         textDecoration: 'none',
40         overflowWrap: 'break-word',
41         cursor: 'pointer'
42     },
43     copyIcon: {
44         marginLeft: theme.spacing.unit,
45         color: theme.palette.grey["500"],
46         cursor: 'pointer',
47         display: 'inline',
48         '& svg': {
49             fontSize: '1rem'
50         }
51     }
52 });
53
54 interface DetailsAttributeDataProps {
55     label: string;
56     classLabel?: string;
57     value?: React.ReactNode;
58     classValue?: string;
59     lowercaseValue?: boolean;
60     link?: string;
61     children?: React.ReactNode;
62     onValueClick?: () => void;
63     linkToUuid?: string;
64     copyValue?: string;
65     uuidEnhancer?: Function;
66 }
67
68 type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles<CssRules> & FederationConfig & DispatchProp;
69
70 const mapStateToProps = ({ auth }: RootState): FederationConfig => ({
71     localCluster: auth.localCluster,
72     remoteHostsConfig: auth.remoteHostsConfig,
73     sessions: auth.sessions
74 });
75
76 export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)(
77     class extends React.Component<DetailsAttributeProps> {
78
79         onCopy = (message: string) => {
80             this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
81                 message,
82                 hideDuration: 2000,
83                 kind: SnackbarKind.SUCCESS
84             }));
85         }
86
87         render() {
88             const { uuidEnhancer, label, link, value, children, classes, classLabel,
89                 classValue, lowercaseValue, onValueClick, linkToUuid,
90                 localCluster, remoteHostsConfig, sessions, copyValue } = this.props;
91             let valueNode: React.ReactNode;
92
93             if (linkToUuid) {
94                 const uuid = uuidEnhancer ? uuidEnhancer(linkToUuid) : linkToUuid;
95                 const linkUrl = getNavUrl(linkToUuid || "", { localCluster, remoteHostsConfig, sessions });
96                 if (linkUrl[0] === '/') {
97                     valueNode = <Link to={linkUrl} className={classes.link}>{uuid}</Link>;
98                 } else {
99                     valueNode = <a href={linkUrl} className={classes.link} target='_blank'>{uuid}</a>;
100                 }
101             } else if (link) {
102                 valueNode = <a href={link} className={classes.link} target='_blank'>{value}</a>;
103             } else {
104                 valueNode = value;
105             }
106
107             return <Typography component="div" className={classes.attribute}>
108                 <Typography component="div" className={classnames([classes.label, classLabel])}>{label}</Typography>
109                 <Typography
110                     onClick={onValueClick}
111                     component="div"
112                     className={classnames([classes.value, classValue, { [classes.lowercaseValue]: lowercaseValue }])}>
113                     {valueNode}
114                     {children}
115                     {(linkToUuid || copyValue) && <Tooltip title="Copy to clipboard">
116                         <span className={classes.copyIcon}>
117                             <CopyToClipboard text={linkToUuid || copyValue || ""} onCopy={() => this.onCopy("Copied")}>
118                                 <CopyIcon />
119                             </CopyToClipboard>
120                         </span>
121                     </Tooltip>}
122                 </Typography>
123             </Typography>;
124         }
125     }
126 ));