mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-28 20:20:09 +08:00
95 lines
1.7 KiB
TypeScript
95 lines
1.7 KiB
TypeScript
import {
|
|
Command,
|
|
Mark,
|
|
markInputRule,
|
|
markPasteRule,
|
|
mergeAttributes,
|
|
} from '@tiptap/core'
|
|
|
|
export interface StrikeOptions {
|
|
HTMLAttributes: {
|
|
[key: string]: any
|
|
},
|
|
}
|
|
|
|
declare module '@tiptap/core' {
|
|
interface Commands {
|
|
setStrike: () => Command,
|
|
toggleStrike: () => Command,
|
|
unsetStrike: () => Command,
|
|
}
|
|
}
|
|
|
|
export const inputRegex = /(?:^|\s)((?:~~)((?:[^~]+))(?:~~))$/gm
|
|
export const pasteRegex = /(?:^|\s)((?:~~)((?:[^~]+))(?:~~))/gm
|
|
|
|
export const Strike = Mark.create({
|
|
name: 'strike',
|
|
|
|
defaultOptions: <StrikeOptions>{
|
|
HTMLAttributes: {},
|
|
},
|
|
|
|
parseHTML() {
|
|
return [
|
|
{
|
|
tag: 's',
|
|
},
|
|
{
|
|
tag: 'del',
|
|
},
|
|
{
|
|
tag: 'strike',
|
|
},
|
|
{
|
|
style: 'text-decoration=line-through',
|
|
},
|
|
]
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['s', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
},
|
|
|
|
addCommands() {
|
|
return {
|
|
/**
|
|
* Set a strike mark
|
|
*/
|
|
setStrike: () => ({ commands }) => {
|
|
return commands.setMark('strike')
|
|
},
|
|
/**
|
|
* Toggle a strike mark
|
|
*/
|
|
toggleStrike: () => ({ commands }) => {
|
|
return commands.toggleMark('strike')
|
|
},
|
|
/**
|
|
* Unset a strike mark
|
|
*/
|
|
unsetStrike: () => ({ commands }) => {
|
|
return commands.unsetMark('strike')
|
|
},
|
|
}
|
|
},
|
|
|
|
addKeyboardShortcuts() {
|
|
return {
|
|
'Mod-Shift-x': () => this.editor.commands.toggleStrike(),
|
|
}
|
|
},
|
|
|
|
addInputRules() {
|
|
return [
|
|
markInputRule(inputRegex, this.type),
|
|
]
|
|
},
|
|
|
|
addPasteRules() {
|
|
return [
|
|
markPasteRule(inputRegex, this.type),
|
|
]
|
|
},
|
|
})
|