-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): allow insertContentAt and insertContent text node arrays (#…
…3790) * fix(core): allow insertContentAt and insertContent to handle array of text nodes * fix(core): allow insertContent via json including a text content
- Loading branch information
Showing
4 changed files
with
122 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
context('/src/Commands/InsertContent/Vue/', () => { | ||
before(() => { | ||
cy.visit('/src/Commands/InsertContent/Vue/') | ||
}) | ||
|
||
beforeEach(() => { | ||
cy.get('.ProseMirror').then(([{ editor }]) => { | ||
editor.commands.clearContent() | ||
}) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
<template> | ||
<div v-if="editor"> | ||
<button @click="insertContentByString">Insert content by string</button> | ||
<button @click="insertContentByJSON">Insert content by JSON</button> | ||
<button @click="insertTextByJSON">Insert text by JSON</button> | ||
<button @click="insertTextByJSONArray">Insert text by JSON Array</button> | ||
</div> | ||
<editor-content :editor="editor" /> | ||
</template> | ||
|
||
<script> | ||
import Document from '@tiptap/extension-document' | ||
import Paragraph from '@tiptap/extension-paragraph' | ||
import Text from '@tiptap/extension-text' | ||
import { Editor, EditorContent } from '@tiptap/vue-3' | ||
export default { | ||
components: { | ||
EditorContent, | ||
}, | ||
data() { | ||
return { | ||
editor: null, | ||
} | ||
}, | ||
mounted() { | ||
this.editor = new Editor({ | ||
extensions: [ | ||
Document, | ||
Paragraph, | ||
Text, | ||
], | ||
content: ` | ||
<p> | ||
This is a radically reduced version of tiptap. It has support for a document, with paragraphs and text. That’s it. It’s probably too much for real minimalists though. | ||
</p> | ||
<p> | ||
The paragraph extension is not really required, but you need at least one node. Sure, that node can be something different. | ||
</p> | ||
`, | ||
}) | ||
}, | ||
beforeUnmount() { | ||
this.editor.destroy() | ||
}, | ||
methods: { | ||
insertContentByString() { | ||
this.editor.chain().focus().insertContent('<p>Hello World</p>').run() | ||
}, | ||
insertContentByJSON() { | ||
this.editor.chain().focus().insertContent({ | ||
type: 'paragraph', | ||
content: [ | ||
{ | ||
type: 'text', | ||
text: 'Hello', | ||
}, | ||
{ | ||
type: 'text', | ||
text: ' ', | ||
}, | ||
{ | ||
type: 'text', | ||
text: 'World', | ||
}, | ||
], | ||
}).run() | ||
}, | ||
insertTextByJSON() { | ||
this.editor.chain().focus().insertContent({ | ||
type: 'text', | ||
text: 'Hello World', | ||
}).run() | ||
}, | ||
insertTextByJSONArray() { | ||
this.editor.chain().focus().insertContent([{ | ||
type: 'text', | ||
text: 'Hello', | ||
}, { | ||
type: 'text', | ||
text: ' ', | ||
}, { | ||
type: 'text', | ||
text: 'World', | ||
}]).run() | ||
}, | ||
}, | ||
} | ||
</script> | ||
|
||
<style lang="scss"> | ||
/* Basic editor styles */ | ||
.ProseMirror { | ||
> * + * { | ||
margin-top: 0.75em; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters