/* * SonarQube * Copyright (C) 2009-2020 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 { without } from 'lodash'; import * as React from 'react'; import ActionsDropdown, { ActionsDropdownItem } from 'sonar-ui-common/components/controls/ActionsDropdown'; import ConfirmButton from 'sonar-ui-common/components/controls/ConfirmButton'; import { translate, translateWithParameters } from 'sonar-ui-common/helpers/l10n'; import { deleteApplicationBranch } from '../../api/application'; import { Application } from '../../types/application'; import CreateBranchForm from './CreateBranchForm'; import { ApplicationBranch } from './utils'; interface Props { application: Application; branch: ApplicationBranch; onUpdateBranches: (branches: Array) => void; } interface State { isUpdating: boolean; } export default class BranchRowActions extends React.PureComponent { state: State = { isUpdating: false }; handleDelete = () => { const { application, branch } = this.props; return deleteApplicationBranch(application.key, branch.name).then(() => { this.props.onUpdateBranches(without(application.branches, branch)); }); }; handleUpdate = (newBranchName: string) => { this.props.onUpdateBranches( this.props.application.branches.map(branch => { if (branch.name === this.props.branch.name) { branch.name = newBranchName; } return branch; }) ); }; handleCloseForm = () => { this.setState({ isUpdating: false }); }; handleUpdateClick = () => { this.setState({ isUpdating: true }); }; render() { return ( <> {({ onClick }) => ( {translate('edit')} {translate('delete')} )} {this.state.isUpdating && ( p.enabled) .map(p => p.key)} onClose={this.handleCloseForm} onCreate={() => {}} onUpdate={this.handleUpdate} /> )} ); } }