| 1234567891011121314151617181920212223 |
- import { proxy, snapshot, useSnapshot } from 'valtio'
- export type SidePanelTypeProps = 'VERCEL_CONNECTIONS' | 'GITHUB_CONNECTIONS'
- export const sidePanelsState = proxy({
- /**
- * Vercel connections
- */
- vercelConnectionsOpen: false as boolean,
- setVercelConnectionsOpen: (bool: boolean) => {
- sidePanelsState.vercelConnectionsOpen = bool
- },
- // ID to determine which vercel integration installation to use
- vercelConnectionsIntegrationId: undefined as undefined | string,
- setVercelConnectionsIntegrationId: (id: string) => {
- sidePanelsState.vercelConnectionsIntegrationId = id
- },
- })
- export const getSidePanelsState = () => snapshot(sidePanelsState)
- export const useSidePanelsStateSnapshot = (options?: Parameters<typeof useSnapshot>[1]) =>
- useSnapshot(sidePanelsState, options)
|