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

58 lines
1021 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
},
}
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 {
2020-11-13 22:08:30 +08:00
/**
* Toggle a task list
*/
2020-11-18 18:35:28 +08:00
toggleTaskList: (): Command => ({ 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(),
}
},
})
export default TaskList
declare module '@tiptap/core' {
interface AllExtensions {
TaskList: typeof TaskList,
}
}