Merge branch '16719-collection-version-basic-ui'
[arvados-workbench2.git] / src / components / details-attribute / details-attribute.tsx
index aa1778827fbf2240d86890eeb9d8d480bf75f8ca..4b8ee8378fa32c8fc3db839629780b2ebc133545 100644 (file)
@@ -3,43 +3,51 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import * as React from 'react';
-import { connect } from 'react-redux';
+import { connect, DispatchProp } from 'react-redux';
 import Typography from '@material-ui/core/Typography';
 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
+import { Tooltip } from '@material-ui/core';
+import { CopyIcon } from '~/components/icon/icon';
+import * as CopyToClipboard from 'react-copy-to-clipboard';
 import { ArvadosTheme } from '~/common/custom-theme';
 import * as classnames from "classnames";
 import { Link } from 'react-router-dom';
 import { RootState } from "~/store/store";
 import { FederationConfig, getNavUrl } from "~/routes/routes";
+import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions';
 
-type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link';
+type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link' | 'copyIcon';
 
 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     attribute: {
-        display: 'flex',
-        alignItems: 'flex-start',
-        marginBottom: theme.spacing.unit
+        marginBottom: ".6 rem"
     },
     label: {
         boxSizing: 'border-box',
         color: theme.palette.grey["500"],
-        width: '40%'
+        width: '100%'
     },
     value: {
         boxSizing: 'border-box',
-        width: '60%',
-        display: 'flex',
         alignItems: 'flex-start'
     },
     lowercaseValue: {
         textTransform: 'lowercase'
     },
     link: {
-        width: '60%',
         color: theme.palette.primary.main,
         textDecoration: 'none',
         overflowWrap: 'break-word',
         cursor: 'pointer'
+    },
+    copyIcon: {
+        marginLeft: theme.spacing.unit,
+        color: theme.palette.grey["500"],
+        cursor: 'pointer',
+        display: 'inline',
+        '& svg': {
+            fontSize: '1rem'
+        }
     }
 });
 
@@ -55,7 +63,7 @@ interface DetailsAttributeDataProps {
     linkToUuid?: string;
 }
 
-type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles<CssRules> & FederationConfig;
+type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles<CssRules> & FederationConfig & DispatchProp;
 
 const mapStateToProps = ({ auth }: RootState): FederationConfig => ({
     localCluster: auth.localCluster,
@@ -64,31 +72,51 @@ const mapStateToProps = ({ auth }: RootState): FederationConfig => ({
 });
 
 export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)(
-    ({ label, link, value, children, classes, classLabel,
-        classValue, lowercaseValue, onValueClick, linkToUuid,
-        localCluster, remoteHostsConfig, sessions }: DetailsAttributeProps) => {
-        let insertLink: React.ReactNode;
-        if (linkToUuid) {
-            const linkUrl = getNavUrl(linkToUuid || "", { localCluster, remoteHostsConfig, sessions });
-            if (linkUrl[0] === '/') {
-                insertLink = <Link to={linkUrl} className={classes.link}>{value}</Link>;
+    class extends React.Component<DetailsAttributeProps> {
+
+        onCopy = (message: string) => {
+            this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
+                message,
+                hideDuration: 2000,
+                kind: SnackbarKind.SUCCESS
+            }));
+        }
+
+        render() {
+            const { label, link, value, children, classes, classLabel,
+                classValue, lowercaseValue, onValueClick, linkToUuid,
+                localCluster, remoteHostsConfig, sessions } = this.props;
+            let valueNode: React.ReactNode;
+
+            if (linkToUuid) {
+                const linkUrl = getNavUrl(linkToUuid || "", { localCluster, remoteHostsConfig, sessions });
+                if (linkUrl[0] === '/') {
+                    valueNode = <Link to={linkUrl} className={classes.link}>{linkToUuid}</Link>;
+                } else {
+                    valueNode = <a href={linkUrl} className={classes.link} target='_blank'>{linkToUuid}</a>;
+                }
+            } else if (link) {
+                valueNode = <a href={link} className={classes.link} target='_blank'>{value}</a>;
             } else {
-                insertLink = <a href={linkUrl} className={classes.link} target='_blank'>{value}</a>;
+                valueNode = value;
             }
-        } else if (link) {
-            insertLink = <a href={link} className={classes.link} target='_blank'>{value}</a>;
+            return <Typography component="div" className={classes.attribute}>
+                <Typography component="div" className={classnames([classes.label, classLabel])}>{label}</Typography>
+                <Typography
+                    onClick={onValueClick}
+                    component="div"
+                    className={classnames([classes.value, classValue, { [classes.lowercaseValue]: lowercaseValue }])}>
+                    {valueNode}
+                    {children}
+                    {linkToUuid && <Tooltip title="Copy">
+                        <span className={classes.copyIcon}>
+                            <CopyToClipboard text={linkToUuid || ""} onCopy={() => this.onCopy("Copied")}>
+                                <CopyIcon />
+                            </CopyToClipboard>
+                        </span>
+                    </Tooltip>}
+                </Typography>
+            </Typography>;
         }
-        return <Typography component="div" className={classes.attribute}>
-            <Typography component="span" className={classnames([classes.label, classLabel])}>{label}</Typography>
-            {insertLink}
-            {!insertLink && <Typography
-                onClick={onValueClick}
-                component="span"
-                className={classnames([classes.value, classValue, { [classes.lowercaseValue]: lowercaseValue }])}>
-                {value}
-                {children}
-            </Typography>
-            }
-        </Typography>;
     }
 ));