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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
/*
* SonarQube
* Copyright (C) 2009-2022 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 { Helmet } from 'react-helmet-async';
import { getAlmSettings } from '../../../api/alm-settings';
import withAppStateContext from '../../../app/components/app-state/withAppStateContext';
import A11ySkipTarget from '../../../components/a11y/A11ySkipTarget';
import { Location, Router, withRouter } from '../../../components/hoc/withRouter';
import { translate } from '../../../helpers/l10n';
import { getProjectUrl } from '../../../helpers/urls';
import { AlmKeys, AlmSettingsInstance } from '../../../types/alm-settings';
import { AppState } from '../../../types/appstate';
import AlmBindingDefinitionForm from '../../settings/components/almIntegration/AlmBindingDefinitionForm';
import AzureProjectCreate from './AzureProjectCreate';
import BitbucketCloudProjectCreate from './BitbucketCloudProjectCreate';
import BitbucketProjectCreate from './BitbucketProjectCreate';
import CreateProjectModeSelection from './CreateProjectModeSelection';
import GitHubProjectCreate from './GitHubProjectCreate';
import GitlabProjectCreate from './GitlabProjectCreate';
import ManualProjectCreate from './ManualProjectCreate';
import './style.css';
import { CreateProjectModes } from './types';
interface Props {
appState: AppState;
location: Location;
router: Router;
}
interface State {
azureSettings: AlmSettingsInstance[];
bitbucketSettings: AlmSettingsInstance[];
bitbucketCloudSettings: AlmSettingsInstance[];
githubSettings: AlmSettingsInstance[];
gitlabSettings: AlmSettingsInstance[];
loading: boolean;
creatingAlmDefinition?: AlmKeys;
}
const PROJECT_MODE_FOR_ALM_KEY = {
[AlmKeys.Azure]: CreateProjectModes.AzureDevOps,
[AlmKeys.BitbucketCloud]: CreateProjectModes.BitbucketCloud,
[AlmKeys.BitbucketServer]: CreateProjectModes.BitbucketServer,
[AlmKeys.GitHub]: CreateProjectModes.GitHub,
[AlmKeys.GitLab]: CreateProjectModes.GitLab
};
export class CreateProjectPage extends React.PureComponent<Props, State> {
mounted = false;
state: State = {
azureSettings: [],
bitbucketSettings: [],
bitbucketCloudSettings: [],
githubSettings: [],
gitlabSettings: [],
loading: true
};
componentDidMount() {
this.mounted = true;
this.fetchAlmBindings();
}
componentWillUnmount() {
this.mounted = false;
}
fetchAlmBindings = () => {
this.setState({ loading: true });
return getAlmSettings()
.then(almSettings => {
if (this.mounted) {
this.setState({
azureSettings: almSettings.filter(s => s.alm === AlmKeys.Azure),
bitbucketSettings: almSettings.filter(s => s.alm === AlmKeys.BitbucketServer),
bitbucketCloudSettings: almSettings.filter(s => s.alm === AlmKeys.BitbucketCloud),
githubSettings: almSettings.filter(s => s.alm === AlmKeys.GitHub),
gitlabSettings: almSettings.filter(s => s.alm === AlmKeys.GitLab),
loading: false
});
}
})
.catch(() => {
if (this.mounted) {
this.setState({ loading: false });
}
});
};
handleModeSelect = (mode: CreateProjectModes) => {
const { router, location } = this.props;
router.push({
pathname: location.pathname,
query: { mode }
});
};
handleModeConfig = (alm: AlmKeys) => {
this.setState({ creatingAlmDefinition: alm });
};
handleProjectCreate = (projectKey: string) => {
this.props.router.push(getProjectUrl(projectKey));
};
handleOnCancelCreation = () => {
this.setState({ creatingAlmDefinition: undefined });
};
handleAfterSubmit = async () => {
let { creatingAlmDefinition: createdAlmDefinition } = this.state;
this.setState({ creatingAlmDefinition: undefined });
await this.fetchAlmBindings();
if (this.mounted && createdAlmDefinition) {
const { bitbucketCloudSettings } = this.state;
if (createdAlmDefinition === AlmKeys.BitbucketServer && bitbucketCloudSettings.length > 0) {
createdAlmDefinition = AlmKeys.BitbucketCloud;
}
this.handleModeSelect(PROJECT_MODE_FOR_ALM_KEY[createdAlmDefinition]);
}
};
renderProjectCreation(mode?: CreateProjectModes) {
const {
appState: { canAdmin, branchesEnabled },
location,
router
} = this.props;
const {
azureSettings,
bitbucketSettings,
bitbucketCloudSettings,
githubSettings,
gitlabSettings,
loading
} = this.state;
switch (mode) {
case CreateProjectModes.AzureDevOps: {
return (
<AzureProjectCreate
canAdmin={!!canAdmin}
loadingBindings={loading}
location={location}
onProjectCreate={this.handleProjectCreate}
router={router}
settings={azureSettings}
/>
);
}
case CreateProjectModes.BitbucketServer: {
return (
<BitbucketProjectCreate
canAdmin={!!canAdmin}
bitbucketSettings={bitbucketSettings}
loadingBindings={loading}
location={location}
onProjectCreate={this.handleProjectCreate}
router={router}
/>
);
}
case CreateProjectModes.BitbucketCloud: {
return (
<BitbucketCloudProjectCreate
canAdmin={!!canAdmin}
loadingBindings={loading}
location={location}
onProjectCreate={this.handleProjectCreate}
router={router}
settings={bitbucketCloudSettings}
/>
);
}
case CreateProjectModes.GitHub: {
return (
<GitHubProjectCreate
canAdmin={!!canAdmin}
loadingBindings={loading}
location={location}
onProjectCreate={this.handleProjectCreate}
router={router}
settings={githubSettings}
/>
);
}
case CreateProjectModes.GitLab: {
return (
<GitlabProjectCreate
canAdmin={!!canAdmin}
loadingBindings={loading}
location={location}
onProjectCreate={this.handleProjectCreate}
router={router}
settings={gitlabSettings}
/>
);
}
case CreateProjectModes.Manual: {
return (
<ManualProjectCreate
branchesEnabled={!!branchesEnabled}
onProjectCreate={this.handleProjectCreate}
/>
);
}
default: {
const almCounts = {
[AlmKeys.Azure]: azureSettings.length,
[AlmKeys.BitbucketServer]: bitbucketSettings.length,
[AlmKeys.BitbucketCloud]: bitbucketCloudSettings.length,
[AlmKeys.GitHub]: githubSettings.length,
[AlmKeys.GitLab]: gitlabSettings.length
};
return (
<CreateProjectModeSelection
almCounts={almCounts}
loadingBindings={loading}
onSelectMode={this.handleModeSelect}
onConfigMode={this.handleModeConfig}
/>
);
}
}
}
render() {
const { location } = this.props;
const { creatingAlmDefinition } = this.state;
const mode: CreateProjectModes | undefined = location.query?.mode;
return (
<>
<Helmet title={translate('onboarding.create_project.select_method')} titleTemplate="%s" />
<A11ySkipTarget anchor="create_project_main" />
<div className="page page-limited huge-spacer-bottom position-relative" id="create-project">
{this.renderProjectCreation(mode)}
{creatingAlmDefinition && (
<AlmBindingDefinitionForm
alm={creatingAlmDefinition}
alreadyHaveInstanceConfigured={false}
onCancel={this.handleOnCancelCreation}
afterSubmit={this.handleAfterSubmit}
enforceValidation={true}
/>
)}
</div>
</>
);
}
}
export default withRouter(withAppStateContext(CreateProjectPage));
|