1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import 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 CopyToClipboard from 'react-copy-to-clipboard';
12 import { ArvadosTheme } from 'common/custom-theme';
13 import 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';
19 type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link' | 'copyIcon';
21 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
23 marginBottom: ".6 rem"
26 boxSizing: 'border-box',
27 color: theme.palette.grey["600"],
31 boxSizing: 'border-box',
32 alignItems: 'flex-start'
35 textTransform: 'lowercase'
38 color: theme.palette.primary.main,
39 textDecoration: 'none',
40 overflowWrap: 'break-word',
44 marginLeft: theme.spacing.unit,
45 color: theme.palette.grey["600"],
54 interface DetailsAttributeDataProps {
57 value?: React.ReactNode;
59 lowercaseValue?: boolean;
61 children?: React.ReactNode;
62 onValueClick?: () => void;
65 uuidEnhancer?: Function;
68 type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles<CssRules> & FederationConfig & DispatchProp;
70 const mapStateToProps = ({ auth }: RootState): FederationConfig => ({
71 localCluster: auth.localCluster,
72 remoteHostsConfig: auth.remoteHostsConfig,
73 sessions: auth.sessions
76 export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)(
77 class extends React.Component<DetailsAttributeProps> {
79 onCopy = (message: string) => {
80 this.props.dispatch(snackbarActions.OPEN_SNACKBAR({
83 kind: SnackbarKind.SUCCESS
88 const { uuidEnhancer, link, value, classes, linkToUuid,
89 localCluster, remoteHostsConfig, sessions } = this.props;
90 let valueNode: React.ReactNode;
93 const uuid = uuidEnhancer ? uuidEnhancer(linkToUuid) : linkToUuid;
94 const linkUrl = getNavUrl(linkToUuid || "", { localCluster, remoteHostsConfig, sessions });
95 if (linkUrl[0] === '/') {
96 valueNode = <Link to={linkUrl} className={classes.link}>{uuid}</Link>;
98 valueNode = <a href={linkUrl} className={classes.link} target='_blank' rel="noopener noreferrer">{uuid}</a>;
101 valueNode = <a href={link} className={classes.link} target='_blank' rel="noopener noreferrer">{value}</a>;
106 return <DetailsAttributeComponent {...this.props} value={valueNode} onCopy={this.onCopy} />;
111 interface DetailsAttributeComponentProps {
112 value: React.ReactNode;
113 onCopy?: (msg: string) => void;
116 export const DetailsAttributeComponent = withStyles(styles)(
117 (props: DetailsAttributeDataProps & WithStyles<CssRules> & DetailsAttributeComponentProps) =>
118 <Typography component="div" className={props.classes.attribute}>
119 <Typography component="div" className={classnames([props.classes.label, props.classLabel])}>{props.label}</Typography>
121 onClick={props.onValueClick}
123 className={classnames([props.classes.value, props.classValue, { [props.classes.lowercaseValue]: props.lowercaseValue }])}>
126 {(props.linkToUuid || props.copyValue) && props.onCopy && <Tooltip title="Copy to clipboard">
127 <span className={props.classes.copyIcon}>
128 <CopyToClipboard text={props.linkToUuid || props.copyValue || ""} onCopy={() => props.onCopy!("Copied")}>