X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fe5d65e4e704358fab18d91dae5a97ff7659f5df..a9f2ce9838cf6a215cbc108073d033bc3811bdf5:/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 d255d14b..18d0d8b7 100644 --- a/src/components/details-attribute/details-attribute.tsx +++ b/src/components/details-attribute/details-attribute.tsx @@ -3,18 +3,25 @@ // 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' | 'lowercaseValue' | 'link'; +type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link' | 'copyIcon'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ attribute: { display: 'flex', - alignItems: 'flex-start', - marginBottom: theme.spacing.unit + alignItems: 'flex-start' }, label: { boxSizing: 'border-box', @@ -24,9 +31,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ value: { boxSizing: 'border-box', width: '60%', - display: 'flex', - alignItems: 'flex-start', - textTransform: 'capitalize' + alignItems: 'flex-start' }, lowercaseValue: { textTransform: 'lowercase' @@ -37,6 +42,12 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ textDecoration: 'none', overflowWrap: 'break-word', cursor: 'pointer' + }, + copyIcon: { + marginLeft: theme.spacing.unit, + fontSize: '1.125rem', + color: theme.palette.grey["500"], + cursor: 'pointer' } }); @@ -49,23 +60,61 @@ interface DetailsAttributeDataProps { 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 = connect(mapStateToProps)(withStyles(styles)( + class extends React.Component { + + onCopy = (message: string) => { + this.props.dispatch(snackbarActions.OPEN_SNACKBAR({ + message, + hideDuration: 2000, + kind: SnackbarKind.SUCCESS + })); + } -export const DetailsAttribute = withStyles(styles)( - ({ label, link, value, children, classes, classLabel, classValue, lowercaseValue, onValueClick }: DetailsAttributeProps) => - - {label} - { link - ? {value} - : {linkToUuid}; + } else { + valueNode = {linkToUuid}; + } + } else if (link) { + valueNode = {value}; + } else { + valueNode = value; + } + return + {label} + - {value} + className={classnames([classes.value, classValue, { [classes.lowercaseValue]: lowercaseValue }])}> + {valueNode} {children} - } - -); + {linkToUuid && + this.onCopy("Copied")}> + + + } + + ; + } + } +));