// 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 {FC, PropsWithChildren, createContext, useContext} from 'react'; import {useQueryState} from 'nuqs'; import {stringParam} from '../../hooks/urlParsers'; import {useDashboardItems} from '../../hooks/useDashboardItems'; import {VisualizationType} from '../types/visualization'; interface DashboardContextType { dashboardItems: string[]; setDashboardItems: (items: string[]) => void; handleClosePanel: (visualizationType: VisualizationType) => void; isMultiPanelView: boolean; } const DashboardContext = createContext(undefined); export const DashboardProvider: FC = ({children}) => { const {dashboardItems, setDashboardItems} = useDashboardItems(); const [, setSandwichFunctionName] = useQueryState( 'sandwich_function_name', stringParam.withOptions({history: 'replace'}) ); const handleClosePanel = (visualizationType: VisualizationType): void => { const newDashboardItems = dashboardItems.filter(item => item !== visualizationType); setDashboardItems(newDashboardItems); // Reset sandwich function name when closing sandwich panel if (visualizationType === 'sandwich') { void setSandwichFunctionName(null); } }; const isMultiPanelView = dashboardItems.length > 1; return ( {children} ); }; export const useDashboard = (): DashboardContextType => { const context = useContext(DashboardContext); if (context === undefined) { throw new Error('useDashboard must be used within a DashboardProvider'); } return context; };