import React, { useState } from 'react' import useDialogState from '@/hooks/use-dialog' import { type PlanRecord, type SubscriptionsDialogType } from '../types' type SubscriptionsContextType = { open: SubscriptionsDialogType | null setOpen: (str: SubscriptionsDialogType | null) => void currentRow: PlanRecord | null setCurrentRow: React.Dispatch> refreshTrigger: number triggerRefresh: () => void } const SubscriptionsContext = React.createContext(null) export function SubscriptionsProvider({ children, }: { children: React.ReactNode }) { const [open, setOpen] = useDialogState(null) const [currentRow, setCurrentRow] = useState(null) const [refreshTrigger, setRefreshTrigger] = useState(0) const triggerRefresh = () => setRefreshTrigger((prev) => prev + 1) return ( {children} ) } // eslint-disable-next-line react-refresh/only-export-components export const useSubscriptions = () => { const ctx = React.useContext(SubscriptionsContext) if (!ctx) { throw new Error( 'useSubscriptions has to be used within ' ) } return ctx }