/* * SonarQube * Copyright (C) 2009-2023 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 { Project } from '../../api/components'; import { getComponentNavigation } from '../../api/navigation'; import ActionsDropdown, { ActionsDropdownItem } from '../../components/controls/ActionsDropdown'; import DeferredSpinner from '../../components/ui/DeferredSpinner'; import { translate, translateWithParameters } from '../../helpers/l10n'; import { getComponentPermissionsUrl } from '../../helpers/urls'; import { LoggedInUser } from '../../types/users'; import ApplyTemplate from '../permissions/project/components/ApplyTemplate'; import RestoreAccessModal from './RestoreAccessModal'; export interface Props { currentUser: Pick; project: Project; } interface State { applyTemplateModal: boolean; hasAccess?: boolean; loading: boolean; restoreAccessModal: boolean; } export default class ProjectRowActions extends React.PureComponent { mounted = false; state: State = { applyTemplateModal: false, loading: false, restoreAccessModal: false }; componentDidMount() { this.mounted = true; } componentWillUnmount() { this.mounted = false; } fetchPermissions = () => { this.setState({ loading: true }); getComponentNavigation({ component: this.props.project.key }).then( ({ configuration }) => { if (this.mounted) { const hasAccess = Boolean( configuration && configuration.showPermissions && configuration.canBrowseProject ); this.setState({ hasAccess, loading: false }); } }, () => { if (this.mounted) { this.setState({ loading: false }); } } ); }; handleDropdownOpen = () => { if (this.state.hasAccess === undefined && !this.state.loading) { this.fetchPermissions(); } }; handleApplyTemplateClick = () => { this.setState({ applyTemplateModal: true }); }; handleApplyTemplateClose = () => { if (this.mounted) { this.setState({ applyTemplateModal: false }); } }; handleRestoreAccessClick = () => { this.setState({ restoreAccessModal: true }); }; handleRestoreAccessClose = () => this.setState({ restoreAccessModal: false }); handleRestoreAccessDone = () => { this.setState({ hasAccess: true, restoreAccessModal: false }); }; render() { const { hasAccess, loading } = this.state; return ( <> {loading ? ( ) : ( <> {hasAccess === true && ( {translate('edit_permissions')} )} {hasAccess === false && ( {translate('global_permissions.restore_access')} )} )} {translate('projects_role.apply_template')} {this.state.restoreAccessModal && ( )} {this.state.applyTemplateModal && ( )} ); } }