File size: 556 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import { createContext, useContext } from 'react'
import { Element } from 'slate'
export const ElementContext = createContext<Element | null>(null)
/**
* Get the current element.
*/
export const useElement = (): Element => {
const context = useContext(ElementContext)
if (!context) {
throw new Error(
'The `useElement` hook must be used inside `renderElement`.'
)
}
return context
}
/**
* Get the current element, or return null if not inside `renderElement`.
*/
export const useElementIf = () => useContext(ElementContext)
|