mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-26 18:57:50 +08:00
9afadeb7fe
* add new addOptions option * replace defaultOptions with addOptions for all extensions * replace defaultOptions with addOptions for all demos * replace defaultOptions with addOptions in docs * refactoring * refactoring * drop object support for addOptions * fix optional options * fix tests
55 lines
937 B
TypeScript
55 lines
937 B
TypeScript
import { Node, mergeAttributes } from '@tiptap/core'
|
|
|
|
export interface TableCellOptions {
|
|
HTMLAttributes: Record<string, any>,
|
|
}
|
|
|
|
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
|
|
? [parseInt(colwidth, 10)]
|
|
: null
|
|
|
|
return value
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
tableRole: 'cell',
|
|
|
|
isolating: true,
|
|
|
|
parseHTML() {
|
|
return [
|
|
{ tag: 'td' },
|
|
]
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['td', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
},
|
|
|
|
})
|