mirror of https://github.com/fantasticit/think.git
tiptap: update the way to set default title
This commit is contained in:
parent
a03312b816
commit
3aa2f2013d
|
@ -8,7 +8,7 @@ import { prosemirrorJSONToYDoc } from 'tiptap/core/thritypart/y-prosemirror/y-pr
|
|||
import { markdownToProsemirror } from 'tiptap/markdown/markdown-to-prosemirror';
|
||||
import * as Y from 'yjs';
|
||||
|
||||
export const ImportEditor = ({ content, onChange, onError }) => {
|
||||
export const ImportEditor = ({ filename, content, onChange, onError }) => {
|
||||
const parsed = useRef(false);
|
||||
const ydoc = useMemo(() => new Y.Doc(), []);
|
||||
const editor = useEditor(
|
||||
|
@ -24,7 +24,12 @@ export const ImportEditor = ({ content, onChange, onError }) => {
|
|||
if (!content || !editor || !ydoc || parsed.current) return;
|
||||
|
||||
try {
|
||||
const prosemirrorNode = markdownToProsemirror({ schema: editor.schema, content, needTitle: true });
|
||||
const prosemirrorNode = markdownToProsemirror({
|
||||
schema: editor.schema,
|
||||
content,
|
||||
needTitle: true,
|
||||
defaultTitle: filename.replace(/\.md$/gi, ''),
|
||||
});
|
||||
|
||||
const title = prosemirrorNode.content[0].content[0].text;
|
||||
editor.commands.setContent(prosemirrorNode);
|
||||
|
@ -48,7 +53,7 @@ export const ImportEditor = ({ content, onChange, onError }) => {
|
|||
ydoc.destroy();
|
||||
editor.destroy();
|
||||
};
|
||||
}, [editor, ydoc, content, onChange, onError]);
|
||||
}, [editor, ydoc, filename, content, onChange, onError]);
|
||||
|
||||
return null;
|
||||
};
|
||||
|
|
|
@ -127,6 +127,7 @@ export const Import: React.FC<IProps> = ({ wikiId }) => {
|
|||
return (
|
||||
<ImportEditor
|
||||
key={filename}
|
||||
filename={filename}
|
||||
content={texts[filename]}
|
||||
onChange={onParsedFile(filename)}
|
||||
onError={onParsedFileError(filename)}
|
||||
|
|
|
@ -6,19 +6,27 @@ const renderer = new Renderer();
|
|||
* 将 HTML 转换成 prosemirror node
|
||||
* @param body
|
||||
* @param forceATitle 是否需要一个标题
|
||||
* @param defaultTitle 优先作为文档标题,否则默认读取一个 heading 或者 paragraph 的文字内容
|
||||
* @returns
|
||||
*/
|
||||
export const htmlToPromsemirror = (body, forceATitle = false) => {
|
||||
export const htmlToPromsemirror = (body, forceATitle = false, defaultTitle = '') => {
|
||||
const json = renderer.render(body);
|
||||
|
||||
// 设置标题
|
||||
if (forceATitle) {
|
||||
const firstNode = json.content[0];
|
||||
if (firstNode && firstNode.type !== 'title') {
|
||||
if (firstNode.type === 'heading' || firstNode.type === 'paragraph') {
|
||||
firstNode.type = 'title';
|
||||
}
|
||||
}
|
||||
const forceTitleNode = json.content.find((node) => {
|
||||
return node.type === 'heading' || node.type === 'paragraph';
|
||||
});
|
||||
|
||||
json.content.unshift({
|
||||
type: 'title',
|
||||
content: [
|
||||
{
|
||||
type: 'text',
|
||||
text: defaultTitle || forceTitleNode?.content[0]?.text.slice(0, 50),
|
||||
},
|
||||
],
|
||||
});
|
||||
}
|
||||
|
||||
const nodes = json.content;
|
||||
|
|
|
@ -25,7 +25,7 @@ const extractImage = (html) => {
|
|||
};
|
||||
|
||||
// 将 markdown 字符串转换为 ProseMirror JSONDocument
|
||||
export const markdownToProsemirror = ({ schema, content, needTitle }) => {
|
||||
export const markdownToProsemirror = ({ schema, content, needTitle, defaultTitle = '' }) => {
|
||||
const html = markdownToHTML(content);
|
||||
|
||||
if (!html) return null;
|
||||
|
@ -34,7 +34,7 @@ export const markdownToProsemirror = ({ schema, content, needTitle }) => {
|
|||
const { body } = parser.parseFromString(extractImage(html), 'text/html');
|
||||
|
||||
body.append(document.createComment(content));
|
||||
const node = htmlToPromsemirror(body, needTitle);
|
||||
const node = htmlToPromsemirror(body, needTitle, defaultTitle);
|
||||
|
||||
return node;
|
||||
};
|
||||
|
|
|
@ -248,7 +248,7 @@ importers:
|
|||
eslint: 8.14.0
|
||||
eslint-config-prettier: 8.5.0_eslint@8.14.0
|
||||
eslint-plugin-import: 2.26.0_eslint@8.14.0
|
||||
eslint-plugin-prettier: 4.0.0_740be41c8168d0cc214a306089357ad0
|
||||
eslint-plugin-prettier: 4.0.0_74ebb802163a9b4fa8f89d76ed02f62a
|
||||
eslint-plugin-react: 7.29.4_eslint@8.14.0
|
||||
eslint-plugin-react-hooks: 4.5.0_eslint@8.14.0
|
||||
eslint-plugin-simple-import-sort: 7.0.0_eslint@8.14.0
|
||||
|
@ -5605,6 +5605,22 @@ packages:
|
|||
prettier-linter-helpers: 1.0.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-prettier/4.0.0_74ebb802163a9b4fa8f89d76ed02f62a:
|
||||
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
peerDependencies:
|
||||
eslint: '>=7.28.0'
|
||||
eslint-config-prettier: '*'
|
||||
prettier: '>=2.0.0'
|
||||
peerDependenciesMeta:
|
||||
eslint-config-prettier:
|
||||
optional: true
|
||||
dependencies:
|
||||
eslint: 8.14.0
|
||||
eslint-config-prettier: 8.5.0_eslint@8.14.0
|
||||
prettier-linter-helpers: 1.0.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-react-hooks/4.5.0_eslint@8.14.0:
|
||||
resolution: {integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==}
|
||||
engines: {node: '>=10'}
|
||||
|
|
Loading…
Reference in New Issue