tiptap/packages/extension-task-list/src/task-list.ts

58 lines
1017 B
TypeScript
Raw Normal View History

import { Command, Node, mergeAttributes } from '@tiptap/core'
2020-10-30 23:06:30 +08:00
2020-11-13 23:44:22 +08:00
export interface TaskListOptions {
HTMLAttributes: {
[key: string]: any
},
}
2021-02-10 16:59:35 +08:00
declare module '@tiptap/core' {
2021-02-17 01:39:37 +08:00
interface Commands {
2021-02-16 18:27:58 +08:00
taskList: {
/**
* Toggle a task list
*/
toggleTaskList: () => Command,
}
2021-02-10 16:59:35 +08:00
}
}
2021-02-11 01:25:08 +08:00
export const TaskList = Node.create<TaskListOptions>({
2020-11-05 21:51:34 +08:00
name: 'taskList',
2021-02-11 01:25:08 +08:00
defaultOptions: {
2020-11-13 23:44:22 +08:00
HTMLAttributes: {},
},
2020-11-02 22:18:03 +08:00
group: 'block list',
2020-11-04 03:57:09 +08:00
content: 'taskItem+',
parseHTML() {
return [
{
2020-11-05 21:51:34 +08:00
tag: 'ul[data-type="taskList"]',
priority: 51,
},
]
},
2020-11-13 23:07:20 +08:00
renderHTML({ HTMLAttributes }) {
return ['ul', mergeAttributes(HTMLAttributes, { 'data-type': 'taskList' }), 0]
},
addCommands() {
return {
2021-02-10 16:59:35 +08:00
toggleTaskList: () => ({ commands }) => {
2020-11-05 21:51:34 +08:00
return commands.toggleList('taskList', 'taskItem')
},
}
},
2020-11-19 08:16:10 +08:00
addKeyboardShortcuts() {
return {
'Mod-Shift-9': () => this.editor.commands.toggleTaskList(),
2020-11-19 08:16:10 +08:00
}
},
})