/* * 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 { changeKey } from '../../api/components'; import withComponentContext from '../../app/components/componentContext/withComponentContext'; import RecentHistory from '../../app/components/RecentHistory'; import { Router, withRouter } from '../../components/hoc/withRouter'; import { translate } from '../../helpers/l10n'; import { Component } from '../../types/types'; import UpdateForm from './UpdateForm'; interface Props { component: Component; router: Router; } export class Key extends React.PureComponent { handleChangeKey = (newKey: string) => { return changeKey({ from: this.props.component.key, to: newKey }).then(() => { RecentHistory.remove(this.props.component.key); this.props.router.replace({ pathname: '/project/key', query: { id: newKey } }); }); }; render() { const { component } = this.props; return (

{translate('update_key.page')}

{translate('update_key.page.description')}
); } } export default withComponentContext(withRouter(Key));