/* * 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 classNames from 'classnames'; import * as React from 'react'; import HelpTooltip from '../../components/controls/HelpTooltip'; import { Button, ButtonLink } from '../../components/controls/buttons'; import OpenCloseIcon from '../../components/icons/OpenCloseIcon'; import DeferredSpinner from '../../components/ui/DeferredSpinner'; import { translate, translateWithParameters } from '../../helpers/l10n'; import Tooltip from '../controls/Tooltip'; interface Props { children?: React.ReactNode; fetching?: boolean; helper?: string; disabled?: boolean; disabledHelper?: string; name: string; id: string; onClear?: () => void; onClick?: () => void; open: boolean; values?: string[]; } export default class FacetHeader extends React.PureComponent { handleClick = (event: React.SyntheticEvent) => { event.preventDefault(); event.nativeEvent.preventDefault(); if (this.props.onClick) { this.props.onClick(); } }; renderHelper() { if (!this.props.helper) { return null; } return ; } renderValueIndicator() { const { values } = this.props; if (!values || !values.length) { return null; } const value = values.length === 1 ? values[0] : translateWithParameters('x_selected', values.length); return ( {value} ); } render() { const { disabled, values, disabledHelper, name, open, children, fetching, id } = this.props; const showClearButton = values != null && values.length > 0 && this.props.onClear != null; const header = disabled ? ( {name} ) : ( name ); return (
{this.props.onClick ? ( {this.renderHelper()} ) : ( {header} {this.renderHelper()} )} {children} {this.renderValueIndicator()} {fetching && ( )} {showClearButton && ( )}
); } }