2021-01-22 07:16:58 +08:00
|
|
|
import { Node, mergeAttributes } from '@tiptap/core'
|
|
|
|
|
|
|
|
export interface TableHeaderOptions {
|
|
|
|
HTMLAttributes: {
|
|
|
|
[key: string]: any
|
|
|
|
},
|
|
|
|
}
|
|
|
|
export const TableHeader = Node.create({
|
2021-01-23 06:33:08 +08:00
|
|
|
name: 'tableHeader',
|
2021-01-22 07:16:58 +08:00
|
|
|
|
|
|
|
defaultOptions: <TableHeaderOptions>{
|
|
|
|
HTMLAttributes: {},
|
|
|
|
},
|
|
|
|
|
|
|
|
content: 'block+',
|
|
|
|
|
|
|
|
addAttributes() {
|
|
|
|
return {
|
|
|
|
colspan: {
|
|
|
|
default: 1,
|
|
|
|
},
|
|
|
|
rowspan: {
|
|
|
|
default: 1,
|
|
|
|
},
|
|
|
|
colwidth: {
|
|
|
|
default: null,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
tableRole: 'header_cell',
|
|
|
|
|
|
|
|
isolating: true,
|
|
|
|
|
|
|
|
parseHTML() {
|
|
|
|
return [{ tag: 'th' }]
|
|
|
|
},
|
|
|
|
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
|
|
return ['th', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
|
|
},
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
declare module '@tiptap/core' {
|
|
|
|
interface AllExtensions {
|
|
|
|
TableHeader: typeof TableHeader,
|
|
|
|
}
|
|
|
|
}
|