mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-15 07:34:42 -04:00
158 lines
6 KiB
TypeScript
158 lines
6 KiB
TypeScript
/*
|
|
SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import React, { Fragment, useCallback, useEffect, useRef, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useSelector } from 'react-redux'
|
|
import { useParams } from 'react-router'
|
|
import useMedia from 'use-media'
|
|
import { useApplyDarkMode } from '../../hooks/common/use-apply-dark-mode'
|
|
import { useDocumentTitle } from '../../hooks/common/use-document-title'
|
|
import { ApplicationState } from '../../redux'
|
|
import { setDocumentContent, setDocumentMetadata, setNoteId } from '../../redux/document-content/methods'
|
|
import { setEditorMode } from '../../redux/editor/methods'
|
|
import { extractNoteTitle } from '../common/document-title/note-title-extractor'
|
|
import { MotdBanner } from '../common/motd-banner/motd-banner'
|
|
import { AppBar, AppBarMode } from './app-bar/app-bar'
|
|
import { EditorMode } from './app-bar/editor-view-mode'
|
|
import { DocumentBar } from './document-bar/document-bar'
|
|
import { ScrollingDocumentRenderPane } from './document-renderer-pane/scrolling-document-render-pane'
|
|
import { EditorPane } from './editor-pane/editor-pane'
|
|
import { editorTestContent } from './editorTestContent'
|
|
import { useFirstDraw } from './hooks/useFirstDraw'
|
|
import { useViewModeShortcuts } from './hooks/useViewModeShortcuts'
|
|
import { DualScrollState, ScrollState } from './scroll/scroll-props'
|
|
import { Splitter } from './splitter/splitter'
|
|
import { YAMLMetaData } from './yaml-metadata/yaml-metadata'
|
|
|
|
export interface EditorPathParams {
|
|
id: string
|
|
}
|
|
|
|
export enum ScrollSource {
|
|
EDITOR,
|
|
RENDERER
|
|
}
|
|
|
|
const TASK_REGEX = /(\s*[-*] )(\[[ xX]])( .*)/
|
|
|
|
export const Editor: React.FC = () => {
|
|
const { t } = useTranslation()
|
|
const { id } = useParams<EditorPathParams>()
|
|
const untitledNote = t('editor.untitledNote')
|
|
const markdownContent = useSelector((state: ApplicationState) => state.documentContent.content)
|
|
const isWide = useMedia({ minWidth: 576 })
|
|
const [documentTitle, setDocumentTitle] = useState(untitledNote)
|
|
const noteMetadata = useRef<YAMLMetaData>()
|
|
const firstHeading = useRef<string>()
|
|
const scrollSource = useRef<ScrollSource>(ScrollSource.EDITOR)
|
|
|
|
const editorMode: EditorMode = useSelector((state: ApplicationState) => state.editorConfig.editorMode)
|
|
const editorSyncScroll: boolean = useSelector((state: ApplicationState) => state.editorConfig.syncScroll)
|
|
|
|
const [scrollState, setScrollState] = useState<DualScrollState>(() => ({
|
|
editorScrollState: { firstLineInView: 1, scrolledPercentage: 0 },
|
|
rendererScrollState: { firstLineInView: 1, scrolledPercentage: 0 }
|
|
}))
|
|
|
|
useEffect(() => {
|
|
setDocumentContent(editorTestContent)
|
|
}, [])
|
|
|
|
const updateDocumentTitle = useCallback(() => {
|
|
const noteTitle = extractNoteTitle(untitledNote, noteMetadata.current, firstHeading.current)
|
|
setDocumentTitle(noteTitle)
|
|
}, [noteMetadata, firstHeading, untitledNote])
|
|
|
|
const onFirstHeadingChange = useCallback((newFirstHeading: string | undefined) => {
|
|
firstHeading.current = newFirstHeading
|
|
updateDocumentTitle()
|
|
}, [updateDocumentTitle])
|
|
|
|
const onMetadataChange = useCallback((metaData: YAMLMetaData | undefined) => {
|
|
noteMetadata.current = metaData
|
|
setDocumentMetadata(metaData)
|
|
updateDocumentTitle()
|
|
}, [updateDocumentTitle])
|
|
|
|
const onTaskCheckedChange = useCallback((lineInMarkdown: number, checked: boolean) => {
|
|
const lines = markdownContent.split('\n')
|
|
const results = TASK_REGEX.exec(lines[lineInMarkdown])
|
|
if (results) {
|
|
const before = results[1]
|
|
const after = results[3]
|
|
lines[lineInMarkdown] = `${before}[${checked ? 'x' : ' '}]${after}`
|
|
setDocumentContent(lines.join('\n'))
|
|
}
|
|
}, [markdownContent])
|
|
|
|
useViewModeShortcuts()
|
|
|
|
const isFirstDraw = useFirstDraw()
|
|
|
|
useEffect(() => {
|
|
setNoteId(id)
|
|
}, [id])
|
|
|
|
useEffect(() => {
|
|
if (!isFirstDraw && !isWide && editorMode === EditorMode.BOTH) {
|
|
setEditorMode(EditorMode.PREVIEW)
|
|
}
|
|
}, [editorMode, isFirstDraw, isWide])
|
|
|
|
const onMarkdownRendererScroll = useCallback((newScrollState: ScrollState) => {
|
|
if (scrollSource.current === ScrollSource.RENDERER && editorSyncScroll) {
|
|
setScrollState((old) => ({ editorScrollState: newScrollState, rendererScrollState: old.rendererScrollState }))
|
|
}
|
|
}, [editorSyncScroll])
|
|
|
|
const onEditorScroll = useCallback((newScrollState: ScrollState) => {
|
|
if (scrollSource.current === ScrollSource.EDITOR && editorSyncScroll) {
|
|
setScrollState((old) => ({ rendererScrollState: newScrollState, editorScrollState: old.editorScrollState }))
|
|
}
|
|
}, [editorSyncScroll])
|
|
|
|
useApplyDarkMode()
|
|
useDocumentTitle(documentTitle)
|
|
|
|
return (
|
|
<Fragment>
|
|
<MotdBanner/>
|
|
<div className={'d-flex flex-column vh-100'}>
|
|
<AppBar mode={AppBarMode.EDITOR}/>
|
|
<DocumentBar title={documentTitle}/>
|
|
<Splitter
|
|
showLeft={editorMode === EditorMode.EDITOR || editorMode === EditorMode.BOTH}
|
|
left={
|
|
<EditorPane
|
|
onContentChange={setDocumentContent}
|
|
content={markdownContent}
|
|
scrollState={scrollState.editorScrollState}
|
|
onScroll={onEditorScroll}
|
|
onMakeScrollSource={() => (scrollSource.current = ScrollSource.EDITOR)}
|
|
/>
|
|
}
|
|
showRight={editorMode === EditorMode.PREVIEW || (editorMode === EditorMode.BOTH)}
|
|
right={
|
|
<ScrollingDocumentRenderPane
|
|
onFirstHeadingChange={onFirstHeadingChange}
|
|
onMakeScrollSource={() => {
|
|
scrollSource.current = ScrollSource.RENDERER
|
|
}}
|
|
onMetadataChange={onMetadataChange}
|
|
onScroll={onMarkdownRendererScroll}
|
|
onTaskCheckedChange={onTaskCheckedChange}
|
|
scrollState={scrollState.rendererScrollState}
|
|
wide={editorMode === EditorMode.PREVIEW}
|
|
/>
|
|
}
|
|
containerClassName={'overflow-hidden'}/>
|
|
</div>
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
export default Editor
|