fix: issue with markdown(Vditor) (#5176)

* fix: markdown(Vditor)

* fix: bug

* fix: bug

* fix: bug
This commit is contained in:
Katherine 2024-09-04 10:32:40 +08:00 committed by GitHub
parent 703350884d
commit b8acdc1477
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 44 additions and 43 deletions

View File

@ -2,9 +2,7 @@
"version": "1.3.14-beta",
"npmClient": "yarn",
"useWorkspaces": true,
"npmClientArgs": [
"--ignore-engines"
],
"npmClientArgs": ["--ignore-engines"],
"command": {
"version": {
"forcePublish": true,

View File

@ -35,13 +35,12 @@ const getContentWidth = (element) => {
};
function DisplayInner(props: { value: string; style?: CSSProperties }) {
const containerRef = useRef<HTMLDivElement>();
const containerRef = useRef<HTMLDivElement>(null);
const { wrapSSR, componentCls, hashId } = useStyle();
const cdn = useCDN();
useEffect(() => {
if (!props.value) return;
Vditor.preview(containerRef.current, props.value, {
Vditor.preview(containerRef.current, props.value ?? '', {
mode: 'light',
cdn,
});
@ -67,7 +66,6 @@ export const Display = withDynamicSchemaProps((props) => {
const [text, setText] = useState('');
const elRef = useRef<HTMLDivElement>();
useEffect(() => {
if (!props.value || !field.value) return;
if (props.ellipsis) {
@ -125,6 +123,5 @@ export const Display = withDynamicSchemaProps((props) => {
</Popover>
);
}
return <DisplayInner value={value} />;
});

View File

@ -8,7 +8,7 @@
*/
import { useAPIClient, useApp, withDynamicSchemaProps } from '@nocobase/client';
import React, { useEffect, useLayoutEffect, useMemo, useRef } from 'react';
import React, { useEffect, useLayoutEffect, useMemo, useRef, useState } from 'react';
import Vditor from 'vditor';
import { defaultToolbar } from '../interfaces/markdown-vditor';
import { useCDN } from './const';
@ -19,10 +19,11 @@ const locales = ['en_US', 'fr_FR', 'pt_BR', 'ja_JP', 'ko_KR', 'ru_RU', 'sv_SE',
export const Edit = withDynamicSchemaProps((props) => {
const { disabled, onChange, value, fileCollection, toolbar } = props;
const [editorReady, setEditorReady] = useState(false);
const vdRef = useRef<Vditor>();
const vdFullscreen = useRef(false);
const containerRef = useRef<HTMLDivElement>();
const containerParentRef = useRef<HTMLDivElement>();
const containerRef = useRef<HTMLDivElement>(null);
const containerParentRef = useRef<HTMLDivElement>(null);
const app = useApp();
const apiClient = useAPIClient();
const cdn = useCDN();
@ -38,28 +39,24 @@ export const Edit = withDynamicSchemaProps((props) => {
}, [locale]);
useEffect(() => {
if (!containerRef.current) return;
const uploadFileCollection = fileCollection || 'attachments';
const toolbarConfig = toolbar ?? defaultToolbar;
const vditor = new Vditor(containerRef.current, {
value: value ?? '',
lang,
cache: {
enable: false,
},
cache: { enable: false },
undoDelay: 0,
preview: {
math: {
engine: 'KaTeX',
},
},
preview: { math: { engine: 'KaTeX' } },
toolbar: toolbarConfig,
fullscreen: {
index: 1200,
},
fullscreen: { index: 1200 },
cdn,
minHeight: 200,
after: () => {
vdRef.current = vditor;
setEditorReady(true); // Notify that the editor is ready
vditor.setValue(value ?? '');
if (disabled) {
vditor.disabled();
@ -92,6 +89,7 @@ export const Edit = withDynamicSchemaProps((props) => {
},
},
});
return () => {
vdRef.current?.destroy();
vdRef.current = undefined;
@ -99,34 +97,42 @@ export const Edit = withDynamicSchemaProps((props) => {
}, [fileCollection, toolbar?.join(',')]);
useEffect(() => {
if (value === vdRef?.current?.getValue()) {
return;
}
vdRef.current?.setValue(value);
vdRef.current?.focus();
// 移动光标到末尾
const preArea = containerRef.current.querySelector('div.vditor-content > div.vditor-ir > pre') as HTMLPreElement;
if (preArea) {
const range = document.createRange();
const selection = window.getSelection();
if (selection) {
range.selectNodeContents(preArea);
range.collapse(false); // 将光标移动到内容末尾
selection.removeAllRanges();
selection.addRange(range);
if (editorReady && vdRef.current) {
const editor = vdRef.current;
if (value !== editor.getValue()) {
editor.setValue(value ?? '');
// editor.focus();
const preArea = containerRef.current?.querySelector(
'div.vditor-content > div.vditor-ir > pre',
) as HTMLPreElement;
if (preArea) {
const range = document.createRange();
const selection = window.getSelection();
if (selection) {
range.selectNodeContents(preArea);
range.collapse(false); // Move cursor to the end
selection.removeAllRanges();
selection.addRange(range);
}
}
}
}
}, [value]);
}, [value, editorReady]);
useEffect(() => {
if (disabled) {
vdRef.current?.disabled();
} else {
vdRef.current?.enable();
if (editorReady && vdRef.current) {
if (disabled) {
vdRef.current.disabled();
} else {
vdRef.current.enable();
}
}
}, [disabled]);
}, [disabled, editorReady]);
useLayoutEffect(() => {
if (!containerRef.current) return;
const observer = new ResizeObserver((entries) => {
for (const entry of entries) {
const target = entry.target;