tiptap/packages/extension-table-header/src/table-header.ts
2021-03-28 20:19:17 +02:00

56 lines
979 B
TypeScript

import { Node, mergeAttributes } from '@tiptap/core'
export interface TableHeaderOptions {
HTMLAttributes: {
[key: string]: any
},
}
export const TableHeader = Node.create<TableHeaderOptions>({
name: 'tableHeader',
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: 'header_cell',
isolating: true,
parseHTML() {
return [
{ tag: 'th' },
]
},
renderHTML({ HTMLAttributes }) {
return ['th', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
})