editor-manager-context.tsx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. import {
  2. createContext,
  3. FC,
  4. useCallback,
  5. useContext,
  6. useEffect,
  7. useMemo,
  8. useRef,
  9. useState,
  10. } from 'react'
  11. import { sendMB } from '@/infrastructure/event-tracking'
  12. import useScopeValue from '@/shared/hooks/use-scope-value'
  13. import { useIdeContext } from '@/shared/context/ide-context'
  14. import { OpenDocuments } from '@/features/ide-react/editor/open-documents'
  15. import EditorWatchdogManager from '@/features/ide-react/connection/editor-watchdog-manager'
  16. import { useIdeReactContext } from '@/features/ide-react/context/ide-react-context'
  17. import { useConnectionContext } from '@/features/ide-react/context/connection-context'
  18. import { debugConsole } from '@/utils/debugging'
  19. import { DocumentContainer } from '@/features/ide-react/editor/document-container'
  20. import { useLayoutContext } from '@/shared/context/layout-context'
  21. import { GotoLineOptions } from '@/features/ide-react/types/goto-line-options'
  22. import { Doc } from '../../../../../types/doc'
  23. import { useFileTreeData } from '@/shared/context/file-tree-data-context'
  24. import { findDocEntityById } from '@/features/ide-react/util/find-doc-entity-by-id'
  25. import useScopeEventEmitter from '@/shared/hooks/use-scope-event-emitter'
  26. import { useModalsContext } from '@/features/ide-react/context/modals-context'
  27. import { useTranslation } from 'react-i18next'
  28. import customLocalStorage from '@/infrastructure/local-storage'
  29. import useEventListener from '@/shared/hooks/use-event-listener'
  30. import { EditorType } from '@/features/ide-react/editor/types/editor-type'
  31. import { DocId } from '../../../../../types/project-settings'
  32. import { Update } from '@/features/history/services/types/update'
  33. import { useDebugDiffTracker } from '../hooks/use-debug-diff-tracker'
  34. import { useEditorContext } from '@/shared/context/editor-context'
  35. interface GotoOffsetOptions {
  36. gotoOffset: number
  37. }
  38. interface OpenDocOptions
  39. extends Partial<GotoLineOptions>,
  40. Partial<GotoOffsetOptions> {
  41. gotoOffset?: number
  42. forceReopen?: boolean
  43. keepCurrentView?: boolean
  44. }
  45. export type EditorManager = {
  46. getEditorType: () => EditorType | null
  47. showSymbolPalette: boolean
  48. currentDocument: DocumentContainer
  49. currentDocumentId: DocId | null
  50. getCurrentDocValue: () => string | null
  51. getCurrentDocId: () => DocId | null
  52. startIgnoringExternalUpdates: () => void
  53. stopIgnoringExternalUpdates: () => void
  54. openDocId: (docId: string, options?: OpenDocOptions) => void
  55. openDoc: (document: Doc, options?: OpenDocOptions) => void
  56. openDocs: OpenDocuments
  57. openInitialDoc: (docId: string) => void
  58. jumpToLine: (options: GotoLineOptions) => void
  59. wantTrackChanges: boolean
  60. setWantTrackChanges: React.Dispatch<
  61. React.SetStateAction<EditorManager['wantTrackChanges']>
  62. >
  63. debugTimers: React.MutableRefObject<Record<string, number>>
  64. }
  65. function hasGotoLine(options: OpenDocOptions): options is GotoLineOptions {
  66. return typeof options.gotoLine === 'number'
  67. }
  68. function hasGotoOffset(options: OpenDocOptions): options is GotoOffsetOptions {
  69. return typeof options.gotoOffset === 'number'
  70. }
  71. export type EditorScopeValue = {
  72. showSymbolPalette: false
  73. toggleSymbolPalette: () => void
  74. sharejs_doc: DocumentContainer | null
  75. open_doc_id: string | null
  76. open_doc_name: string | null
  77. opening: boolean
  78. trackChanges: boolean
  79. wantTrackChanges: boolean
  80. showVisual: boolean
  81. newSourceEditor: boolean
  82. error_state: boolean
  83. }
  84. export const EditorManagerContext = createContext<EditorManager | undefined>(
  85. undefined
  86. )
  87. export const EditorManagerProvider: FC = ({ children }) => {
  88. const { t } = useTranslation()
  89. const ide = useIdeContext()
  90. const { projectId } = useIdeReactContext()
  91. const { reportError, eventEmitter, eventLog } = useIdeReactContext()
  92. const { setOutOfSync } = useEditorContext()
  93. const { socket, disconnect, connectionState } = useConnectionContext()
  94. const { view, setView } = useLayoutContext()
  95. const { showGenericMessageModal, genericModalVisible, showOutOfSyncModal } =
  96. useModalsContext()
  97. const [showSymbolPalette, setShowSymbolPalette] = useScopeValue<boolean>(
  98. 'editor.showSymbolPalette'
  99. )
  100. const [showVisual] = useScopeValue<boolean>('editor.showVisual')
  101. const [currentDocument, setCurrentDocument] =
  102. useScopeValue<DocumentContainer>('editor.sharejs_doc')
  103. const [openDocId, setOpenDocId] = useScopeValue<DocId | null>(
  104. 'editor.open_doc_id'
  105. )
  106. const [, setOpenDocName] = useScopeValue<string | null>(
  107. 'editor.open_doc_name'
  108. )
  109. const [, setOpening] = useScopeValue<boolean>('editor.opening')
  110. const [, setIsInErrorState] = useScopeValue<boolean>('editor.error_state')
  111. const [, setTrackChanges] = useScopeValue<boolean>('editor.trackChanges')
  112. const [wantTrackChanges, setWantTrackChanges] = useScopeValue<boolean>(
  113. 'editor.wantTrackChanges'
  114. )
  115. const wantTrackChangesRef = useRef(wantTrackChanges)
  116. useEffect(() => {
  117. wantTrackChangesRef.current = wantTrackChanges
  118. }, [wantTrackChanges])
  119. const goToLineEmitter = useScopeEventEmitter('editor:gotoLine')
  120. const { fileTreeData } = useFileTreeData()
  121. const [ignoringExternalUpdates, setIgnoringExternalUpdates] = useState(false)
  122. const { createDebugDiff, debugTimers } = useDebugDiffTracker(
  123. projectId,
  124. currentDocument
  125. )
  126. const [globalEditorWatchdogManager] = useState(
  127. () =>
  128. new EditorWatchdogManager({
  129. onTimeoutHandler: (meta: Record<string, any>) => {
  130. let diffSize: number | null = null
  131. createDebugDiff()
  132. .then(calculatedDiffSize => {
  133. diffSize = calculatedDiffSize
  134. })
  135. .finally(() => {
  136. sendMB('losing-edits', {
  137. ...meta,
  138. diffSize,
  139. timers: debugTimers.current,
  140. })
  141. reportError('losing-edits', {
  142. ...meta,
  143. diffSize,
  144. timers: debugTimers.current,
  145. })
  146. })
  147. },
  148. })
  149. )
  150. // Store the most recent document error and consume it in an effect, which
  151. // prevents circular dependencies in useCallbacks
  152. const [docError, setDocError] = useState<{
  153. doc: Doc
  154. document: DocumentContainer
  155. error: Error | string
  156. meta?: Record<string, any>
  157. editorContent?: string
  158. } | null>(null)
  159. const [docTooLongErrorShown, setDocTooLongErrorShown] = useState(false)
  160. useEffect(() => {
  161. if (!genericModalVisible) {
  162. setDocTooLongErrorShown(false)
  163. }
  164. }, [genericModalVisible])
  165. const [openDocs] = useState(
  166. () =>
  167. new OpenDocuments(
  168. socket,
  169. globalEditorWatchdogManager,
  170. eventEmitter,
  171. eventLog
  172. )
  173. )
  174. const openDocIdStorageKey = `doc.open_id.${projectId}`
  175. // Persist the open document ID to local storage
  176. useEffect(() => {
  177. if (openDocId) {
  178. customLocalStorage.setItem(openDocIdStorageKey, openDocId)
  179. }
  180. }, [openDocId, openDocIdStorageKey])
  181. const editorOpenDocEpochRef = useRef(0)
  182. // TODO: This looks dodgy because it wraps a state setter and is itself
  183. // stored in React state in the scope store. The problem is that it needs to
  184. // be exposed via the scope store because some components access it that way;
  185. // it would be better to simply access it from a context, but the current
  186. // implementation in EditorManager interacts with Angular scope to update
  187. // the layout. Once Angular is gone, this can become a context method.
  188. useEffect(() => {
  189. ide.scopeStore.set('editor.toggleSymbolPalette', () => {
  190. setShowSymbolPalette(show => {
  191. const newValue = !show
  192. sendMB(newValue ? 'symbol-palette-show' : 'symbol-palette-hide')
  193. return newValue
  194. })
  195. })
  196. }, [ide.scopeStore, setShowSymbolPalette])
  197. const getEditorType = useCallback((): EditorType | null => {
  198. if (!currentDocument) {
  199. return null
  200. }
  201. return showVisual ? 'cm6-rich-text' : 'cm6'
  202. }, [currentDocument, showVisual])
  203. const getCurrentDocValue = useCallback(() => {
  204. return currentDocument?.getSnapshot() ?? null
  205. }, [currentDocument])
  206. const getCurrentDocId = useCallback(() => openDocId, [openDocId])
  207. const startIgnoringExternalUpdates = useCallback(
  208. () => setIgnoringExternalUpdates(true),
  209. []
  210. )
  211. const stopIgnoringExternalUpdates = useCallback(
  212. () => setIgnoringExternalUpdates(false),
  213. []
  214. )
  215. const jumpToLine = useCallback(
  216. (options: GotoLineOptions) => {
  217. goToLineEmitter(
  218. options.gotoLine,
  219. options.gotoColumn ?? 0,
  220. options.syncToPdf ?? false
  221. )
  222. },
  223. [goToLineEmitter]
  224. )
  225. const unbindFromDocumentEvents = (document: DocumentContainer) => {
  226. document.off()
  227. }
  228. const attachErrorHandlerToDocument = useCallback(
  229. (doc: Doc, document: DocumentContainer) => {
  230. document.on(
  231. 'error',
  232. (
  233. error: Error | string,
  234. meta?: Record<string, any>,
  235. editorContent?: string
  236. ) => {
  237. setDocError({ doc, document, error, meta, editorContent })
  238. }
  239. )
  240. },
  241. []
  242. )
  243. const bindToDocumentEvents = useCallback(
  244. (doc: Doc, document: DocumentContainer) => {
  245. attachErrorHandlerToDocument(doc, document)
  246. document.on('externalUpdate', (update: Update) => {
  247. if (ignoringExternalUpdates) {
  248. return
  249. }
  250. if (
  251. update.meta.type === 'external' &&
  252. update.meta.source === 'git-bridge'
  253. ) {
  254. return
  255. }
  256. if (update.meta.origin?.kind === 'file-restore') {
  257. return
  258. }
  259. showGenericMessageModal(
  260. t('document_updated_externally'),
  261. t('document_updated_externally_detail')
  262. )
  263. })
  264. },
  265. [
  266. attachErrorHandlerToDocument,
  267. ignoringExternalUpdates,
  268. showGenericMessageModal,
  269. t,
  270. ]
  271. )
  272. const syncTimeoutRef = useRef<number | null>(null)
  273. const syncTrackChangesState = useCallback(
  274. (doc: DocumentContainer) => {
  275. if (!doc) {
  276. return
  277. }
  278. if (syncTimeoutRef.current) {
  279. window.clearTimeout(syncTimeoutRef.current)
  280. syncTimeoutRef.current = null
  281. }
  282. const want = wantTrackChangesRef.current
  283. const have = doc.getTrackingChanges()
  284. if (want === have) {
  285. setTrackChanges(want)
  286. return
  287. }
  288. const tryToggle = () => {
  289. const saved = doc.getInflightOp() == null && doc.getPendingOp() == null
  290. if (saved) {
  291. doc.setTrackingChanges(want)
  292. setTrackChanges(want)
  293. } else {
  294. syncTimeoutRef.current = window.setTimeout(tryToggle, 100)
  295. }
  296. }
  297. tryToggle()
  298. },
  299. [setTrackChanges]
  300. )
  301. const doOpenNewDocument = useCallback(
  302. (doc: Doc) =>
  303. new Promise<DocumentContainer>((resolve, reject) => {
  304. debugConsole.log('[doOpenNewDocument] Opening...')
  305. const newDocument = openDocs.getDocument(doc._id)
  306. if (!newDocument) {
  307. debugConsole.error(`No open document with ID '${doc._id}' found`)
  308. reject(new Error('no open document found'))
  309. return
  310. }
  311. const preJoinEpoch = ++editorOpenDocEpochRef.current
  312. newDocument.join(error => {
  313. if (error) {
  314. debugConsole.log(
  315. `[doOpenNewDocument] error joining doc ${doc._id}`,
  316. error
  317. )
  318. reject(error)
  319. return
  320. }
  321. if (editorOpenDocEpochRef.current !== preJoinEpoch) {
  322. debugConsole.log(
  323. `[doOpenNewDocument] editorOpenDocEpoch mismatch ${editorOpenDocEpochRef.current} vs ${preJoinEpoch}`
  324. )
  325. newDocument.leaveAndCleanUp()
  326. reject(new Error('another document was loaded'))
  327. }
  328. bindToDocumentEvents(doc, newDocument)
  329. resolve(newDocument)
  330. })
  331. }),
  332. [bindToDocumentEvents, openDocs]
  333. )
  334. const openNewDocument = useCallback(
  335. async (doc: Doc): Promise<DocumentContainer> => {
  336. // Leave the current document
  337. // - when we are opening a different new one, to avoid race conditions
  338. // between leaving and joining the same document
  339. // - when the current one has pending ops that need flushing, to avoid
  340. // race conditions from cleanup
  341. const currentDocId = currentDocument?.doc_id
  342. const hasBufferedOps = currentDocument?.hasBufferedOps()
  343. const changingDoc = currentDocument && currentDocId !== doc._id
  344. if (changingDoc || hasBufferedOps) {
  345. debugConsole.log('[openNewDocument] Leaving existing open doc...')
  346. // Do not trigger any UI changes from remote operations
  347. unbindFromDocumentEvents(currentDocument)
  348. // Keep listening for out-of-sync and similar errors.
  349. attachErrorHandlerToDocument(doc, currentDocument)
  350. // Teardown the Document -> ShareJsDoc -> sharejs doc
  351. // By the time this completes, the Document instance is no longer
  352. // registered in OpenDocuments and doOpenNewDocument can start
  353. // from scratch -- read: no corrupted internal state.
  354. const preLeaveEpoch = ++editorOpenDocEpochRef.current
  355. try {
  356. await currentDocument.leaveAndCleanUpPromise()
  357. } catch (error) {
  358. debugConsole.log(
  359. `[openNewDocument] error leaving doc ${currentDocId}`,
  360. error
  361. )
  362. throw error
  363. }
  364. if (editorOpenDocEpochRef.current !== preLeaveEpoch) {
  365. debugConsole.log(
  366. `[openNewDocument] editorOpenDocEpoch mismatch ${editorOpenDocEpochRef.current} vs ${preLeaveEpoch}`
  367. )
  368. throw new Error('another document was loaded')
  369. }
  370. }
  371. return doOpenNewDocument(doc)
  372. },
  373. [attachErrorHandlerToDocument, doOpenNewDocument, currentDocument]
  374. )
  375. const openDocIdRef = useRef(openDocId)
  376. useEffect(() => {
  377. openDocIdRef.current = openDocId
  378. }, [openDocId])
  379. const openDoc = useCallback(
  380. async (doc: Doc, options: OpenDocOptions = {}) => {
  381. debugConsole.log(`[openDoc] Opening ${doc._id}`)
  382. if (view === 'editor') {
  383. // store position of previous doc before switching docs
  384. eventEmitter.emit('store-doc-position')
  385. }
  386. if (!options.keepCurrentView) {
  387. setView('editor')
  388. }
  389. const done = (isNewDoc: boolean) => {
  390. window.dispatchEvent(
  391. new CustomEvent('doc:after-opened', {
  392. detail: { isNewDoc, docId: doc._id },
  393. })
  394. )
  395. if (hasGotoLine(options)) {
  396. window.setTimeout(() => jumpToLine(options))
  397. // Jump to the line again after a stored scroll position has been restored
  398. if (isNewDoc) {
  399. window.addEventListener(
  400. 'editor:scroll-position-restored',
  401. () => jumpToLine(options),
  402. { once: true }
  403. )
  404. }
  405. } else if (hasGotoOffset(options)) {
  406. window.setTimeout(() => {
  407. eventEmitter.emit('editor:gotoOffset', options.gotoOffset)
  408. })
  409. }
  410. }
  411. // If we already have the document open, or are opening the document, we can return at this point.
  412. // Note: only use forceReopen:true to override this when the document is
  413. // out of sync and needs to be reloaded from the server.
  414. if (doc._id === openDocIdRef.current && !options.forceReopen) {
  415. done(false)
  416. return
  417. }
  418. // We're now either opening a new document or reloading a broken one.
  419. openDocIdRef.current = doc._id as DocId
  420. setOpenDocId(doc._id as DocId)
  421. setOpenDocName(doc.name)
  422. setOpening(true)
  423. try {
  424. const document = await openNewDocument(doc)
  425. syncTrackChangesState(document)
  426. eventEmitter.emit('doc:opened')
  427. setOpening(false)
  428. setCurrentDocument(document)
  429. done(true)
  430. } catch (error: any) {
  431. if (error?.message === 'another document was loaded') {
  432. debugConsole.log(
  433. `[openDoc] another document was loaded while ${doc._id} was loading`
  434. )
  435. return
  436. }
  437. debugConsole.error('Error opening document', error)
  438. showGenericMessageModal(
  439. t('error_opening_document'),
  440. t('error_opening_document_detail')
  441. )
  442. }
  443. },
  444. [
  445. eventEmitter,
  446. jumpToLine,
  447. openNewDocument,
  448. setCurrentDocument,
  449. setOpenDocId,
  450. setOpenDocName,
  451. setOpening,
  452. setView,
  453. showGenericMessageModal,
  454. syncTrackChangesState,
  455. t,
  456. view,
  457. ]
  458. )
  459. const openDocWithId = useCallback(
  460. (docId: string, options: OpenDocOptions = {}) => {
  461. const doc = findDocEntityById(fileTreeData, docId)
  462. if (!doc) {
  463. return
  464. }
  465. openDoc(doc, options)
  466. },
  467. [fileTreeData, openDoc]
  468. )
  469. const openInitialDoc = useCallback(
  470. (fallbackDocId: string) => {
  471. const docId =
  472. customLocalStorage.getItem(openDocIdStorageKey) || fallbackDocId
  473. if (docId) {
  474. openDocWithId(docId)
  475. }
  476. },
  477. [openDocIdStorageKey, openDocWithId]
  478. )
  479. useEffect(() => {
  480. if (docError) {
  481. const { doc, document, error, meta } = docError
  482. let { editorContent } = docError
  483. const message = typeof error === 'string' ? error : (error?.message ?? '')
  484. // Clear document error so that it's only handled once
  485. setDocError(null)
  486. if (message.includes('maxDocLength')) {
  487. openDoc(doc, { forceReopen: true })
  488. showGenericMessageModal(
  489. t('document_too_long'),
  490. t('document_too_long_detail')
  491. )
  492. setDocTooLongErrorShown(true)
  493. } else if (/too many comments or tracked changes/.test(message)) {
  494. showGenericMessageModal(
  495. t('too_many_comments_or_tracked_changes'),
  496. t('too_many_comments_or_tracked_changes_detail')
  497. )
  498. } else if (!docTooLongErrorShown) {
  499. // Do not allow this doc to open another error modal.
  500. document.off('error')
  501. // Preserve the sharejs contents before the teardown.
  502. // eslint-disable-next-line no-unused-vars
  503. editorContent =
  504. typeof editorContent === 'string'
  505. ? editorContent
  506. : document.doc?._doc.snapshot
  507. // Tear down the ShareJsDoc.
  508. if (document.doc) document.doc.clearInflightAndPendingOps()
  509. // Do not re-join after re-connecting.
  510. document.leaveAndCleanUp()
  511. disconnect()
  512. reportError(error, meta)
  513. // Tell the user about the error state.
  514. setIsInErrorState(true)
  515. // Ensure that the editor is locked
  516. setOutOfSync(true)
  517. // Display the "out of sync" modal
  518. showOutOfSyncModal(editorContent || '')
  519. // Do not forceReopen the document.
  520. return
  521. }
  522. const handleProjectJoined = () => {
  523. openDoc(doc, { forceReopen: true })
  524. }
  525. eventEmitter.once('project:joined', handleProjectJoined)
  526. return () => {
  527. eventEmitter.off('project:joined', handleProjectJoined)
  528. }
  529. }
  530. }, [
  531. disconnect,
  532. docError,
  533. docTooLongErrorShown,
  534. eventEmitter,
  535. openDoc,
  536. reportError,
  537. setIsInErrorState,
  538. showGenericMessageModal,
  539. showOutOfSyncModal,
  540. setOutOfSync,
  541. t,
  542. ])
  543. useEventListener('editor:insert-symbol', () => {
  544. sendMB('symbol-palette-insert')
  545. })
  546. useEventListener('flush-changes', () => {
  547. openDocs.flushAll()
  548. })
  549. useEventListener('blur', () => {
  550. openDocs.flushAll()
  551. })
  552. // Flush changes before disconnecting
  553. useEffect(() => {
  554. if (connectionState.forceDisconnected) {
  555. openDocs.flushAll()
  556. }
  557. }, [connectionState.forceDisconnected, openDocs])
  558. // Watch for changes in wantTrackChanges
  559. const previousWantTrackChangesRef = useRef(wantTrackChanges)
  560. useEffect(() => {
  561. if (wantTrackChanges !== previousWantTrackChangesRef.current) {
  562. previousWantTrackChangesRef.current = wantTrackChanges
  563. syncTrackChangesState(currentDocument)
  564. }
  565. }, [currentDocument, syncTrackChangesState, wantTrackChanges])
  566. const editorManager = useMemo(
  567. () => ({
  568. getEditorType,
  569. showSymbolPalette,
  570. currentDocument,
  571. currentDocumentId: openDocId,
  572. getCurrentDocValue,
  573. getCurrentDocId,
  574. startIgnoringExternalUpdates,
  575. stopIgnoringExternalUpdates,
  576. openDocId: openDocWithId,
  577. openDoc,
  578. openDocs,
  579. openInitialDoc,
  580. jumpToLine,
  581. wantTrackChanges,
  582. setWantTrackChanges,
  583. debugTimers,
  584. }),
  585. [
  586. getEditorType,
  587. showSymbolPalette,
  588. currentDocument,
  589. openDocId,
  590. getCurrentDocValue,
  591. getCurrentDocId,
  592. startIgnoringExternalUpdates,
  593. stopIgnoringExternalUpdates,
  594. openDocWithId,
  595. openDoc,
  596. openDocs,
  597. openInitialDoc,
  598. jumpToLine,
  599. wantTrackChanges,
  600. setWantTrackChanges,
  601. debugTimers,
  602. ]
  603. )
  604. // Expose editorManager via ide object because some React code relies on it,
  605. // for now
  606. ide.editorManager = editorManager
  607. return (
  608. <EditorManagerContext.Provider value={editorManager}>
  609. {children}
  610. </EditorManagerContext.Provider>
  611. )
  612. }
  613. export function useEditorManagerContext(): EditorManager {
  614. const context = useContext(EditorManagerContext)
  615. if (!context) {
  616. throw new Error(
  617. 'useEditorManagerContext is only available inside EditorManagerProvider'
  618. )
  619. }
  620. return context
  621. }