REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 2.46 KB
Close
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/@tiptap/extension-table/src/TableView.ts
Text
Base64
// @ts-nocheck import { Node as ProseMirrorNode } from '@tiptap/pm/model' import { NodeView } from '@tiptap/pm/view' export function updateColumns( node: ProseMirrorNode, colgroup: Element, table: Element, cellMinWidth: number, overrideCol?: number, overrideValue?: any, ) { let totalWidth = 0 let fixedWidth = true let nextDOM = colgroup.firstChild const row = node.firstChild for (let i = 0, col = 0; i < row.childCount; i += 1) { const { colspan, colwidth } = row.child(i).attrs for (let j = 0; j < colspan; j += 1, col += 1) { const hasWidth = overrideCol === col ? overrideValue : colwidth && colwidth[j] const cssWidth = hasWidth ? `${hasWidth}px` : '' totalWidth += hasWidth || cellMinWidth if (!hasWidth) { fixedWidth = false } if (!nextDOM) { colgroup.appendChild(document.createElement('col')).style.width = cssWidth } else { if (nextDOM.style.width !== cssWidth) { nextDOM.style.width = cssWidth } nextDOM = nextDOM.nextSibling } } } while (nextDOM) { const after = nextDOM.nextSibling nextDOM.parentNode.removeChild(nextDOM) nextDOM = after } if (fixedWidth) { table.style.width = `${totalWidth}px` table.style.minWidth = '' } else { table.style.width = '' table.style.minWidth = `${totalWidth}px` } } export class TableView implements NodeView { node: ProseMirrorNode cellMinWidth: number dom: Element table: Element colgroup: Element contentDOM: Element constructor(node: ProseMirrorNode, cellMinWidth: number) { this.node = node this.cellMinWidth = cellMinWidth this.dom = document.createElement('div') this.dom.className = 'tableWrapper' this.table = this.dom.appendChild(document.createElement('table')) this.colgroup = this.table.appendChild(document.createElement('colgroup')) updateColumns(node, this.colgroup, this.table, cellMinWidth) this.contentDOM = this.table.appendChild(document.createElement('tbody')) } update(node: ProseMirrorNode) { if (node.type !== this.node.type) { return false } this.node = node updateColumns(node, this.colgroup, this.table, this.cellMinWidth) return true } ignoreMutation(mutation: MutationRecord | { type: 'selection'; target: Element }) { return ( mutation.type === 'attributes' && (mutation.target === this.table || this.colgroup.contains(mutation.target)) ) } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 1 × Files: 3
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
utilities
DIR
-
drwxr-xr-x
2026-02-28 00:28:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
index.ts
128 B
lrw-r--r--
2026-02-28 00:28:32
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
table.ts
7.18 KB
lrw-r--r--
2026-02-28 00:28:38
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
TableView.ts
2.46 KB
lrw-r--r--
2026-02-28 00:28:42
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).