// Copyright 2022 The Parca Authors // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import {useCallback, useState} from 'react'; import {QueryServiceClient} from '@parca/client'; import {ProfileViewWithData} from '..'; import ProfileSelector from '../ProfileSelector'; import {useQueryState} from '../hooks/useQueryState'; interface ProfileExplorerSingleProps { queryClient: QueryServiceClient; } const ProfileExplorerSingle = ({queryClient}: ProfileExplorerSingleProps): JSX.Element => { const [showMetricsGraph, setShowMetricsGraph] = useState(true); const {profileSource, setDraftTimeRange, commitDraft} = useQueryState({suffix: '_a'}); const handleSwitchToFifteenMinutes = useCallback(() => { const now = Date.now(); const from = now - 900_000; // 15 minutes ago setDraftTimeRange(from, now, 'relative:minute|15'); commitDraft({from, to: now, timeSelection: 'relative:minute|15'}); }, [setDraftTimeRange, commitDraft]); return ( <>
{}} // eslint-disable-line @typescript-eslint/no-empty-function comparing={false} enforcedProfileName={''} suffix="_a" showMetricsGraph={showMetricsGraph} setDisplayHideMetricsGraphButton={setShowMetricsGraph} />
{profileSource != null && ( )} ); }; export default ProfileExplorerSingle;