/* * SonarQube * Copyright (C) 2009-2024 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 styled from '@emotion/styled'; import { LargeCenteredLayout, PageContentFontWrapper, themeBorder, themeColor, } from 'design-system'; import * as React from 'react'; import { Helmet } from 'react-helmet-async'; import A11ySkipTarget from '../../../components/a11y/A11ySkipTarget'; import Suggestions from '../../../components/embed-docs-modal/Suggestions'; import { translate } from '../../../helpers/l10n'; import { ComponentQualifier } from '../../../types/component'; import { MeasureHistory, ParsedAnalysis } from '../../../types/project-activity'; import { Component, Metric } from '../../../types/types'; import { Query } from '../utils'; import ProjectActivityAnalysesList from './ProjectActivityAnalysesList'; import ProjectActivityGraphs from './ProjectActivityGraphs'; import ProjectActivityPageFilters from './ProjectActivityPageFilters'; interface Props { analyses: ParsedAnalysis[]; analysesLoading: boolean; graphLoading: boolean; leakPeriodDate?: Date; initializing: boolean; project: Pick; metrics: Metric[]; measuresHistory: MeasureHistory[]; query: Query; onUpdateQuery: (changes: Partial) => void; } export default function ProjectActivityAppRenderer(props: Props) { const { analyses, measuresHistory, query, leakPeriodDate, analysesLoading, initializing, graphLoading, metrics, project, } = props; const { configuration, qualifier } = props.project; const canAdmin = (qualifier === ComponentQualifier.Project || qualifier === ComponentQualifier.Application) && configuration?.showHistory; const canDeleteAnalyses = configuration?.showHistory; return (
); } const StyledWrapper = styled.div` border: ${themeBorder('default', 'filterbarBorder')}; background-color: ${themeColor('backgroundSecondary')}; `;