/* * 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 { FormattedMessage } from 'react-intl'; import { translate, translateWithParameters } from '../../helpers/l10n'; import { getProjectUrl } from '../../helpers/urls'; import { AnalysisEvent } from '../../types/project-activity'; import Link from '../common/Link'; import { ResetButtonLink } from '../controls/buttons'; import ClickEventBoundary from '../controls/ClickEventBoundary'; import DropdownIcon from '../icons/DropdownIcon'; import Level from '../ui/Level'; export type RichQualityGateEvent = AnalysisEvent & Required>; export function isRichQualityGateEvent(event: AnalysisEvent): event is RichQualityGateEvent { return event.category === 'QUALITY_GATE' && event.qualityGate !== undefined; } interface Props { event: RichQualityGateEvent; readonly?: boolean; } interface State { expanded: boolean; } export class RichQualityGateEventInner extends React.PureComponent { state: State = { expanded: false }; toggleProjectsList = () => { this.setState((state) => ({ expanded: !state.expanded })); }; render() { const { event, readonly } = this.props; const { expanded } = this.state; return ( <> {translate('event.category', event.category)}: {event.qualityGate.stillFailing ? ( }} /> ) : ( )}
{!readonly && event.qualityGate.failing.length > 0 && ( {expanded ? translate('hide') : translate('more')} )}
{expanded && (
    {event.qualityGate.failing.map((project) => (
  • {project.name}
  • ))}
)} ); } }