/* * SonarQube * Copyright (C) 2009-2017 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. */ // @flow import React from 'react'; import { createProject, deleteProject } from '../../../api/components'; import { translate } from '../../../helpers/l10n'; /*:: type Props = { onDelete: () => void, onDone: (projectKey: string) => void, organization?: string, projectKey?: string }; */ /*:: type State = { done: boolean, loading: boolean, projectKey: string }; */ export default class ProjectKeyStep extends React.PureComponent { /*:: mounted: boolean; */ /*:: props: Props; */ /*:: state: State; */ constructor(props /*: Props */) { super(props); this.state = { done: props.projectKey != null, loading: false, projectKey: props.projectKey || '' }; } componentDidMount() { this.mounted = true; } componentWillUnmount() { this.mounted = false; } stopLoading = () => { if (this.mounted) { this.setState({ loading: false }); } }; sanitizeProjectKey = (projectKey /*: string */) => projectKey.replace(/[^a-zA-Z0-9-_\.:]/, ''); handleProjectKeyChange = (event /*: { target: HTMLInputElement } */) => { this.setState({ projectKey: this.sanitizeProjectKey(event.target.value) }); }; handleProjectCreate = (event /*: Event */) => { event.preventDefault(); const { projectKey } = this.state; const data /*: { [string]: string } */ = { name: projectKey, project: projectKey }; if (this.props.organization) { data.organization = this.props.organization; } this.setState({ loading: true }); createProject(data).then(() => { if (this.mounted) { this.setState({ done: true, loading: false }); this.props.onDone(projectKey); } }, this.stopLoading); }; handleProjectDelete = (event /*: Event */) => { event.preventDefault(); const { projectKey } = this.state; this.setState({ loading: true }); deleteProject(projectKey).then(() => { if (this.mounted) { this.setState({ done: false, loading: false, projectKey: '' }); this.props.onDelete(); } }, this.stopLoading); }; render() { const { done, loading, projectKey } = this.state; const valid = projectKey.length > 0; const form = done ? (
) : ( ); return (