2021-06-23 05:37:08 -04:00
|
|
|
import { createContext, useContext } from 'react'
|
2021-06-16 05:32:38 -04:00
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
|
|
|
|
const IdeContext = createContext()
|
|
|
|
|
|
|
|
IdeContext.Provider.propTypes = {
|
|
|
|
value: PropTypes.shape({
|
|
|
|
$scope: PropTypes.object.isRequired,
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useIdeContext() {
|
|
|
|
const context = useContext(IdeContext)
|
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
throw new Error('useIdeContext is only available inside IdeProvider')
|
|
|
|
}
|
|
|
|
|
|
|
|
return context
|
|
|
|
}
|
|
|
|
|
|
|
|
export function IdeProvider({ ide, children }) {
|
|
|
|
return <IdeContext.Provider value={ide}>{children}</IdeContext.Provider>
|
|
|
|
}
|
|
|
|
IdeProvider.propTypes = {
|
|
|
|
children: PropTypes.any.isRequired,
|
|
|
|
ide: PropTypes.shape({
|
|
|
|
$scope: PropTypes.object.isRequired,
|
|
|
|
}).isRequired,
|
|
|
|
}
|