tiptap/packages/extension-text-align/src/text-align.ts

80 lines
2.0 KiB
TypeScript
Raw Normal View History

2021-06-05 03:56:29 +08:00
import { Extension } from '@tiptap/core'
2020-10-23 21:23:40 +08:00
export interface TextAlignOptions = {
2020-10-23 23:19:12 +08:00
types: string[],
2020-10-23 23:50:28 +08:00
alignments: string[],
defaultAlignment: string,
2020-10-23 23:19:12 +08:00
}
2021-02-10 16:59:35 +08:00
declare module '@tiptap/core' {
2021-06-05 03:56:29 +08:00
interface Commands<ReturnType> {
2021-02-16 18:27:58 +08:00
textAlign: {
/**
* Set the text align attribute
*/
2021-06-05 03:56:29 +08:00
setTextAlign: (alignment: string) => ReturnType,
2021-02-16 18:27:58 +08:00
/**
* Unset the text align attribute
*/
2021-06-05 03:56:29 +08:00
unsetTextAlign: () => ReturnType,
2021-02-16 18:27:58 +08:00
}
2021-02-10 16:59:35 +08:00
}
}
2021-02-11 01:25:08 +08:00
export const TextAlign = Extension.create<TextAlignOptions>({
2020-12-02 16:44:46 +08:00
name: 'textAlign',
2021-02-11 01:25:08 +08:00
defaultOptions: {
types: [],
2020-11-03 23:13:13 +08:00
alignments: ['left', 'center', 'right', 'justify'],
defaultAlignment: 'left',
2020-10-23 23:19:12 +08:00
},
2020-10-23 21:23:40 +08:00
addGlobalAttributes() {
return [
{
2020-10-23 23:19:12 +08:00
types: this.options.types,
2020-10-23 21:23:40 +08:00
attributes: {
2020-10-23 23:19:12 +08:00
textAlign: {
default: this.options.defaultAlignment,
2021-05-11 23:15:23 +08:00
parseHTML: element => ({
textAlign: element.style.textAlign || this.options.defaultAlignment,
}),
renderHTML: attributes => {
if (attributes.textAlign === this.options.defaultAlignment) {
return {}
}
2021-05-11 23:05:13 +08:00
return { style: `text-align: ${attributes.textAlign}` }
},
2020-10-23 21:23:40 +08:00
},
},
},
]
},
2020-10-23 23:50:28 +08:00
addCommands() {
return {
2021-02-10 16:59:35 +08:00
setTextAlign: (alignment: string) => ({ commands }) => {
2020-10-23 23:50:28 +08:00
if (!this.options.alignments.includes(alignment)) {
return false
}
return this.options.types.every(type => commands.updateAttributes(type, { textAlign: alignment }))
2020-10-23 23:50:28 +08:00
},
2021-02-10 16:59:35 +08:00
unsetTextAlign: () => ({ commands }) => {
return this.options.types.every(type => commands.resetAttributes(type, 'textAlign'))
2020-11-18 19:34:06 +08:00
},
2020-10-23 23:50:28 +08:00
}
},
addKeyboardShortcuts() {
return {
2020-11-19 08:16:10 +08:00
'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'),
}
},
2020-10-23 21:23:40 +08:00
})