editor-manager-context.tsx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  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 (
  257. update.meta.origin?.kind === 'file-restore' ||
  258. update.meta.origin?.kind === 'project-restore'
  259. ) {
  260. return
  261. }
  262. showGenericMessageModal(
  263. t('document_updated_externally'),
  264. t('document_updated_externally_detail')
  265. )
  266. })
  267. },
  268. [
  269. attachErrorHandlerToDocument,
  270. ignoringExternalUpdates,
  271. showGenericMessageModal,
  272. t,
  273. ]
  274. )
  275. const syncTimeoutRef = useRef<number | null>(null)
  276. const syncTrackChangesState = useCallback(
  277. (doc: DocumentContainer) => {
  278. if (!doc) {
  279. return
  280. }
  281. if (syncTimeoutRef.current) {
  282. window.clearTimeout(syncTimeoutRef.current)
  283. syncTimeoutRef.current = null
  284. }
  285. const want = wantTrackChangesRef.current
  286. const have = doc.getTrackingChanges()
  287. if (want === have) {
  288. setTrackChanges(want)
  289. return
  290. }
  291. const tryToggle = () => {
  292. const saved = doc.getInflightOp() == null && doc.getPendingOp() == null
  293. if (saved) {
  294. doc.setTrackingChanges(want)
  295. setTrackChanges(want)
  296. } else {
  297. syncTimeoutRef.current = window.setTimeout(tryToggle, 100)
  298. }
  299. }
  300. tryToggle()
  301. },
  302. [setTrackChanges]
  303. )
  304. const doOpenNewDocument = useCallback(
  305. (doc: Doc) =>
  306. new Promise<DocumentContainer>((resolve, reject) => {
  307. debugConsole.log('[doOpenNewDocument] Opening...')
  308. const newDocument = openDocs.getDocument(doc._id)
  309. if (!newDocument) {
  310. debugConsole.error(`No open document with ID '${doc._id}' found`)
  311. reject(new Error('no open document found'))
  312. return
  313. }
  314. const preJoinEpoch = ++editorOpenDocEpochRef.current
  315. newDocument.join(error => {
  316. if (error) {
  317. debugConsole.log(
  318. `[doOpenNewDocument] error joining doc ${doc._id}`,
  319. error
  320. )
  321. reject(error)
  322. return
  323. }
  324. if (editorOpenDocEpochRef.current !== preJoinEpoch) {
  325. debugConsole.log(
  326. `[doOpenNewDocument] editorOpenDocEpoch mismatch ${editorOpenDocEpochRef.current} vs ${preJoinEpoch}`
  327. )
  328. newDocument.leaveAndCleanUp()
  329. reject(new Error('another document was loaded'))
  330. }
  331. bindToDocumentEvents(doc, newDocument)
  332. resolve(newDocument)
  333. })
  334. }),
  335. [bindToDocumentEvents, openDocs]
  336. )
  337. const openNewDocument = useCallback(
  338. async (doc: Doc): Promise<DocumentContainer> => {
  339. // Leave the current document
  340. // - when we are opening a different new one, to avoid race conditions
  341. // between leaving and joining the same document
  342. // - when the current one has pending ops that need flushing, to avoid
  343. // race conditions from cleanup
  344. const currentDocId = currentDocument?.doc_id
  345. const hasBufferedOps = currentDocument?.hasBufferedOps()
  346. const changingDoc = currentDocument && currentDocId !== doc._id
  347. if (changingDoc || hasBufferedOps) {
  348. debugConsole.log('[openNewDocument] Leaving existing open doc...')
  349. // Do not trigger any UI changes from remote operations
  350. unbindFromDocumentEvents(currentDocument)
  351. // Keep listening for out-of-sync and similar errors.
  352. attachErrorHandlerToDocument(doc, currentDocument)
  353. // Teardown the Document -> ShareJsDoc -> sharejs doc
  354. // By the time this completes, the Document instance is no longer
  355. // registered in OpenDocuments and doOpenNewDocument can start
  356. // from scratch -- read: no corrupted internal state.
  357. const preLeaveEpoch = ++editorOpenDocEpochRef.current
  358. try {
  359. await currentDocument.leaveAndCleanUpPromise()
  360. } catch (error) {
  361. debugConsole.log(
  362. `[openNewDocument] error leaving doc ${currentDocId}`,
  363. error
  364. )
  365. throw error
  366. }
  367. if (editorOpenDocEpochRef.current !== preLeaveEpoch) {
  368. debugConsole.log(
  369. `[openNewDocument] editorOpenDocEpoch mismatch ${editorOpenDocEpochRef.current} vs ${preLeaveEpoch}`
  370. )
  371. throw new Error('another document was loaded')
  372. }
  373. }
  374. return doOpenNewDocument(doc)
  375. },
  376. [attachErrorHandlerToDocument, doOpenNewDocument, currentDocument]
  377. )
  378. const openDocIdRef = useRef(openDocId)
  379. useEffect(() => {
  380. openDocIdRef.current = openDocId
  381. }, [openDocId])
  382. const openDoc = useCallback(
  383. async (doc: Doc, options: OpenDocOptions = {}) => {
  384. debugConsole.log(`[openDoc] Opening ${doc._id}`)
  385. if (view === 'editor') {
  386. // store position of previous doc before switching docs
  387. eventEmitter.emit('store-doc-position')
  388. }
  389. if (!options.keepCurrentView) {
  390. setView('editor')
  391. }
  392. const done = (isNewDoc: boolean) => {
  393. window.dispatchEvent(
  394. new CustomEvent('doc:after-opened', {
  395. detail: { isNewDoc, docId: doc._id },
  396. })
  397. )
  398. if (hasGotoLine(options)) {
  399. window.setTimeout(() => jumpToLine(options))
  400. // Jump to the line again after a stored scroll position has been restored
  401. if (isNewDoc) {
  402. window.addEventListener(
  403. 'editor:scroll-position-restored',
  404. () => jumpToLine(options),
  405. { once: true }
  406. )
  407. }
  408. } else if (hasGotoOffset(options)) {
  409. window.setTimeout(() => {
  410. eventEmitter.emit('editor:gotoOffset', options.gotoOffset)
  411. })
  412. }
  413. }
  414. // If we already have the document open, or are opening the document, we can return at this point.
  415. // Note: only use forceReopen:true to override this when the document is
  416. // out of sync and needs to be reloaded from the server.
  417. if (doc._id === openDocIdRef.current && !options.forceReopen) {
  418. done(false)
  419. return
  420. }
  421. // We're now either opening a new document or reloading a broken one.
  422. openDocIdRef.current = doc._id as DocId
  423. setOpenDocId(doc._id as DocId)
  424. setOpenDocName(doc.name)
  425. setOpening(true)
  426. try {
  427. const document = await openNewDocument(doc)
  428. syncTrackChangesState(document)
  429. eventEmitter.emit('doc:opened')
  430. setOpening(false)
  431. setCurrentDocument(document)
  432. done(true)
  433. } catch (error: any) {
  434. if (error?.message === 'another document was loaded') {
  435. debugConsole.log(
  436. `[openDoc] another document was loaded while ${doc._id} was loading`
  437. )
  438. return
  439. }
  440. debugConsole.error('Error opening document', error)
  441. showGenericMessageModal(
  442. t('error_opening_document'),
  443. t('error_opening_document_detail')
  444. )
  445. }
  446. },
  447. [
  448. eventEmitter,
  449. jumpToLine,
  450. openNewDocument,
  451. setCurrentDocument,
  452. setOpenDocId,
  453. setOpenDocName,
  454. setOpening,
  455. setView,
  456. showGenericMessageModal,
  457. syncTrackChangesState,
  458. t,
  459. view,
  460. ]
  461. )
  462. const openDocWithId = useCallback(
  463. (docId: string, options: OpenDocOptions = {}) => {
  464. const doc = findDocEntityById(fileTreeData, docId)
  465. if (!doc) {
  466. return
  467. }
  468. openDoc(doc, options)
  469. },
  470. [fileTreeData, openDoc]
  471. )
  472. const openInitialDoc = useCallback(
  473. (fallbackDocId: string) => {
  474. const docId =
  475. customLocalStorage.getItem(openDocIdStorageKey) || fallbackDocId
  476. if (docId) {
  477. openDocWithId(docId)
  478. }
  479. },
  480. [openDocIdStorageKey, openDocWithId]
  481. )
  482. useEffect(() => {
  483. if (docError) {
  484. const { doc, document, error, meta } = docError
  485. let { editorContent } = docError
  486. const message = typeof error === 'string' ? error : (error?.message ?? '')
  487. // Clear document error so that it's only handled once
  488. setDocError(null)
  489. if (message.includes('maxDocLength')) {
  490. openDoc(doc, { forceReopen: true })
  491. const hasTrackedDeletes =
  492. document.ranges != null &&
  493. document.ranges.changes.some(change => 'd' in change.op)
  494. const explanation = hasTrackedDeletes
  495. ? `${t('document_too_long_detail')} ${t('document_too_long_tracked_deletes')}`
  496. : t('document_too_long_detail')
  497. showGenericMessageModal(t('document_too_long'), explanation)
  498. setDocTooLongErrorShown(true)
  499. } else if (/too many comments or tracked changes/.test(message)) {
  500. showGenericMessageModal(
  501. t('too_many_comments_or_tracked_changes'),
  502. t('too_many_comments_or_tracked_changes_detail')
  503. )
  504. } else if (!docTooLongErrorShown) {
  505. // Do not allow this doc to open another error modal.
  506. document.off('error')
  507. // Preserve the sharejs contents before the teardown.
  508. // eslint-disable-next-line no-unused-vars
  509. editorContent =
  510. typeof editorContent === 'string'
  511. ? editorContent
  512. : document.doc?._doc.snapshot
  513. // Tear down the ShareJsDoc.
  514. if (document.doc) document.doc.clearInflightAndPendingOps()
  515. // Do not re-join after re-connecting.
  516. document.leaveAndCleanUp()
  517. disconnect()
  518. reportError(error, meta)
  519. // Tell the user about the error state.
  520. setIsInErrorState(true)
  521. // Ensure that the editor is locked
  522. setOutOfSync(true)
  523. // Display the "out of sync" modal
  524. showOutOfSyncModal(editorContent || '')
  525. // Do not forceReopen the document.
  526. return
  527. }
  528. const handleProjectJoined = () => {
  529. openDoc(doc, { forceReopen: true })
  530. }
  531. eventEmitter.once('project:joined', handleProjectJoined)
  532. return () => {
  533. eventEmitter.off('project:joined', handleProjectJoined)
  534. }
  535. }
  536. }, [
  537. disconnect,
  538. docError,
  539. docTooLongErrorShown,
  540. eventEmitter,
  541. openDoc,
  542. reportError,
  543. setIsInErrorState,
  544. showGenericMessageModal,
  545. showOutOfSyncModal,
  546. setOutOfSync,
  547. t,
  548. ])
  549. useEventListener('editor:insert-symbol', () => {
  550. sendMB('symbol-palette-insert')
  551. })
  552. useEventListener('flush-changes', () => {
  553. openDocs.flushAll()
  554. })
  555. useEventListener('blur', () => {
  556. openDocs.flushAll()
  557. })
  558. // Flush changes before disconnecting
  559. useEffect(() => {
  560. if (connectionState.forceDisconnected) {
  561. openDocs.flushAll()
  562. }
  563. }, [connectionState.forceDisconnected, openDocs])
  564. // Watch for changes in wantTrackChanges
  565. const previousWantTrackChangesRef = useRef(wantTrackChanges)
  566. useEffect(() => {
  567. if (wantTrackChanges !== previousWantTrackChangesRef.current) {
  568. previousWantTrackChangesRef.current = wantTrackChanges
  569. syncTrackChangesState(currentDocument)
  570. }
  571. }, [currentDocument, syncTrackChangesState, wantTrackChanges])
  572. const editorManager = useMemo(
  573. () => ({
  574. getEditorType,
  575. showSymbolPalette,
  576. currentDocument,
  577. currentDocumentId: openDocId,
  578. getCurrentDocValue,
  579. getCurrentDocId,
  580. startIgnoringExternalUpdates,
  581. stopIgnoringExternalUpdates,
  582. openDocId: openDocWithId,
  583. openDoc,
  584. openDocs,
  585. openInitialDoc,
  586. jumpToLine,
  587. wantTrackChanges,
  588. setWantTrackChanges,
  589. debugTimers,
  590. }),
  591. [
  592. getEditorType,
  593. showSymbolPalette,
  594. currentDocument,
  595. openDocId,
  596. getCurrentDocValue,
  597. getCurrentDocId,
  598. startIgnoringExternalUpdates,
  599. stopIgnoringExternalUpdates,
  600. openDocWithId,
  601. openDoc,
  602. openDocs,
  603. openInitialDoc,
  604. jumpToLine,
  605. wantTrackChanges,
  606. setWantTrackChanges,
  607. debugTimers,
  608. ]
  609. )
  610. // Expose editorManager via ide object because some React code relies on it,
  611. // for now
  612. ide.editorManager = editorManager
  613. return (
  614. <EditorManagerContext.Provider value={editorManager}>
  615. {children}
  616. </EditorManagerContext.Provider>
  617. )
  618. }
  619. export function useEditorManagerContext(): EditorManager {
  620. const context = useContext(EditorManagerContext)
  621. if (!context) {
  622. throw new Error(
  623. 'useEditorManagerContext is only available inside EditorManagerProvider'
  624. )
  625. }
  626. return context
  627. }