mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-20 06:37:49 +08:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import { Command, createExtension } from '@tiptap/core'
|
|
|
|
type TextAlignOptions = {
|
|
types: string[],
|
|
alignments: string[],
|
|
defaultAlignment: string,
|
|
}
|
|
|
|
const TextAlign = createExtension({
|
|
defaultOptions: <TextAlignOptions>{
|
|
types: ['heading', 'paragraph'],
|
|
alignments: ['left', 'center', 'right'],
|
|
defaultAlignment: 'left',
|
|
},
|
|
|
|
addGlobalAttributes() {
|
|
return [
|
|
{
|
|
types: this.options.types,
|
|
attributes: {
|
|
textAlign: {
|
|
default: this.options.defaultAlignment,
|
|
renderHTML: attributes => ({
|
|
style: `text-align: ${attributes.textAlign}`,
|
|
}),
|
|
parseHTML: element => ({
|
|
textAlign: element.style.textAlign || this.options.defaultAlignment,
|
|
}),
|
|
},
|
|
},
|
|
},
|
|
]
|
|
},
|
|
|
|
addCommands() {
|
|
return {
|
|
textAlign: (alignment: string): Command => ({ commands }) => {
|
|
if (!this.options.alignments.includes(alignment)) {
|
|
return false
|
|
}
|
|
|
|
return commands.setNodeAttributes({ textAlign: alignment })
|
|
},
|
|
}
|
|
},
|
|
})
|
|
|
|
export default TextAlign
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface AllExtensions {
|
|
TextAlign: typeof TextAlign,
|
|
}
|
|
}
|