/* * SonarQube * Copyright (C) 2009-2018 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 RestoreAccessModal from './RestoreAccessModal'; import { Project } from './utils'; import { getComponentShow } from '../../api/components'; import { getComponentNavigation } from '../../api/nav'; import ActionsDropdown, { ActionsDropdownItem } from '../../components/controls/ActionsDropdown'; import { translate } from '../../helpers/l10n'; import { getComponentPermissionsUrl } from '../../helpers/urls'; export interface Props { currentUser: { login: string }; onApplyTemplate: (project: Project) => void; project: Project; } interface State { hasAccess?: boolean; loading: boolean; restoreAccessModal: boolean; } export default class ProjectRowActions extends React.PureComponent { mounted = false; state: State = { loading: false, restoreAccessModal: false }; componentDidMount() { this.mounted = true; } componentWillUnmount() { this.mounted = false; } fetchPermissions = () => { this.setState({ loading: false }); // call `getComponentNavigation` to check if user has the "Administer" permission // call `getComponentShow` to check if user has the "Browse" permission Promise.all([ getComponentNavigation(this.props.project.key), getComponentShow(this.props.project.key) ]).then( ([navResponse]) => { if (this.mounted) { const hasAccess = Boolean( navResponse.configuration && navResponse.configuration.showPermissions ); this.setState({ hasAccess, loading: false }); } }, () => { if (this.mounted) { this.setState({ hasAccess: false, loading: false }); } } ); }; handleDropdownClick = () => { if (this.state.hasAccess === undefined && !this.state.loading) { this.fetchPermissions(); } }; handleApplyTemplateClick = () => { this.props.onApplyTemplate(this.props.project); }; handleRestoreAccessClick = () => { this.setState({ restoreAccessModal: true }); }; handleRestoreAccessClose = () => this.setState({ restoreAccessModal: false }); handleRestoreAccessDone = () => { this.setState({ hasAccess: true, restoreAccessModal: false }); }; render() { const { hasAccess } = this.state; return ( {hasAccess === true && ( {translate('edit_permissions')} )} {hasAccess === false && ( {translate('global_permissions.restore_access')} )} {translate('projects_role.apply_template')} {this.state.restoreAccessModal && ( )} ); } }