/* * SonarQube * Copyright (C) 2009-2022 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 { getValue } from '../../../api/settings'; import withAdminPagesOutletContext from '../../../app/components/admin/withAdminPagesOutletContext'; import { AdminPageExtension } from '../../../types/extension'; import { SettingsKey } from '../../../types/settings'; import { Extension } from '../../../types/types'; import '../style.css'; import { HousekeepingPolicy, RangeOption } from '../utils'; import AuditAppRenderer from './AuditAppRenderer'; interface Props { adminPages: Extension[]; } interface State { dateRange?: { from?: Date; to?: Date }; downloadStarted: boolean; housekeepingPolicy: HousekeepingPolicy; selection: RangeOption; } export class AuditApp extends React.PureComponent { constructor(props: Props) { super(props); this.state = { downloadStarted: false, housekeepingPolicy: HousekeepingPolicy.Monthly, selection: RangeOption.Today }; } componentDidMount() { if (this.hasGovernanceExtension()) { this.fetchHouseKeepingPolicy(); } } fetchHouseKeepingPolicy = async () => { const result = await getValue({ key: SettingsKey.AuditHouseKeeping }); this.setState({ housekeepingPolicy: (result?.value as HousekeepingPolicy | undefined) ?? HousekeepingPolicy.Monthly }); }; hasGovernanceExtension = () => { return Boolean( this.props.adminPages?.find(e => e.key === AdminPageExtension.GovernanceConsole) ); }; handleDateSelection = (dateRange: { from?: Date; to?: Date }) => this.setState({ dateRange, downloadStarted: false, selection: RangeOption.Custom }); handleOptionSelection = (selection: RangeOption) => this.setState({ dateRange: undefined, downloadStarted: false, selection }); handleStartDownload = () => { setTimeout(() => { this.setState({ downloadStarted: true }); }, 0); }; render() { if (!this.hasGovernanceExtension()) { return null; } return ( ); } } export default withAdminPagesOutletContext(AuditApp);