/* * SonarQube * Copyright (C) 2009-2020 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 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 { HotspotFilters, HotspotStatusFilter, HotspotUpdate, RawHotspot } from '../../types/security-hotspots'; import EmptyHotspotsPage from './components/EmptyHotspotsPage'; import FilterBar from './components/FilterBar'; import HotspotList from './components/HotspotList'; import HotspotViewer from './components/HotspotViewer'; import './styles.css'; export interface SecurityHotspotsAppRendererProps { branchLike?: BranchLike; filters: HotspotFilters; hotspots: RawHotspot[]; hotspotsReviewedMeasure?: string; hotspotsTotal?: number; isProject: boolean; isStaticListOfHotspots: boolean; loading: boolean; loadingMeasure: boolean; loadingMore: boolean; onChangeFilters: (filters: Partial) => void; onHotspotClick: (key: string) => void; onLoadMore: () => void; onShowAllHotspots: () => void; onUpdateHotspot: (hotspot: HotspotUpdate) => void; selectedHotspotKey?: string; securityCategories: T.StandardSecurityCategories; } export default function SecurityHotspotsAppRenderer(props: SecurityHotspotsAppRendererProps) { const { branchLike, hotspots, hotspotsReviewedMeasure, hotspotsTotal, isProject, isStaticListOfHotspots, loading, loadingMeasure, loadingMore, securityCategories, selectedHotspotKey, filters } = props; return (
{({ top }) => (
{loading ? ( ) : ( <> {hotspots.length === 0 ? ( ) : (
{selectedHotspotKey && ( )}
)} )}
)}
); }