mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-08 10:03:00 +08:00
64 lines
1.2 KiB
TypeScript
64 lines
1.2 KiB
TypeScript
import { mergeAttributes, Node } from '@tiptap/core'
|
|
|
|
export interface TableCellOptions {
|
|
/**
|
|
* The HTML attributes for a table cell node.
|
|
* @default {}
|
|
* @example { class: 'foo' }
|
|
*/
|
|
HTMLAttributes: Record<string, any>,
|
|
}
|
|
|
|
/**
|
|
* This extension allows you to create table cells.
|
|
* @see https://www.tiptap.dev/api/nodes/table-cell
|
|
*/
|
|
export const TableCell = Node.create<TableCellOptions>({
|
|
name: 'tableCell',
|
|
|
|
addOptions() {
|
|
return {
|
|
HTMLAttributes: {},
|
|
}
|
|
},
|
|
|
|
content: 'block+',
|
|
|
|
addAttributes() {
|
|
return {
|
|
colspan: {
|
|
default: 1,
|
|
},
|
|
rowspan: {
|
|
default: 1,
|
|
},
|
|
colwidth: {
|
|
default: null,
|
|
parseHTML: element => {
|
|
const colwidth = element.getAttribute('colwidth')
|
|
const value = colwidth
|
|
? colwidth.split(',').map(width => parseInt(width, 10))
|
|
: null
|
|
|
|
return value
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
tableRole: 'cell',
|
|
|
|
isolating: true,
|
|
|
|
parseHTML() {
|
|
return [
|
|
{ tag: 'td' },
|
|
]
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['td', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
},
|
|
|
|
})
|