tiptap/packages/extension-text-align/src/text-align.ts
Stanislav Volar 8d1af5fbe5
fix: parse only available configured text-align values (#5169)
---------

Co-authored-by: volar <stanislav.volar@petitpress.sk>
Co-authored-by: Nick Perez <nicholas.perez@tiptap.dev>
2024-05-30 17:09:44 +02:00

113 lines
2.9 KiB
TypeScript

import { Extension } from '@tiptap/core'
export interface TextAlignOptions {
/**
* The types where the text align attribute can be applied.
* @default []
* @example ['heading', 'paragraph']
*/
types: string[],
/**
* The alignments which are allowed.
* @default ['left', 'center', 'right', 'justify']
* @example ['left', 'right']
*/
alignments: string[],
/**
* The default alignment.
* @default 'left'
* @example 'center'
*/
defaultAlignment: string,
}
declare module '@tiptap/core' {
interface Commands<ReturnType> {
textAlign: {
/**
* Set the text align attribute
* @param alignment The alignment
* @example editor.commands.setTextAlign('left')
*/
setTextAlign: (alignment: string) => ReturnType,
/**
* Unset the text align attribute
* @example editor.commands.unsetTextAlign()
*/
unsetTextAlign: () => ReturnType,
}
}
}
/**
* This extension allows you to align text.
* @see https://www.tiptap.dev/api/extensions/text-align
*/
export const TextAlign = Extension.create<TextAlignOptions>({
name: 'textAlign',
addOptions() {
return {
types: [],
alignments: ['left', 'center', 'right', 'justify'],
defaultAlignment: 'left',
}
},
addGlobalAttributes() {
return [
{
types: this.options.types,
attributes: {
textAlign: {
default: this.options.defaultAlignment,
parseHTML: element => {
const alignment = element.style.textAlign || this.options.defaultAlignment
return this.options.alignments.includes(alignment) ? alignment : this.options.defaultAlignment
},
renderHTML: attributes => {
if (attributes.textAlign === this.options.defaultAlignment) {
return {}
}
return { style: `text-align: ${attributes.textAlign}` }
},
},
},
},
]
},
addCommands() {
return {
setTextAlign: (alignment: string) => ({ commands }) => {
if (!this.options.alignments.includes(alignment)) {
return false
}
return this.options.types
.map(type => commands.updateAttributes(type, { textAlign: alignment }))
.every(response => response)
},
unsetTextAlign: () => ({ commands }) => {
return this.options.types
.map(type => commands.resetAttributes(type, 'textAlign'))
.every(response => response)
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Shift-l': () => this.editor.commands.setTextAlign('left'),
'Mod-Shift-e': () => this.editor.commands.setTextAlign('center'),
'Mod-Shift-r': () => this.editor.commands.setTextAlign('right'),
'Mod-Shift-j': () => this.editor.commands.setTextAlign('justify'),
}
},
})