// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import 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 CopyToClipboard from 'react-copy-to-clipboard'; import { ArvadosTheme } from 'common/custom-theme'; import 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' | 'copyIcon'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ attribute: { marginBottom: ".6 rem" }, label: { boxSizing: 'border-box', color: theme.palette.grey["600"], width: '100%' }, value: { boxSizing: 'border-box', alignItems: 'flex-start' }, lowercaseValue: { textTransform: 'lowercase' }, link: { color: theme.palette.primary.main, textDecoration: 'none', overflowWrap: 'break-word', cursor: 'pointer' }, copyIcon: { marginLeft: theme.spacing.unit, color: theme.palette.grey["600"], cursor: 'pointer', display: 'inline', '& svg': { fontSize: '1rem' } } }); interface DetailsAttributeDataProps { label: string; classLabel?: string; value?: React.ReactNode; classValue?: string; lowercaseValue?: boolean; link?: string; children?: React.ReactNode; onValueClick?: () => void; linkToUuid?: string; copyValue?: string; uuidEnhancer?: Function; } 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 })); } render() { const { uuidEnhancer, link, value, classes, linkToUuid, localCluster, remoteHostsConfig, sessions } = this.props; let valueNode: React.ReactNode; if (linkToUuid) { const uuid = uuidEnhancer ? uuidEnhancer(linkToUuid) : linkToUuid; const linkUrl = getNavUrl(linkToUuid || "", { localCluster, remoteHostsConfig, sessions }); if (linkUrl[0] === '/') { valueNode = {uuid}; } else { valueNode = {uuid}; } } else if (link) { valueNode = {value}; } else { valueNode = value; } return ; } } )); interface DetailsAttributeComponentProps { value: React.ReactNode; onCopy?: (msg: string) => void; } export const DetailsAttributeComponent = withStyles(styles)( (props: DetailsAttributeDataProps & WithStyles & DetailsAttributeComponentProps) => {props.label} {props.value} {props.children} {(props.linkToUuid || props.copyValue) && props.onCopy && props.onCopy!("Copied")}> } );