From 46741d608660feeaf3af8aef4980e085b3e2ba5c Mon Sep 17 00:00:00 2001 From: stanislavh Date: Fri, 18 Aug 2023 14:57:33 +0200 Subject: SONAR-20197 Rules facet filters use CCT --- .../apps/coding-rules/components/SeverityFacet.tsx | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 server/sonar-web/src/main/js/apps/coding-rules/components/SeverityFacet.tsx (limited to 'server/sonar-web/src/main/js/apps/coding-rules/components/SeverityFacet.tsx') diff --git a/server/sonar-web/src/main/js/apps/coding-rules/components/SeverityFacet.tsx b/server/sonar-web/src/main/js/apps/coding-rules/components/SeverityFacet.tsx new file mode 100644 index 00000000000..cdb4f11e5b9 --- /dev/null +++ b/server/sonar-web/src/main/js/apps/coding-rules/components/SeverityFacet.tsx @@ -0,0 +1,69 @@ +/* + * 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 DocumentationTooltip from '../../../components/common/DocumentationTooltip'; +import SoftwareImpactSeverityIcon from '../../../components/icons/SoftwareImpactSeverityIcon'; +import { IMPACT_SEVERITIES } from '../../../helpers/constants'; +import { translate } from '../../../helpers/l10n'; +import Facet, { BasicProps } from './Facet'; + +export default function SeverityFacet(props: BasicProps) { + const renderName = React.useCallback( + (severity: string) => ( +
+ + {translate('severity', severity)} +
+ ), + [] + ); + + const renderTextName = React.useCallback( + (severity: string) => translate('severity', severity), + [] + ); + + return ( + + +

{translate('issues.facet.impactSeverities.help.line1')}

+

{translate('issues.facet.impactSeverities.help.line2')}

+ + } + links={[ + { + href: '/user-guide/clean-code', + label: translate('learn_more'), + }, + ]} + /> +
+ ); +} -- cgit v1.2.3