2020-10-02 21:28:00 +08:00
|
|
|
import {
|
|
|
|
Command, Mark,
|
|
|
|
} from '@tiptap/core'
|
|
|
|
|
|
|
|
export type HighlightCommand = () => Command
|
|
|
|
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
|
|
interface Commands {
|
|
|
|
highlight: HighlightCommand,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default new Mark()
|
|
|
|
.name('highlight')
|
|
|
|
.schema(() => ({
|
2020-10-03 03:39:16 +08:00
|
|
|
attrs: {
|
|
|
|
color: {
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
},
|
2020-10-02 21:28:00 +08:00
|
|
|
parseDOM: [
|
|
|
|
{
|
|
|
|
tag: 'mark',
|
2020-10-03 03:39:16 +08:00
|
|
|
getAttrs: node => {
|
|
|
|
return {
|
|
|
|
color: (node as HTMLElement).style.backgroundColor,
|
|
|
|
}
|
|
|
|
},
|
2020-10-02 21:28:00 +08:00
|
|
|
},
|
|
|
|
],
|
2020-10-03 03:39:16 +08:00
|
|
|
toDOM: node => ['mark', {
|
|
|
|
...node.attrs,
|
|
|
|
style: node.attrs.color && `background-color: ${node.attrs.color};`,
|
|
|
|
}, 0],
|
2020-10-02 21:28:00 +08:00
|
|
|
}))
|
|
|
|
.commands(({ name }) => ({
|
2020-10-05 22:17:31 +08:00
|
|
|
highlight: attrs => ({ commands }) => {
|
|
|
|
return commands.toggleMark(name, attrs)
|
2020-10-02 21:28:00 +08:00
|
|
|
},
|
|
|
|
}))
|
|
|
|
.keys(({ editor }) => ({
|
|
|
|
'Mod-e': () => editor.highlight(),
|
|
|
|
}))
|
|
|
|
.create()
|