Files
tiptap/packages/extension-task-list/src/task-list.ts
2021-06-04 21:56:29 +02:00

56 lines
1014 B
TypeScript

import { Node, mergeAttributes } from '@tiptap/core'
export interface TaskListOptions {
HTMLAttributes: Record<string, any>,
}
declare module '@tiptap/core' {
interface Commands<ReturnType> {
taskList: {
/**
* Toggle a task list
*/
toggleTaskList: () => ReturnType,
}
}
}
export const TaskList = Node.create<TaskListOptions>({
name: 'taskList',
defaultOptions: {
HTMLAttributes: {},
},
group: 'block list',
content: 'taskItem+',
parseHTML() {
return [
{
tag: 'ul[data-type="taskList"]',
priority: 51,
},
]
},
renderHTML({ HTMLAttributes }) {
return ['ul', mergeAttributes(HTMLAttributes, { 'data-type': 'taskList' }), 0]
},
addCommands() {
return {
toggleTaskList: () => ({ commands }) => {
return commands.toggleList('taskList', 'taskItem')
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Shift-9': () => this.editor.commands.toggleTaskList(),
}
},
})