tiptap/packages/extension-table/src/table.ts

249 lines
6.4 KiB
TypeScript
Raw Normal View History

2021-01-25 06:28:51 +08:00
import {
Command,
Node,
mergeAttributes,
isCellSelection,
findParentNodeClosestToPos,
} from '@tiptap/core'
import {
tableEditing,
columnResizing,
goToNextCell,
addColumnBefore,
addColumnAfter,
deleteColumn,
addRowBefore,
addRowAfter,
deleteRow,
deleteTable,
mergeCells,
splitCell,
toggleHeaderColumn,
toggleHeaderRow,
toggleHeaderCell,
setCellAttr,
fixTables,
} from 'prosemirror-tables'
2021-01-23 20:11:22 +08:00
import { NodeView } from 'prosemirror-view'
2021-01-23 05:37:43 +08:00
import { TextSelection } from 'prosemirror-state'
import { createTable } from './utilities/createTable'
import { TableView } from './TableView'
2021-01-21 06:53:53 +08:00
export interface TableOptions {
HTMLAttributes: {
[key: string]: any
},
resizable: boolean,
2021-01-23 06:45:50 +08:00
handleWidth: number,
cellMinWidth: number,
2021-01-23 20:11:22 +08:00
View: NodeView,
2021-01-23 06:45:50 +08:00
lastColumnResizable: boolean,
allowTableNodeSelection: boolean,
2021-01-21 06:53:53 +08:00
}
2021-01-21 06:42:01 +08:00
2021-02-10 16:59:35 +08:00
declare module '@tiptap/core' {
interface Commands {
insertTable: (options?: { rows?: number, cols?: number, withHeaderRow?: boolean }) => Command,
addColumnBefore: () => Command,
addColumnAfter: () => Command,
deleteColumn: () => Command,
addRowBefore: () => Command,
addRowAfter: () => Command,
deleteRow: () => Command,
deleteTable: () => Command,
mergeCells: () => Command,
splitCell: () => Command,
toggleHeaderColumn: () => Command,
toggleHeaderRow: () => Command,
toggleHeaderCell: () => Command,
mergeOrSplit: () => Command,
setCellAttribute: (name: string, value: any) => Command,
goToNextCell: () => Command,
goToPreviousCell: () => Command,
fixTables: () => Command,
}
}
2021-01-21 06:42:01 +08:00
export const Table = Node.create({
name: 'table',
2021-01-21 06:53:53 +08:00
defaultOptions: <TableOptions>{
HTMLAttributes: {},
resizable: false,
2021-01-23 06:45:50 +08:00
handleWidth: 5,
cellMinWidth: 25,
View: TableView,
lastColumnResizable: true,
allowTableNodeSelection: false,
2021-01-21 06:53:53 +08:00
},
content: 'tableRow+',
2021-01-21 06:53:53 +08:00
tableRole: 'table',
2021-01-21 06:53:53 +08:00
isolating: true,
group: 'block',
parseHTML() {
2021-01-24 05:48:34 +08:00
return [
{ tag: 'table' },
]
2021-01-21 06:53:53 +08:00
},
renderHTML({ HTMLAttributes }) {
return ['table', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), ['tbody', 0]]
},
addCommands() {
return {
2021-02-10 16:59:35 +08:00
insertTable: ({ rows = 3, cols = 3, withHeaderRow = true } = {}) => ({ tr, dispatch, editor }) => {
const node = createTable(editor.schema, rows, cols, withHeaderRow)
2021-01-23 20:11:22 +08:00
if (dispatch) {
2021-01-27 01:18:45 +08:00
const offset = tr.selection.anchor + 1
2021-01-24 05:48:34 +08:00
tr.replaceSelectionWith(node)
.scrollIntoView()
.setSelection(TextSelection.near(tr.doc.resolve(offset)))
2021-01-23 20:11:22 +08:00
}
2021-01-23 20:11:22 +08:00
return true
2021-01-23 05:37:43 +08:00
},
2021-02-10 16:59:35 +08:00
addColumnBefore: () => ({ state, dispatch }) => {
return addColumnBefore(state, dispatch)
},
2021-02-10 16:59:35 +08:00
addColumnAfter: () => ({ state, dispatch }) => {
return addColumnAfter(state, dispatch)
},
2021-02-10 16:59:35 +08:00
deleteColumn: () => ({ state, dispatch }) => {
return deleteColumn(state, dispatch)
},
2021-02-10 16:59:35 +08:00
addRowBefore: () => ({ state, dispatch }) => {
return addRowBefore(state, dispatch)
},
2021-02-10 16:59:35 +08:00
addRowAfter: () => ({ state, dispatch }) => {
return addRowAfter(state, dispatch)
},
2021-02-10 16:59:35 +08:00
deleteRow: () => ({ state, dispatch }) => {
return deleteRow(state, dispatch)
},
2021-02-10 16:59:35 +08:00
deleteTable: () => ({ state, dispatch }) => {
return deleteTable(state, dispatch)
},
2021-02-10 16:59:35 +08:00
mergeCells: () => ({ state, dispatch }) => {
return mergeCells(state, dispatch)
},
2021-02-10 16:59:35 +08:00
splitCell: () => ({ state, dispatch }) => {
return splitCell(state, dispatch)
},
2021-02-10 16:59:35 +08:00
toggleHeaderColumn: () => ({ state, dispatch }) => {
return toggleHeaderColumn(state, dispatch)
},
2021-02-10 16:59:35 +08:00
toggleHeaderRow: () => ({ state, dispatch }) => {
return toggleHeaderRow(state, dispatch)
},
2021-02-10 16:59:35 +08:00
toggleHeaderCell: () => ({ state, dispatch }) => {
return toggleHeaderCell(state, dispatch)
},
2021-02-10 16:59:35 +08:00
mergeOrSplit: () => ({ state, dispatch }) => {
2021-01-23 06:45:50 +08:00
if (mergeCells(state, dispatch)) {
return true
}
2021-01-23 06:45:50 +08:00
return splitCell(state, dispatch)
},
2021-02-10 16:59:35 +08:00
setCellAttribute: (name, value) => ({ state, dispatch }) => {
return setCellAttr(name, value)(state, dispatch)
},
2021-02-10 16:59:35 +08:00
goToNextCell: () => ({ state, dispatch }) => {
return goToNextCell(1)(state, dispatch)
},
2021-02-10 16:59:35 +08:00
goToPreviousCell: () => ({ state, dispatch }) => {
return goToNextCell(-1)(state, dispatch)
},
2021-02-10 16:59:35 +08:00
fixTables: () => ({ state, dispatch }) => {
2021-01-24 05:26:35 +08:00
if (dispatch) {
fixTables(state)
2021-01-23 06:45:50 +08:00
}
2021-01-24 05:26:35 +08:00
return true
2021-01-23 06:45:50 +08:00
},
}
},
addKeyboardShortcuts() {
2021-01-25 06:28:51 +08:00
const deleteTableWhenAllCellsSelected = () => {
const { selection } = this.editor.state
if (!isCellSelection(selection)) {
return false
}
let cellCount = 0
const table = findParentNodeClosestToPos(selection.ranges[0].$from, node => {
return node.type.name === 'table'
})
table?.node.descendants(node => {
if (node.type.name === 'table') {
return false
}
if (['tableCell', 'tableHeader'].includes(node.type.name)) {
cellCount += 1
}
})
const allCellsSelected = cellCount === selection.ranges.length
if (!allCellsSelected) {
return false
}
this.editor.commands.deleteTable()
return true
}
return {
Tab: () => {
if (this.editor.commands.goToNextCell()) {
return true
}
2021-01-23 07:32:43 +08:00
if (!this.editor.can().addRowAfter()) {
return false
}
2021-01-23 07:32:43 +08:00
return this.editor
.chain()
.addRowAfter()
.goToNextCell()
.run()
},
'Shift-Tab': () => this.editor.commands.goToPreviousCell(),
2021-01-25 06:28:51 +08:00
Backspace: deleteTableWhenAllCellsSelected,
'Mod-Backspace': deleteTableWhenAllCellsSelected,
Delete: deleteTableWhenAllCellsSelected,
'Mod-Delete': deleteTableWhenAllCellsSelected,
}
},
addProseMirrorPlugins() {
return [
2021-01-23 06:45:50 +08:00
...(this.options.resizable ? [columnResizing({
handleWidth: this.options.handleWidth,
cellMinWidth: this.options.cellMinWidth,
View: this.options.View,
2021-01-24 03:59:19 +08:00
// TODO: PR for @types/prosemirror-tables
// @ts-ignore (incorrect type)
lastColumnResizable: this.options.lastColumnResizable,
2021-01-23 06:45:50 +08:00
})] : []),
2021-01-23 20:11:22 +08:00
tableEditing({
allowTableNodeSelection: this.options.allowTableNodeSelection,
}),
]
},
2021-01-21 06:42:01 +08:00
})