15230: Refactor copy to clipboard, applies to all DetailsAttribute
[arvados-workbench2.git] / src / components / details-attribute / details-attribute.tsx
index aa1778827fbf2240d86890eeb9d8d480bf75f8ca..8f4708588d786d1d268c0aa70fcd013571732d00 100644 (file)
@@ -3,16 +3,20 @@
 // 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: {
@@ -28,7 +32,6 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     value: {
         boxSizing: 'border-box',
         width: '60%',
-        display: 'flex',
         alignItems: 'flex-start'
     },
     lowercaseValue: {
@@ -40,6 +43,12 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
         textDecoration: 'none',
         overflowWrap: 'break-word',
         cursor: 'pointer'
+    },
+    copyIcon: {
+        marginLeft: theme.spacing.unit,
+        fontSize: '1.125rem',
+        color: theme.palette.grey["500"],
+        cursor: 'pointer'
     }
 });
 
@@ -55,7 +64,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 +73,49 @@ 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="span" className={classnames([classes.label, classLabel])}>{label}</Typography>
+                <Typography
+                    onClick={onValueClick}
+                    component="span"
+                    className={classnames([classes.value, classValue, { [classes.lowercaseValue]: lowercaseValue }])}>
+                    {valueNode}
+                    {children}
+                    {linkToUuid && <Tooltip title="Copy">
+                        <CopyToClipboard text={linkToUuid || ""} onCopy={() => this.onCopy("Copied")}>
+                            <CopyIcon className={classes.copyIcon} />
+                        </CopyToClipboard>
+                    </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>;
     }
 ));