// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { connect } from 'react-redux'; import Typography from '@material-ui/core/Typography'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; 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"; type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ attribute: { display: 'flex', alignItems: 'flex-start', marginBottom: theme.spacing.unit }, label: { boxSizing: 'border-box', color: theme.palette.grey["500"], width: '40%' }, value: { boxSizing: 'border-box', width: '60%', display: 'flex', alignItems: 'flex-start' }, lowercaseValue: { textTransform: 'lowercase' }, link: { width: '60%', color: theme.palette.primary.main, textDecoration: 'none', overflowWrap: 'break-word', cursor: 'pointer' } }); interface DetailsAttributeDataProps { label: string; classLabel?: string; value?: React.ReactNode; classValue?: string; lowercaseValue?: boolean; link?: string; children?: React.ReactNode; onValueClick?: () => void; linkToUuid?: string; } type DetailsAttributeProps = DetailsAttributeDataProps & WithStyles & FederationConfig; const mapStateToProps = ({ auth }: RootState): FederationConfig => ({ localCluster: auth.localCluster, remoteHostsConfig: auth.remoteHostsConfig, sessions: auth.sessions }); 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 = {value}; } else { insertLink = {value}; } } else if (link) { insertLink = {value}; } return {label} {insertLink} {!insertLink && {value} {children} } ; } ));