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

56 lines
987 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' {
interface Commands {
2021-02-11 01:05:02 +08:00
/**
* Toggle a task list
*/
2021-02-10 16:59:35 +08:00
toggleTaskList: () => Command,
}
}
2020-12-08 04:32:50 +08:00
export const TaskList = Node.create({
2020-11-05 21:51:34 +08:00
name: 'taskList',
2020-11-13 23:44:22 +08:00
defaultOptions: <TaskListOptions>{
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-l': () => this.editor.commands.toggleTaskList(),
}
},
})