/* * SonarQube * Copyright (C) 2009-2021 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 { Helmet } from 'react-helmet-async'; import DeferredSpinner from 'sonar-ui-common/components/ui/DeferredSpinner'; import { translate } from 'sonar-ui-common/helpers/l10n'; import { scrollToElement } from 'sonar-ui-common/helpers/scrolling'; import A11ySkipTarget from '../../app/components/a11y/A11ySkipTarget'; import Suggestions from '../../app/components/embed-docs-modal/Suggestions'; import ScreenPositionHelper from '../../components/common/ScreenPositionHelper'; import { isBranch } from '../../helpers/branch-like'; import { BranchLike } from '../../types/branch-like'; import { SecurityStandard, Standards } from '../../types/security'; import { HotspotFilters, HotspotStatusFilter, RawHotspot } from '../../types/security-hotspots'; import EmptyHotspotsPage from './components/EmptyHotspotsPage'; import FilterBar from './components/FilterBar'; import HotspotList from './components/HotspotList'; import HotspotSimpleList from './components/HotspotSimpleList'; import HotspotViewer from './components/HotspotViewer'; import './styles.css'; export interface SecurityHotspotsAppRendererProps { branchLike?: BranchLike; component: T.Component; filterByCategory?: { standard: SecurityStandard; category: string; }; filterByCWE?: string; filterByFile?: string; filters: HotspotFilters; hotspots: RawHotspot[]; hotspotsReviewedMeasure?: string; hotspotsTotal: number; isStaticListOfHotspots: boolean; loading: boolean; loadingMeasure: boolean; loadingMore: boolean; onChangeFilters: (filters: Partial) => void; onHotspotClick: (hotspot: RawHotspot) => void; onLoadMore: () => void; onShowAllHotspots: () => void; onUpdateHotspot: (hotspotKey: string) => Promise; selectedHotspot: RawHotspot | undefined; securityCategories: T.StandardSecurityCategories; standards: Standards; } export default function SecurityHotspotsAppRenderer(props: SecurityHotspotsAppRendererProps) { const { branchLike, component, filterByCategory, filterByCWE, filterByFile, filters, hotspots, hotspotsReviewedMeasure, hotspotsTotal, isStaticListOfHotspots, loading, loadingMeasure, loadingMore, securityCategories, selectedHotspot, standards } = props; const scrollableRef = React.useRef(null); React.useEffect(() => { const parent = scrollableRef.current; const element = selectedHotspot && document.querySelector(`[data-hotspot-key="${selectedHotspot.key}"]`); if (parent && element) { scrollToElement(element, { parent, smooth: true, topOffset: 100, bottomOffset: 100 }); } }, [selectedHotspot]); return (
{loading && (
)} {!loading && (hotspots.length === 0 || !selectedHotspot ? ( ) : (
{({ top }) => (
{filterByCategory || filterByCWE || filterByFile ? ( ) : ( )}
)}
))}
); }