2023-08-11 07:44:46 +08:00
|
|
|
import { mergeAttributes, Node } from '@tiptap/core'
|
2020-09-11 04:29:15 +08:00
|
|
|
|
2020-11-13 23:44:22 +08:00
|
|
|
export interface ListItemOptions {
|
2024-05-11 20:30:44 +08:00
|
|
|
/**
|
|
|
|
* The HTML attributes for a list item node.
|
|
|
|
* @default {}
|
|
|
|
* @example { class: 'foo' }
|
|
|
|
*/
|
2021-04-21 15:43:31 +08:00
|
|
|
HTMLAttributes: Record<string, any>,
|
2024-05-11 20:30:44 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The node type for bulletList nodes
|
|
|
|
* @default 'bulletList'
|
|
|
|
* @example 'myCustomBulletList'
|
|
|
|
*/
|
2023-08-03 16:19:32 +08:00
|
|
|
bulletListTypeName: string
|
2024-05-11 20:30:44 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The node type for orderedList nodes
|
|
|
|
* @default 'orderedList'
|
|
|
|
* @example 'myCustomOrderedList'
|
|
|
|
*/
|
2023-08-03 16:19:32 +08:00
|
|
|
orderedListTypeName: string
|
2020-11-13 23:44:22 +08:00
|
|
|
}
|
|
|
|
|
2024-05-11 20:30:44 +08:00
|
|
|
/**
|
|
|
|
* This extension allows you to create list items.
|
|
|
|
* @see https://www.tiptap.dev/api/nodes/list-item
|
|
|
|
*/
|
2021-02-11 01:25:08 +08:00
|
|
|
export const ListItem = Node.create<ListItemOptions>({
|
2020-11-04 03:57:09 +08:00
|
|
|
name: 'listItem',
|
2020-10-22 18:34:49 +08:00
|
|
|
|
2021-10-27 00:31:13 +08:00
|
|
|
addOptions() {
|
|
|
|
return {
|
|
|
|
HTMLAttributes: {},
|
2023-08-03 16:19:32 +08:00
|
|
|
bulletListTypeName: 'bulletList',
|
|
|
|
orderedListTypeName: 'orderedList',
|
2021-10-27 00:31:13 +08:00
|
|
|
}
|
2020-11-13 23:44:22 +08:00
|
|
|
},
|
|
|
|
|
2020-12-03 22:11:47 +08:00
|
|
|
content: 'paragraph block*',
|
2020-10-22 18:34:49 +08:00
|
|
|
|
|
|
|
defining: true,
|
|
|
|
|
|
|
|
parseHTML() {
|
|
|
|
return [
|
2020-10-30 20:19:06 +08:00
|
|
|
{
|
|
|
|
tag: 'li',
|
|
|
|
},
|
2020-10-22 18:34:49 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2020-11-13 23:07:20 +08:00
|
|
|
renderHTML({ HTMLAttributes }) {
|
2020-11-25 16:50:54 +08:00
|
|
|
return ['li', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
2020-10-22 18:34:49 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
addKeyboardShortcuts() {
|
|
|
|
return {
|
2021-12-02 21:56:57 +08:00
|
|
|
Enter: () => this.editor.commands.splitListItem(this.name),
|
|
|
|
Tab: () => this.editor.commands.sinkListItem(this.name),
|
|
|
|
'Shift-Tab': () => this.editor.commands.liftListItem(this.name),
|
2020-10-22 18:34:49 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|