mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-24 01:17:50 +08:00
8c6751f0c6
* chore: add precommit hook for eslint fixes, fix linting issues * chore: add eslint import sort plugin
54 lines
951 B
TypeScript
54 lines
951 B
TypeScript
import { mergeAttributes, Node } from '@tiptap/core'
|
|
|
|
export interface TableHeaderOptions {
|
|
HTMLAttributes: Record<string, any>,
|
|
}
|
|
export const TableHeader = Node.create<TableHeaderOptions>({
|
|
name: 'tableHeader',
|
|
|
|
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: 'header_cell',
|
|
|
|
isolating: true,
|
|
|
|
parseHTML() {
|
|
return [
|
|
{ tag: 'th' },
|
|
]
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['th', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
},
|
|
|
|
})
|