tiptap/packages/extension-table-cell/src/table-cell.ts
2021-04-21 09:43:31 +02:00

55 lines
956 B
TypeScript

import { Node, mergeAttributes } from '@tiptap/core'
export interface TableCellOptions {
HTMLAttributes: Record<string, any>,
}
export const TableCell = Node.create<TableCellOptions>({
name: 'tableCell',
defaultOptions: {
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 {
colwidth: value,
}
},
},
}
},
tableRole: 'cell',
isolating: true,
parseHTML() {
return [
{ tag: 'td' },
]
},
renderHTML({ HTMLAttributes }) {
return ['td', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
})