1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/*
* SonarQube
* Copyright (C) 2009-2018 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import * as React from 'react';
import { Link } from 'react-router';
import DateTimeFormatter from '../../../components/intl/DateTimeFormatter';
import ProjectCardQualityGate from './ProjectCardQualityGate';
import ProjectCardOverallMeasures from './ProjectCardOverallMeasures';
import ProjectCardOrganizationContainer from './ProjectCardOrganizationContainer';
import Favorite from '../../../components/controls/Favorite';
import TagsList from '../../../components/tags/TagsList';
import PrivateBadge from '../../../components/common/PrivateBadge';
import { translate, translateWithParameters } from '../../../helpers/l10n';
import { Project } from '../types';
interface Props {
organization?: { key: string };
project: Project;
}
export default function ProjectCardOverall({ organization, project }: Props) {
const { measures } = project;
const isPrivate = project.visibility === 'private';
const hasTags = project.tags.length > 0;
return (
<div data-key={project.key} className="boxed-group project-card">
<div className="boxed-group-header clearfix">
{project.isFavorite !== undefined && (
<Favorite
className="spacer-right"
component={project.key}
favorite={project.isFavorite}
qualifier="TRK"
/>
)}
<h2 className="project-card-name">
{!organization && (
<ProjectCardOrganizationContainer organization={project.organization} />
)}
<Link to={{ pathname: '/dashboard', query: { id: project.key } }}>{project.name}</Link>
</h2>
{project.analysisDate && <ProjectCardQualityGate status={measures['alert_status']} />}
<div className="pull-right text-right">
{isPrivate && (
<PrivateBadge className="spacer-left" qualifier="TRK" tooltipPlacement="left" />
)}
{hasTags && <TagsList tags={project.tags} customClass="spacer-left" />}
</div>
{project.analysisDate && (
<div className="project-card-dates note text-right">
<DateTimeFormatter date={project.analysisDate}>
{formattedDate => (
<span className="big-spacer-left">
{translateWithParameters('projects.last_analysis_on_x', formattedDate)}
</span>
)}
</DateTimeFormatter>
</div>
)}
</div>
{project.analysisDate ? (
<div className="boxed-group-inner">
{<ProjectCardOverallMeasures measures={measures} />}
</div>
) : (
<div className="boxed-group-inner">
<div className="note project-card-not-analyzed">{translate('projects.not_analyzed')}</div>
</div>
)}
</div>
);
}
|