mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-05 07:19:32 +00:00
36 lines
749 B
TypeScript
36 lines
749 B
TypeScript
import { TaskItem } from '@tiptap/extension-task-item'
|
|
import { TaskList } from '@tiptap/extension-task-list'
|
|
|
|
import { getDataAttribute } from './utils'
|
|
|
|
export const TodoItemNode = TaskItem.extend({
|
|
name: 'todoItem',
|
|
|
|
addOptions () {
|
|
return {
|
|
nested: true,
|
|
HTMLAttributes: {},
|
|
taskListTypeName: 'todoList'
|
|
}
|
|
},
|
|
|
|
addAttributes () {
|
|
return {
|
|
...this.parent?.(),
|
|
todoid: getDataAttribute('todoid', { default: null, keepOnSplit: false }),
|
|
userid: getDataAttribute('userid', { default: null, keepOnSplit: false })
|
|
}
|
|
}
|
|
})
|
|
|
|
export const TodoListNode = TaskList.extend({
|
|
name: 'todoList',
|
|
|
|
addOptions () {
|
|
return {
|
|
itemTypeName: 'todoItem',
|
|
HTMLAttributes: {}
|
|
}
|
|
}
|
|
})
|