mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
2c6aa3d4a7
Add "settings" object to global scope store GitOrigin-RevId: 1d5c7c3a1b417be0726c4a5e95e611ded47c13c4
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import { createContext, FC, useContext, useEffect, useMemo } from 'react'
|
|
import { ScopeValueStore } from '../../../../types/ide/scope-value-store'
|
|
import { ScopeEventEmitter } from '../../../../types/ide/scope-event-emitter'
|
|
|
|
export type Ide = {
|
|
[key: string]: any // TODO: define the rest of the `ide` and `$scope` properties
|
|
$scope: Record<string, any>
|
|
}
|
|
|
|
type IdeContextValue = Ide & {
|
|
scopeStore: ScopeValueStore
|
|
scopeEventEmitter: ScopeEventEmitter
|
|
}
|
|
|
|
export const IdeContext = createContext<IdeContextValue | undefined>(undefined)
|
|
|
|
export const IdeProvider: FC<{
|
|
ide: Ide
|
|
scopeStore: ScopeValueStore
|
|
scopeEventEmitter: ScopeEventEmitter
|
|
}> = ({ ide, scopeStore, scopeEventEmitter, children }) => {
|
|
/**
|
|
* Expose scopeStore via `window.overleaf.unstable.store`, so it can be accessed by external extensions.
|
|
*
|
|
* These properties are expected to be available:
|
|
* - `editor.view`
|
|
* - `project.spellcheckLanguage`
|
|
* - `editor.open_doc_name`,
|
|
* - `editor.open_doc_id`,
|
|
* - `settings.theme`
|
|
* - `settings.keybindings`
|
|
*/
|
|
useEffect(() => {
|
|
window.overleaf = {
|
|
...window.overleaf,
|
|
unstable: {
|
|
...window.overleaf?.unstable,
|
|
store: scopeStore,
|
|
},
|
|
}
|
|
}, [scopeStore])
|
|
|
|
const value = useMemo<IdeContextValue>(() => {
|
|
return {
|
|
...ide,
|
|
scopeStore,
|
|
scopeEventEmitter,
|
|
}
|
|
}, [ide, scopeStore, scopeEventEmitter])
|
|
|
|
return <IdeContext.Provider value={value}>{children}</IdeContext.Provider>
|
|
}
|
|
|
|
export function useIdeContext(): IdeContextValue {
|
|
const context = useContext(IdeContext)
|
|
|
|
if (!context) {
|
|
throw new Error('useIdeContext is only available inside IdeProvider')
|
|
}
|
|
|
|
return context
|
|
}
|