X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f0d519637c997df11d5b1a1b32b3d9e4a2872325..7776b799eed223b9318443c1e319e01957a8fb45:/src/components/details-attribute/details-attribute.tsx diff --git a/src/components/details-attribute/details-attribute.tsx b/src/components/details-attribute/details-attribute.tsx index 3888b04b..4b8ee837 100644 --- a/src/components/details-attribute/details-attribute.tsx +++ b/src/components/details-attribute/details-attribute.tsx @@ -3,57 +3,120 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; +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' | 'link'; +type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link' | 'copyIcon'; const styles: StyleRulesCallback = (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: { - width: '60%', - display: 'flex', - alignItems: 'flex-start', - textTransform: 'capitalize' + boxSizing: 'border-box', + alignItems: 'flex-start' + }, + lowercaseValue: { + textTransform: 'lowercase' }, link: { - width: '60%', color: theme.palette.primary.main, textDecoration: 'none', - overflowWrap: 'break-word' + overflowWrap: 'break-word', + cursor: 'pointer' + }, + copyIcon: { + marginLeft: theme.spacing.unit, + color: theme.palette.grey["500"], + cursor: 'pointer', + display: 'inline', + '& svg': { + fontSize: '1rem' + } } }); interface DetailsAttributeDataProps { label: string; classLabel?: string; - value?: string | number; + value?: React.ReactNode; classValue?: string; + lowercaseValue?: boolean; link?: string; children?: React.ReactNode; + onValueClick?: () => void; + linkToUuid?: string; } -type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles; +type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles & FederationConfig & DispatchProp; + +const mapStateToProps = ({ auth }: RootState): FederationConfig => ({ + localCluster: auth.localCluster, + remoteHostsConfig: auth.remoteHostsConfig, + sessions: auth.sessions +}); -export const DetailsAttribute = withStyles(styles)( - ({ label, link, value, children, classes, classLabel, classValue }: DetailsAttributeProps) => - - {label} - { link - ? {value} - : - {value} +export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)( + class extends React.Component { + + 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 = {linkToUuid}; + } else { + valueNode = {linkToUuid}; + } + } else if (link) { + valueNode = {value}; + } else { + valueNode = value; + } + return + {label} + + {valueNode} {children} - } - -); + {linkToUuid && + + this.onCopy("Copied")}> + + + + } + + ; + } + } +));