{"version":3,"file":"static/js/39149.5834caad.chunk.js","mappings":"+KAOA,MAAMA,EAA2C,CAC/CC,UAAW,GAGAC,GAA4BC,EAAAA,EAAAA,eAAcH,GAE1CI,EAA6BC,IAEF,IAFG,SACzCC,GACkBD,EAClB,MAAOE,EAAaC,IAAkBC,EAAAA,EAAAA,UAAST,GAY/C,OAVAU,EAAAA,EAAAA,GAAY,CACV,CAACC,EAAAA,EAA2BC,gBAAiBC,IAItC,IAHLC,QAASb,GAGVY,EACCL,GAAeO,IAAI,IAAUA,EAAMd,eAAa,KAKlDe,EAAAA,EAAAA,KAACd,EAA0Be,SAAQ,CAACC,MAAOX,EAAYD,SACpDA,GACkC,EAI5Ba,EAA+BA,KAC1CC,EAAAA,EAAAA,YAAWlB,E,mCChCN,IAAKS,EAA0B,SAA1BA,GAA0B,OAA1BA,EAA0B,gCAA1BA,CAA0B,K","sources":["newelements/_Betslip/providers/BetslipGlobalStateProvider/index.tsx","newelements/_Betslip/types/global-state.ts"],"sourcesContent":["import { createContext, ReactElement, useContext, useState } from 'react';\nimport {\n  EBetslipGlobalStateActions,\n  TBetslipGlobalStateContext\n} from 'newelements/_Betslip/types/global-state';\nimport { useEventbus } from 'newhooks/generic/useEventbus';\n\nconst initialState: TBetslipGlobalStateContext = {\n  totalOdds: 0\n};\n\nexport const BetslipGlobalStateContext = createContext(initialState);\n\nexport const BetslipGlobalStateProvider = ({\n  children\n}: PropsWithChildren): ReactElement => {\n  const [globalState, setGlobalState] = useState(initialState);\n\n  useEventbus({\n    [EBetslipGlobalStateActions.SET_TOTAL_ODDS]: ({\n      payload: totalOdds\n    }: {\n      payload: number;\n    }) => {\n      setGlobalState(prev => ({ ...prev, totalOdds }));\n    }\n  });\n\n  return (\n    <BetslipGlobalStateContext.Provider value={globalState}>\n      {children}\n    </BetslipGlobalStateContext.Provider>\n  );\n};\n\nexport const useBetslipGlobalStateContext = () =>\n  useContext(BetslipGlobalStateContext);\n","export type TBetslipGlobalStateContext = {\n  totalOdds: number;\n};\n\nexport enum EBetslipGlobalStateActions {\n  SET_TOTAL_ODDS = 'SET_TOTAL_ODDS'\n}\n"],"names":["initialState","totalOdds","BetslipGlobalStateContext","createContext","BetslipGlobalStateProvider","_ref","children","globalState","setGlobalState","useState","useEventbus","EBetslipGlobalStateActions","SET_TOTAL_ODDS","_ref2","payload","prev","_jsx","Provider","value","useBetslipGlobalStateContext","useContext"],"sourceRoot":""}