tiptap/packages/extension-highlight/index.ts

68 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-10-02 21:28:00 +08:00
import {
Command, createMark,
2020-10-02 21:28:00 +08:00
} from '@tiptap/core'
export interface HighlightOptions {
color: string,
2020-10-02 21:28:00 +08:00
}
const Highlight = createMark({
name: 'highlight',
addAttributes() {
return {
2020-10-03 03:39:16 +08:00
color: {
default: null,
parseHTML: element => {
2020-10-03 03:39:16 +08:00
return {
color: element.style.backgroundColor,
}
},
renderHTML: attributes => {
if (!attributes.color) {
return {}
}
return {
style: `background-color: ${attributes.color}`,
2020-10-03 03:39:16 +08:00
}
},
2020-10-02 21:28:00 +08:00
},
}
},
parseHTML() {
return [
{
tag: 'mark',
},
]
},
renderHTML({ attributes }) {
return ['mark', attributes, 0]
},
addCommands() {
return {
highlight: (attrs?: HighlightOptions): Command => ({ commands }) => {
return commands.toggleMark('highlight')
},
}
},
addKeyboardShortcuts() {
return {
'Mod-e': () => this.editor.highlight(),
}
},
})
export default Highlight
declare module '@tiptap/core/src/Editor' {
interface AllExtensions {
Highlight: typeof Highlight,
}
}