add setNodeAttributes command

This commit is contained in:
Philipp Kühn
2020-10-23 17:19:12 +02:00
parent 5976d6083c
commit 9f908b2cbf
4 changed files with 47 additions and 8 deletions

View File

@@ -1,12 +1,12 @@
<template> <template>
<div v-if="editor"> <div v-if="editor">
<button @click="editor.chain().focus().setAttributes({ align: 'left' }).run()"> <button @click="editor.chain().focus().setNodeAttributes({ textAlign: 'left' }).run()">
left left
</button> </button>
<button @click="editor.chain().focus().setAttributes({ align: 'center' }).run()"> <button @click="editor.chain().focus().setNodeAttributes({ textAlign: 'center' }).run()">
center center
</button> </button>
<button @click="editor.chain().focus().setAttributes({ align: 'right' }).run()"> <button @click="editor.chain().focus().setNodeAttributes({ textAlign: 'right' }).run()">
right right
</button> </button>
<editor-content :editor="editor" /> <editor-content :editor="editor" />
@@ -18,6 +18,7 @@ import { Editor } from '@tiptap/core'
import { EditorContent } from '@tiptap/vue' import { EditorContent } from '@tiptap/vue'
import Document from '@tiptap/extension-document' import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph' import Paragraph from '@tiptap/extension-paragraph'
import Heading from '@tiptap/extension-heading'
import Text from '@tiptap/extension-text' import Text from '@tiptap/extension-text'
import TextAlign from '@tiptap/extension-text-align' import TextAlign from '@tiptap/extension-text-align'
@@ -38,11 +39,13 @@ export default {
Document(), Document(),
Paragraph(), Paragraph(),
Text(), Text(),
Heading(),
TextAlign(), TextAlign(),
], ],
content: ` content: `
<p>first paragraph</p> <h1>Heading</h1>
<p>second paragraph</p> <p style="text-align: center">first paragraph</p>
<p style="text-align: right">second paragraph</p>
`, `,
}) })
}, },

View File

@@ -10,6 +10,7 @@ export { RemoveMarks } from './removeMarks'
export { ScrollIntoView } from './scrollIntoView' export { ScrollIntoView } from './scrollIntoView'
export { SelectAll } from './selectAll' export { SelectAll } from './selectAll'
export { SelectParentNode } from './selectParentNode' export { SelectParentNode } from './selectParentNode'
export { SetNodeAttributes } from './setNodeAttributes'
export { SetBlockType } from './setBlockType' export { SetBlockType } from './setBlockType'
export { SetContent } from './setContent' export { SetContent } from './setContent'
export { SinkListItem } from './sinkListItem' export { SinkListItem } from './sinkListItem'

View File

@@ -0,0 +1,27 @@
import { Command } from '../Editor'
import { createExtension } from '../Extension'
export const SetNodeAttributes = createExtension({
addCommands() {
return {
setNodeAttributes: (attributes: {}): Command => ({ tr, state }) => {
const { selection } = tr
const { from, to } = selection
state.doc.nodesBetween(from, to, (node, pos) => {
if (!node.type.isText) {
tr.setNodeMarkup(pos, undefined, attributes)
}
})
return true
},
}
},
})
declare module '../Editor' {
interface AllExtensions {
SetNodeAttributes: typeof SetNodeAttributes,
}
}

View File

@@ -1,15 +1,23 @@
import { createExtension } from '@tiptap/core' import { createExtension } from '@tiptap/core'
type TextAlignOptions = {
types: string[],
}
const TextAlign = createExtension({ const TextAlign = createExtension({
defaultOptions: <TextAlignOptions>{
types: ['heading', 'paragraph'],
},
addGlobalAttributes() { addGlobalAttributes() {
return [ return [
{ {
types: ['paragraph'], types: this.options.types,
attributes: { attributes: {
align: { textAlign: {
default: 'left', default: 'left',
renderHTML: attributes => ({ renderHTML: attributes => ({
style: `text-align: ${attributes.align}`, style: `text-align: ${attributes.textAlign}`,
}), }),
}, },
}, },