// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import React from 'react'; import { connect } from 'react-redux'; import { openProjectPropertiesDialog } from 'store/details-panel/details-panel-action'; import { ProjectIcon, RenameIcon, FilterGroupIcon } from 'components/icon/icon'; import { ProjectResource } from 'models/project'; import { formatDate } from 'common/formatters'; import { ResourceKind } from 'models/resource'; import { resourceLabel } from 'common/labels'; import { DetailsData } from "./details-data"; import { DetailsAttribute } from "components/details-attribute/details-attribute"; import { RichTextEditorLink } from 'components/rich-text-editor-link/rich-text-editor-link'; import { withStyles, StyleRulesCallback, WithStyles } from '@material-ui/core'; import { ArvadosTheme } from 'common/custom-theme'; import { Dispatch } from 'redux'; import { getPropertyChip } from '../resource-properties-form/property-chip'; import { ResourceOwnerWithName } from '../data-explorer/renderers'; import { GroupClass } from "models/group"; export class ProjectDetails extends DetailsData { getIcon(className?: string) { if (this.item.groupClass === GroupClass.FILTER) { return ; } return ; } getDetails() { return ; } } type CssRules = 'tag' | 'editIcon'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ tag: { marginRight: theme.spacing.unit, marginBottom: theme.spacing.unit }, editIcon: { fontSize: '1.125rem', cursor: 'pointer' } }); interface ProjectDetailsComponentDataProps { project: ProjectResource; } interface ProjectDetailsComponentActionProps { onClick: () => void; } const mapDispatchToProps = (dispatch: Dispatch) => ({ onClick: () => dispatch(openProjectPropertiesDialog()), }); type ProjectDetailsComponentProps = ProjectDetailsComponentDataProps & ProjectDetailsComponentActionProps & WithStyles; const ProjectDetailsComponent = connect(null, mapDispatchToProps)( withStyles(styles)( ({ classes, project, onClick }: ProjectDetailsComponentProps) =>
} /> {project.description ? : '---' } {project.groupClass !== GroupClass.FILTER ?
: '' }
{ Object.keys(project.properties).map(k => Array.isArray(project.properties[k]) ? project.properties[k].map((v: string) => getPropertyChip(k, v, undefined, classes.tag)) : getPropertyChip(k, project.properties[k], undefined, classes.tag) ) }
));