/* * SonarQube * Copyright (C) 2009-2024 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 { Badge, FlagMessage, MultiSelectMenu } from 'design-system'; import * as React from 'react'; import { FormattedMessage, useIntl } from 'react-intl'; import { DEPRECATED_ACTIVITY_METRICS } from '../../helpers/constants'; import { getLocalizedMetricName, translate, translateWithParameters } from '../../helpers/l10n'; import { MetricKey } from '../../types/metrics'; import DocumentationLink from '../common/DocumentationLink'; export interface AddGraphMetricPopupProps { elements: string[]; filterSelected: (query: string, selectedElements: string[]) => string[]; metricsTypeFilter?: string[]; onSearch: (query: string) => Promise; onSelect: (item: string) => void; onUnselect: (item: string) => void; popupPosition?: any; selectedElements: string[]; } export default function AddGraphMetricPopup({ elements, metricsTypeFilter, ...props }: AddGraphMetricPopupProps) { const intl = useIntl(); let footerNode: React.ReactNode = ''; if (props.selectedElements.length >= 6) { footerNode = ( {translate('project_activity.graphs.custom.add_metric_info')} ); } else if (metricsTypeFilter && metricsTypeFilter.length > 0) { footerNode = ( {translateWithParameters( 'project_activity.graphs.custom.type_x_message', metricsTypeFilter .map((type: string) => translate('metric.type', type)) .sort((a, b) => a.localeCompare(b)) .join(', '), )} ); } const renderLabel = (key: string) => { const metricName = getLocalizedMetricName({ key }); const isDeprecated = DEPRECATED_ACTIVITY_METRICS.includes(key as MetricKey); return ( <> {metricName} {isDeprecated && ( {intl.formatMessage({ id: 'deprecated' })} )} ); }; const renderTooltip = (key: string) => { const isDeprecated = DEPRECATED_ACTIVITY_METRICS.includes(key as MetricKey); if (isDeprecated) { return ( {intl.formatMessage({ id: 'learn_more' })} ), }} /> ); } return null; }; return ( elements.includes(item) && props.onSelect(item)} onUnselect={props.onUnselect} placeholder={translate('search.search_for_metrics')} renderLabel={renderLabel} renderTooltip={renderTooltip} selectedElements={props.selectedElements} listSize={0} /> ); }