File size: 905 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { createContext, useContext, ReactNode, useState } from 'react';
import { TabType } from 'calypso/performance-profiler/components/header';

interface DeviceTabContextType {
	activeTab: TabType;
	setActiveTab: ( tab: TabType ) => void;
}

const DeviceTabContext = createContext< DeviceTabContextType >( {
	activeTab: 'mobile',
	setActiveTab: () => undefined,
} );

export function DeviceTabProvider( {
	initialTab = 'mobile',
	children,
}: {
	initialTab?: TabType;
	children: ReactNode;
} ) {
	const [ activeTab, setActiveTab ] = useState< TabType >( initialTab );

	return (
		<DeviceTabContext.Provider value={ { activeTab, setActiveTab } }>
			{ children }
		</DeviceTabContext.Provider>
	);
}

export function useDeviceTab() {
	const context = useContext( DeviceTabContext );
	if ( ! context ) {
		throw new Error( 'useDeviceTab must be used within a DeviceTabProvider' );
	}
	return context;
}