/* * 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 { getReportUrl } from '../../api/component-report'; import { Button } from '../../components/controls/buttons'; import Dropdown from '../../components/controls/Dropdown'; import DropdownIcon from '../../components/icons/DropdownIcon'; import { translate, translateWithParameters } from '../../helpers/l10n'; import { Branch } from '../../types/branch-like'; import { Component } from '../../types/types'; export interface ComponentReportActionsRendererProps { component: Component; branch?: Branch; frequency: string; subscribed: boolean; canSubscribe: boolean; currentUserHasEmail: boolean; handleSubscription: () => void; handleUnsubscription: () => void; } export default function ComponentReportActionsRenderer(props: ComponentReportActionsRendererProps) { const { branch, component, frequency, subscribed, canSubscribe, currentUserHasEmail } = props; const renderDownloadButton = (simple = false) => { return ( !!s).join(' - ')} href={getReportUrl(component.key, branch?.name)} target="_blank" data-test="overview__download-pdf-report-button" rel="noopener noreferrer"> {simple ? translate('download_verb') : translateWithParameters( 'component_report.download', translate('qualifier', component.qualifier).toLowerCase() )} ); }; const renderSubscriptionButton = () => { if (!currentUserHasEmail) { return ( {translate('component_report.no_email_to_subscribe')} ); } const translationKey = subscribed ? 'component_report.unsubscribe_x' : 'component_report.subscribe_x'; const onClickHandler = subscribed ? props.handleUnsubscription : props.handleSubscription; const frequencyTranslation = translate('report.frequency', frequency).toLowerCase(); return ( {translateWithParameters(translationKey, frequencyTranslation)} ); }; return canSubscribe ? (
  • {renderDownloadButton(true)}
  • {renderSubscriptionButton()}
  • }>
    ) : ( renderDownloadButton() ); }