mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c01402bbd
PDF Detach v2 GitOrigin-RevId: 3deb76474185f9176cde23ab32ef51b90df6e8e9
33 lines
802 B
JavaScript
33 lines
802 B
JavaScript
import { createContext, useContext, useState } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { getMockIde } from './mock/mock-ide'
|
|
|
|
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 }) {
|
|
const [value] = useState(() => ide || getMockIde())
|
|
|
|
return <IdeContext.Provider value={value}>{children}</IdeContext.Provider>
|
|
}
|
|
IdeProvider.propTypes = {
|
|
children: PropTypes.any.isRequired,
|
|
ide: PropTypes.shape({
|
|
$scope: PropTypes.object.isRequired,
|
|
}),
|
|
}
|