mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 11:09:01 +08:00
b941eea6da
* added JSDocs for almost all extensions * start adding commands jsdocs * add jsdocs for rest of extensions * add jsdocs for Extensions * add js docs for all extensions * add more jsdocs * add js docs for node spec definitions
64 lines
1.2 KiB
TypeScript
64 lines
1.2 KiB
TypeScript
import { mergeAttributes, Node } from '@tiptap/core'
|
|
|
|
export interface TableHeaderOptions {
|
|
/**
|
|
* The HTML attributes for a table header node.
|
|
* @default {}
|
|
* @example { class: 'foo' }
|
|
*/
|
|
HTMLAttributes: Record<string, any>,
|
|
}
|
|
|
|
/**
|
|
* This extension allows you to create table headers.
|
|
* @see https://www.tiptap.dev/api/nodes/table-header
|
|
*/
|
|
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]
|
|
},
|
|
|
|
})
|