/* * 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 { getReportStatus, subscribeToEmailReport, unsubscribeFromEmailReport, } from '../../api/component-report'; import withAppStateContext from '../../app/components/app-state/withAppStateContext'; import withCurrentUserContext from '../../app/components/current-user/withCurrentUserContext'; import { addGlobalSuccessMessage } from '../../helpers/globalMessages'; import { translate, translateWithParameters } from '../../helpers/l10n'; import { AppState } from '../../types/appstate'; import { Branch } from '../../types/branch-like'; import { ComponentQualifier } from '../../types/component'; import { ComponentReportStatus } from '../../types/component-report'; import { Component } from '../../types/types'; import { CurrentUser, isLoggedIn } from '../../types/users'; import ComponentReportActionsRenderer from './ComponentReportActionsRenderer'; interface Props { appState: AppState; component: Component; branch?: Branch; currentUser: CurrentUser; } interface State { loadingStatus?: boolean; status?: ComponentReportStatus; } export class ComponentReportActions extends React.PureComponent { mounted = false; state: State = {}; componentDidMount() { this.mounted = true; const governanceEnabled = this.props.appState.qualifiers.includes(ComponentQualifier.Portfolio); if (governanceEnabled) { this.loadReportStatus(); } } componentWillUnmount() { this.mounted = false; } loadReportStatus = async () => { const { component, branch } = this.props; const status = await getReportStatus(component.key, branch?.name).catch(() => undefined); if (this.mounted) { this.setState({ status, loadingStatus: false }); } }; handleSubscription = (subscribed: boolean) => { const { component } = this.props; const { status } = this.state; const translationKey = subscribed ? 'component_report.subscribe_x_success' : 'component_report.unsubscribe_x_success'; const frequencyTranslation = translate( 'report.frequency', status?.componentFrequency || status?.globalFrequency || '' ).toLowerCase(); const qualifierTranslation = translate('qualifier', component.qualifier).toLowerCase(); addGlobalSuccessMessage( translateWithParameters(translationKey, frequencyTranslation, qualifierTranslation) ); this.loadReportStatus(); }; handleSubscribe = async () => { const { component, branch } = this.props; await subscribeToEmailReport(component.key, branch?.name); this.handleSubscription(true); }; handleUnsubscribe = async () => { const { component, branch } = this.props; await unsubscribeFromEmailReport(component.key, branch?.name); this.handleSubscription(false); }; render() { const { currentUser, component, branch } = this.props; const { status, loadingStatus } = this.state; if (loadingStatus || !status || (branch && !branch.excludedFromPurge)) { return null; } const currentUserHasEmail = isLoggedIn(currentUser) && !!currentUser.email; return ( ); } } export default withCurrentUserContext(withAppStateContext(ComponentReportActions));