| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591 |
- import { useCallback, useEffect, useRef } from 'react'
- import { EditorState } from '@codemirror/state'
- import useScopeEventEmitter from '../../../shared/hooks/use-scope-event-emitter'
- import useEventListener from '../../../shared/hooks/use-event-listener'
- import useScopeEventListener from '../../../shared/hooks/use-scope-event-listener'
- import { createExtensions } from '../extensions'
- import { setEditorTheme, setOptionsTheme } from '../extensions/theme'
- import {
- restoreCursorPosition,
- setCursorLineAndScroll,
- setCursorPositionAndScroll,
- } from '../extensions/cursor-position'
- import {
- setAnnotations,
- showCompileLogDiagnostics,
- } from '../extensions/annotations'
- import { useDetachCompileContext as useCompileContext } from '../../../shared/context/detach-compile-context'
- import { setCursorHighlights } from '../extensions/cursor-highlights'
- import {
- setLanguage,
- setMetadata,
- setSyntaxValidation,
- } from '../extensions/language'
- import { restoreScrollPosition } from '../extensions/scroll-position'
- import { setEditable } from '../extensions/editable'
- import { useFileTreeData } from '../../../shared/context/file-tree-data-context'
- import { setAutoPair } from '../extensions/auto-pair'
- import { setAutoComplete } from '../extensions/auto-complete'
- import { usePhrases } from './use-phrases'
- import { setPhrases } from '../extensions/phrases'
- import { setSpellCheckLanguage } from '../extensions/spelling'
- import { setKeybindings } from '../extensions/keybindings'
- import { Highlight } from '../../../../../types/highlight'
- import { EditorView } from '@codemirror/view'
- import { useErrorBoundary } from 'react-error-boundary'
- import { setVisual } from '../extensions/visual/visual'
- import { useFileTreePathContext } from '@/features/file-tree/contexts/file-tree-path'
- import { useUserSettingsContext } from '@/shared/context/user-settings-context'
- import { setDocName } from '@/features/source-editor/extensions/doc-name'
- import { captureException } from '@/infrastructure/error-reporter'
- import grammarlyExtensionPresent from '@/shared/utils/grammarly'
- import { debugConsole } from '@/utils/debugging'
- import { useMetadataContext } from '@/features/ide-react/context/metadata-context'
- import { useUserContext } from '@/shared/context/user-context'
- import { useReferencesContext } from '@/features/ide-react/context/references-context'
- import { setMathPreview } from '@/features/source-editor/extensions/math-preview'
- import { useRangesContext } from '@/features/review-panel/context/ranges-context'
- import { updateRanges } from '@/features/source-editor/extensions/ranges'
- import { useThreadsContext } from '@/features/review-panel/context/threads-context'
- import { useHunspell } from '@/features/source-editor/hooks/use-hunspell'
- import { Permissions } from '@/features/ide-react/types/permissions'
- import { GotoOffsetOptions } from '@/features/ide-react/context/editor-manager-context'
- import { GotoLineOptions } from '@/features/ide-react/types/goto-line-options'
- import { useOnlineUsersContext } from '@/features/ide-react/context/online-users-context'
- import { useEditorOpenDocContext } from '@/features/ide-react/context/editor-open-doc-context'
- import { useProjectContext } from '@/shared/context/project-context'
- import { usePermissionsContext } from '@/features/ide-react/context/permissions-context'
- import { useEditorPropertiesContext } from '@/features/ide-react/context/editor-properties-context'
- import { SearchQuery } from '@codemirror/search'
- import { beforeChangeDocEffect } from '@/features/source-editor/extensions/before-change-doc'
- import { useActiveOverallTheme } from '@/shared/hooks/use-active-overall-theme'
- import { useEditorSelectionContext } from '@/shared/context/editor-selection-context'
- import { useActiveEditorTheme } from '@/shared/hooks/use-active-editor-theme'
- import { useFeatureFlag } from '@/shared/context/split-test-context'
- import { isValidTeXFile } from '@/main/is-valid-tex-file'
- function useCodeMirrorScope(view: EditorView) {
- const { fileTreeData } = useFileTreeData()
- const permissions: Permissions = usePermissionsContext()
- // set up scope listeners
- const { logEntryAnnotations, editedSinceCompileStarted, compiling } =
- useCompileContext()
- const { openDocName, currentDocument } = useEditorOpenDocContext()
- const metadata = useMetadataContext()
- const { id: userId } = useUserContext()
- const { userSettings } = useUserSettingsContext()
- const {
- fontFamily,
- fontSize,
- lineHeight,
- autoComplete,
- autoPairDelimiters,
- mode,
- syntaxValidation,
- mathPreview,
- referencesSearchMode,
- enableNewEditor,
- } = userSettings
- const activeOverallTheme = useActiveOverallTheme()
- const editorTheme = useActiveEditorTheme()
- const { onlineUserCursorHighlights } = useOnlineUsersContext()
- const { project, features: projectFeatures } = useProjectContext()
- const editorContextMenuEnabled = useFeatureFlag('editor-context-menu')
- let spellCheckLanguage = project?.spellCheckLanguage || ''
- // spell check is off when read-only
- if (!permissions.write && !permissions.trackedWrite) {
- spellCheckLanguage = ''
- }
- const hunspellManager = useHunspell(spellCheckLanguage)
- const { showVisual: visual, trackChanges } = useEditorPropertiesContext()
- const { referenceKeys, searchLocalReferences } = useReferencesContext()
- const { setEditorSelection } = useEditorSelectionContext()
- const ranges = useRangesContext()
- const threads = useThreadsContext()
- // build the translation phrases
- const phrases = usePhrases()
- const phrasesRef = useRef(phrases)
- // initialise the local state
- const themeRef = useRef({
- fontFamily,
- fontSize,
- lineHeight,
- activeOverallTheme,
- editorTheme,
- })
- useEffect(() => {
- themeRef.current = {
- fontFamily,
- fontSize,
- lineHeight,
- activeOverallTheme,
- editorTheme,
- }
- view.dispatch(
- setOptionsTheme({
- fontFamily,
- fontSize,
- lineHeight,
- activeOverallTheme,
- })
- )
- setEditorTheme(editorTheme).then(spec => {
- view.dispatch(spec)
- })
- }, [view, fontFamily, fontSize, lineHeight, activeOverallTheme, editorTheme])
- const settingsRef = useRef({
- autoComplete,
- autoPairDelimiters,
- mode,
- syntaxValidation,
- mathPreview,
- referencesSearchMode,
- enableNewEditor,
- })
- const currentDocRef = useRef({
- currentDocument,
- trackChanges,
- })
- useEffect(() => {
- if (currentDocument) {
- currentDocRef.current.currentDocument = currentDocument
- }
- }, [view, currentDocument])
- useEffect(() => {
- if (ranges && threads) {
- window.setTimeout(() => {
- view.dispatch(updateRanges({ ranges, threads }))
- })
- }
- }, [view, ranges, threads])
- const docNameRef = useRef(openDocName)
- useEffect(() => {
- currentDocRef.current.trackChanges = trackChanges
- if (currentDocument) {
- if (trackChanges) {
- currentDocument.setTrackChangesUserId(userId ?? 'anonymous')
- } else {
- currentDocument.setTrackChangesUserId(null)
- }
- }
- }, [userId, currentDocument, trackChanges])
- const spellingRef = useRef({
- spellCheckLanguage,
- hunspellManager,
- })
- useEffect(() => {
- spellingRef.current = {
- spellCheckLanguage,
- hunspellManager,
- }
- window.setTimeout(() => {
- view.dispatch(setSpellCheckLanguage(spellingRef.current))
- })
- }, [view, spellCheckLanguage, hunspellManager])
- const projectFeaturesRef = useRef(projectFeatures)
- const editorContextMenuEnabledRef = useRef(editorContextMenuEnabled)
- // listen to doc:after-opened, and focus the editor if it's not a new doc
- useEffect(() => {
- const listener: EventListener = event => {
- const { isNewDoc } = (event as CustomEvent<{ isNewDoc: boolean }>).detail
- if (!isNewDoc) {
- window.setTimeout(() => {
- view.focus()
- }, 0)
- }
- }
- window.addEventListener('doc:after-opened', listener)
- return () => window.removeEventListener('doc:after-opened', listener)
- }, [view])
- // set the project metadata, mostly for use in autocomplete
- // TODO: read this data from the scope?
- const metadataRef = useRef({
- ...metadata,
- referenceKeys,
- searchLocalReferences,
- fileTreeData,
- })
- // listen to project metadata (commands, labels and package names) updates
- useEffect(() => {
- metadataRef.current = { ...metadataRef.current, ...metadata }
- window.setTimeout(() => {
- view.dispatch(setMetadata(metadataRef.current))
- })
- }, [view, metadata])
- // listen to project reference keys updates
- useEffect(() => {
- metadataRef.current.referenceKeys = referenceKeys
- window.setTimeout(() => {
- view.dispatch(setMetadata(metadataRef.current))
- })
- }, [view, referenceKeys])
- // listen to project reference search updates
- useEffect(() => {
- metadataRef.current.searchLocalReferences = searchLocalReferences
- window.setTimeout(() => {
- view.dispatch(setMetadata(metadataRef.current))
- })
- }, [view, searchLocalReferences])
- // listen to project root folder updates
- useEffect(() => {
- if (fileTreeData) {
- metadataRef.current.fileTreeData = fileTreeData
- window.setTimeout(() => {
- view.dispatch(setMetadata(metadataRef.current))
- })
- }
- }, [view, fileTreeData])
- const editableRef = useRef(permissions.write || permissions.trackedWrite)
- const { previewByPath } = useFileTreePathContext()
- const showVisual = visual && !!openDocName && isValidTeXFile(openDocName)
- const visualRef = useRef({
- previewByPath,
- visual: showVisual,
- })
- // Persist the search query in this hook when the document changes by keeping
- // a reference to the search query in sync with the editor state
- const searchQueryRef = useRef<SearchQuery | null>(null)
- useEventListener(
- 'search-panel-before-doc-change',
- useCallback((event: CustomEvent) => {
- searchQueryRef.current = event.detail
- }, [])
- )
- const { showBoundary } = useErrorBoundary()
- const handleException = useCallback((exception: any) => {
- captureException(exception, {
- tags: {
- handler: 'cm6-exception',
- // which editor mode is active ('visual' | 'code')
- ol_editor_mode: visualRef.current.visual ? 'visual' : 'code',
- // which editor keybindings are active ('default' | 'vim' | 'emacs')
- ol_editor_keybindings: settingsRef.current.mode,
- // whether Writefull is present ('extension' | 'integration' | 'none')
- ol_extensions_writefull: window.writefull ? 'integration' : 'none',
- // whether Grammarly is present
- ol_extensions_grammarly: grammarlyExtensionPresent(),
- },
- })
- }, [])
- // create a new state when currentDocument changes
- useEffect(() => {
- if (currentDocument) {
- debugConsole.log('creating new editor state')
- // Warn any interested extension that the document is about to change,
- // allowing it to perform any necessary actions before creating the new
- // state. destroy() is too late because the new state is already created
- view.dispatch({
- effects: beforeChangeDocEffect.of(null),
- })
- const state = EditorState.create({
- doc: currentDocument.getSnapshot(),
- extensions: createExtensions({
- currentDoc: {
- ...currentDocRef.current,
- currentDoc: currentDocument,
- },
- docName: docNameRef.current,
- theme: themeRef.current,
- metadata: metadataRef.current,
- settings: settingsRef.current,
- phrases: phrasesRef.current,
- spelling: spellingRef.current,
- visual: visualRef.current,
- projectFeatures: projectFeaturesRef.current,
- editorContextMenuEnabled: editorContextMenuEnabledRef.current,
- initialSearchQuery: searchQueryRef.current,
- showBoundary,
- handleException,
- setEditorSelection,
- }),
- })
- view.setState(state)
- // synchronous config
- view.dispatch(
- restoreCursorPosition(state.doc, currentDocument.doc_id),
- setEditable(editableRef.current),
- setOptionsTheme(themeRef.current)
- )
- // asynchronous config
- setEditorTheme(themeRef.current.editorTheme).then(spec => {
- view.dispatch(spec)
- })
- setKeybindings(settingsRef.current.mode).then(spec => {
- view.dispatch(spec)
- })
- if (!visualRef.current.visual) {
- window.setTimeout(() => {
- view.dispatch(restoreScrollPosition())
- view.focus()
- })
- }
- }
- // IMPORTANT: This effect must not depend on anything variable apart from currentDocument,
- // as the editor state is recreated when the effect runs.
- }, [view, currentDocument, showBoundary, handleException, setEditorSelection])
- useEffect(() => {
- if (openDocName) {
- docNameRef.current = openDocName
- window.setTimeout(() => {
- view.dispatch(
- setDocName(openDocName),
- setLanguage(
- openDocName,
- metadataRef.current,
- settingsRef.current.syntaxValidation
- )
- )
- })
- }
- }, [view, openDocName])
- useEffect(() => {
- visualRef.current.visual = showVisual
- window.setTimeout(() => {
- view.dispatch(setVisual(visualRef.current))
- view.dispatch({
- effects: EditorView.scrollIntoView(view.state.selection.main.head),
- })
- // clear performance measures and marks when switching between Source and Rich Text
- window.dispatchEvent(new Event('editor:visual-switch'))
- })
- }, [view, showVisual])
- useEffect(() => {
- visualRef.current.previewByPath = previewByPath
- window.setTimeout(() => {
- view.dispatch(setVisual(visualRef.current))
- })
- }, [view, previewByPath])
- useEffect(() => {
- editableRef.current = permissions.write || permissions.trackedWrite
- window.setTimeout(() => {
- view.dispatch(setEditable(editableRef.current)) // the editor needs to be locked when there's a problem saving data
- })
- }, [view, permissions.write, permissions.trackedWrite])
- useEffect(() => {
- phrasesRef.current = phrases
- window.setTimeout(() => {
- view.dispatch(setPhrases(phrases))
- })
- }, [view, phrases])
- // listen to editor settings updates
- useEffect(() => {
- settingsRef.current.autoPairDelimiters = autoPairDelimiters
- window.setTimeout(() => {
- view.dispatch(setAutoPair(autoPairDelimiters))
- })
- }, [view, autoPairDelimiters])
- useEffect(() => {
- settingsRef.current.autoComplete = autoComplete
- window.setTimeout(() => {
- view.dispatch(
- setAutoComplete({
- enabled: autoComplete,
- projectFeatures: projectFeaturesRef.current,
- referencesSearchMode: settingsRef.current.referencesSearchMode,
- })
- )
- })
- }, [view, autoComplete])
- useEffect(() => {
- settingsRef.current.mode = mode
- setKeybindings(mode).then(spec => {
- window.setTimeout(() => {
- view.dispatch(spec)
- })
- })
- }, [view, mode])
- useEffect(() => {
- settingsRef.current.syntaxValidation = syntaxValidation
- window.setTimeout(() => {
- view.dispatch(setSyntaxValidation(syntaxValidation))
- })
- }, [view, syntaxValidation])
- useEffect(() => {
- settingsRef.current.mathPreview = mathPreview
- window.setTimeout(() => {
- view.dispatch(setMathPreview(mathPreview))
- })
- }, [view, mathPreview])
- useEffect(() => {
- settingsRef.current.referencesSearchMode = referencesSearchMode
- }, [referencesSearchMode])
- const emitSyncToPdf = useScopeEventEmitter('cursor:editor:syncToPdf')
- // select and scroll to position on editor:gotoLine event (from synctex)
- useScopeEventListener(
- 'editor:gotoLine',
- useCallback(
- (_event: any, options: GotoLineOptions) => {
- setCursorLineAndScroll(
- view,
- options.gotoLine,
- options.gotoColumn,
- options.selectText
- )
- if (options.syncToPdf) {
- emitSyncToPdf()
- }
- },
- [emitSyncToPdf, view]
- )
- )
- // select and scroll to position on editor:gotoOffset event (from review panel)
- useScopeEventListener(
- 'editor:gotoOffset',
- useCallback(
- (_event: any, options: GotoOffsetOptions) => {
- setCursorPositionAndScroll(view, options.gotoOffset)
- },
- [view]
- )
- )
- // dispatch 'cursor:editor:update' to Angular scope (for synctex and realtime)
- const dispatchCursorUpdate = useScopeEventEmitter('cursor:editor:update')
- const handleCursorUpdate = useCallback(
- (event: CustomEvent) => {
- dispatchCursorUpdate(event.detail)
- },
- [dispatchCursorUpdate]
- )
- // listen for 'cursor:editor:update' events from CodeMirror, and dispatch them to Angular
- useEventListener('cursor:editor:update', handleCursorUpdate)
- // dispatch 'cursor:editor:update' to Angular scope (for outline)
- const dispatchScrollUpdate = useScopeEventEmitter('scroll:editor:update')
- const handleScrollUpdate = useCallback(
- (event: CustomEvent) => {
- dispatchScrollUpdate(event.detail)
- },
- [dispatchScrollUpdate]
- )
- // listen for 'cursor:editor:update' events from CodeMirror, and dispatch them to Angular
- useEventListener('scroll:editor:update', handleScrollUpdate)
- // enable the compile log linter a) when "Code Check" is off, b) when the project hasn't changed and isn't compiling.
- // the project "changed at" date is reset at the start of the compile, i.e. "the project hasn't changed",
- // but we don't want to display the compile log diagnostics from the previous compile.
- const enableCompileLogLinter =
- !syntaxValidation || (!editedSinceCompileStarted && !compiling)
- // store enableCompileLogLinter in a ref for use in useEffect
- const enableCompileLogLinterRef = useRef(enableCompileLogLinter)
- useEffect(() => {
- enableCompileLogLinterRef.current = enableCompileLogLinter
- }, [enableCompileLogLinter])
- // enable/disable the compile log linter as appropriate
- useEffect(() => {
- window.setTimeout(() => {
- view.dispatch(showCompileLogDiagnostics(enableCompileLogLinter))
- })
- }, [view, enableCompileLogLinter])
- // set the compile log annotations when they change
- useEffect(() => {
- if (currentDocument && logEntryAnnotations) {
- const annotations = logEntryAnnotations[currentDocument.doc_id]
- window.setTimeout(() => {
- view.dispatch(
- setAnnotations(view.state, annotations || []),
- // reconfigure the compile log lint source, so it runs once with the new data
- showCompileLogDiagnostics(enableCompileLogLinterRef.current)
- )
- })
- }
- }, [view, currentDocument, logEntryAnnotations])
- const highlightsRef = useRef<{ cursorHighlights: Highlight[] }>({
- cursorHighlights: [],
- })
- useEffect(() => {
- if (onlineUserCursorHighlights && currentDocument) {
- const items = onlineUserCursorHighlights[currentDocument.doc_id]
- highlightsRef.current.cursorHighlights = items
- window.setTimeout(() => {
- view.dispatch(setCursorHighlights(items))
- })
- }
- }, [view, onlineUserCursorHighlights, currentDocument])
- useEventListener(
- 'editor:focus',
- useCallback(() => {
- view.focus()
- }, [view])
- )
- }
- export default useCodeMirrorScope
|