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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* SonarQube
* Copyright (C) 2009-2019 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 { connect } from 'react-redux';
import { FormattedMessage } from 'react-intl';
import AnalyzeTutorial from '../../tutorials/analyzeProject/AnalyzeTutorial';
import MetaContainer from '../meta/MetaContainer';
import { isLongLivingBranch, isBranch, isMainBranch } from '../../../helpers/branches';
import { translate } from '../../../helpers/l10n';
import { isLoggedIn } from '../../../helpers/users';
import { getCurrentUser, Store } from '../../../store/rootReducer';
import { Alert } from '../../../components/ui/Alert';
interface OwnProps {
branchLike?: T.BranchLike;
branchLikes: T.BranchLike[];
component: T.Component;
hasAnalyses?: boolean;
onComponentChange: (changes: {}) => void;
}
interface StateProps {
currentUser: T.CurrentUser;
}
type Props = OwnProps & StateProps;
export function EmptyOverview({
branchLike,
branchLikes,
component,
currentUser,
hasAnalyses,
onComponentChange
}: Props) {
const hasBranches = branchLikes.length > 1;
const hasBadBranchConfig =
branchLikes.length > 2 ||
(branchLikes.length === 2 && branchLikes.some(branch => isLongLivingBranch(branch)));
return (
<div className="page page-limited">
<div className="overview page-with-sidebar">
<div className="overview-main page-main">
{isLoggedIn(currentUser) && isMainBranch(branchLike) ? (
<>
{hasBranches && (
<WarningMessage
branchLike={branchLike}
message={
hasBadBranchConfig
? translate('provisioning.no_analysis_on_main_branch.bad_configuration')
: translate('provisioning.no_analysis_on_main_branch')
}
/>
)}
{!hasBranches && !hasAnalyses && (
<AnalyzeTutorial component={component} currentUser={currentUser} />
)}
</>
) : (
<WarningMessage
branchLike={branchLike}
message={translate('provisioning.no_analysis_on_main_branch')}
/>
)}
</div>
<div className="overview-sidebar page-sidebar-fixed">
<MetaContainer
branchLike={branchLike}
component={component}
onComponentChange={onComponentChange}
/>
</div>
</div>
</div>
);
}
export function WarningMessage({
branchLike,
message
}: {
branchLike?: T.BranchLike;
message: string;
}) {
if (!isBranch(branchLike)) {
return null;
}
return (
<Alert variant="warning">
<FormattedMessage
defaultMessage={message}
id={message}
values={{
branchName: branchLike.name,
branchType: (
<div className="outline-badge text-baseline">{translate('branches.main_branch')}</div>
)
}}
/>
</Alert>
);
}
const mapStateToProps = (state: Store) => ({
currentUser: getCurrentUser(state)
});
export default connect(mapStateToProps)(EmptyOverview);
|