* Header toggling, resizable columns * Allow all blocks in table cells, disable column resizing in read-only * Fixed dynamic scroll shadows * Refactor, scroll styling * fix scrolling, tweaks * fix: Table layout lost on sort * fix: Caching of grip decorators * refactor * stash * fix first render shadows * stash * First add column grip, styles * Just add column/row click handlers left * fix: isTableSelected for single cell table * Refactor mousedown handlers * fix: 'Add row before' command missing on first row * fix overflow on rhs * fix: Error clicking column grip when menu is open * Hide table controls when printing * Restore table header background * fix: Header behavior when adding columns and rows at the edges * Tweak header styling * fix: Serialize and parsing of column attributes when copy/pasting fix: Column width is lost when changing column alignment
150 lines
4.3 KiB
TypeScript
150 lines
4.3 KiB
TypeScript
import Token from "markdown-it/lib/token";
|
|
import { NodeSpec } from "prosemirror-model";
|
|
import { Plugin } from "prosemirror-state";
|
|
import { DecorationSet, Decoration, EditorView } from "prosemirror-view";
|
|
import { addColumnBefore, selectColumn } from "../commands/table";
|
|
import { getCellAttrs, setCellAttrs } from "../lib/table";
|
|
import { getCellsInRow, isColumnSelected } from "../queries/table";
|
|
import { EditorStyleHelper } from "../styles/EditorStyleHelper";
|
|
import { cn } from "../styles/utils";
|
|
import Node from "./Node";
|
|
|
|
export default class TableHeader extends Node {
|
|
get name() {
|
|
return "th";
|
|
}
|
|
|
|
get schema(): NodeSpec {
|
|
return {
|
|
content: "block+",
|
|
tableRole: "header_cell",
|
|
isolating: true,
|
|
parseDOM: [{ tag: "th", getAttrs: getCellAttrs }],
|
|
toDOM(node) {
|
|
return ["th", setCellAttrs(node), 0];
|
|
},
|
|
attrs: {
|
|
colspan: { default: 1 },
|
|
rowspan: { default: 1 },
|
|
alignment: { default: null },
|
|
colwidth: { default: null },
|
|
},
|
|
};
|
|
}
|
|
|
|
toMarkdown() {
|
|
// see: renderTable
|
|
}
|
|
|
|
parseMarkdown() {
|
|
return {
|
|
block: "th",
|
|
getAttrs: (tok: Token) => ({ alignment: tok.info }),
|
|
};
|
|
}
|
|
|
|
get plugins() {
|
|
function buildAddColumnDecoration(pos: number, index: number) {
|
|
const className = cn(EditorStyleHelper.tableAddColumn, {
|
|
first: index === 0,
|
|
});
|
|
|
|
return Decoration.widget(
|
|
pos + 1,
|
|
() => {
|
|
const plus = document.createElement("a");
|
|
plus.role = "button";
|
|
plus.className = className;
|
|
plus.dataset.index = index.toString();
|
|
return plus;
|
|
},
|
|
{
|
|
key: cn(className, index),
|
|
}
|
|
);
|
|
}
|
|
|
|
return [
|
|
new Plugin({
|
|
props: {
|
|
handleDOMEvents: {
|
|
mousedown: (view: EditorView, event: MouseEvent) => {
|
|
if (!(event.target instanceof HTMLElement)) {
|
|
return false;
|
|
}
|
|
|
|
const targetAddColumn = event.target.closest(
|
|
`.${EditorStyleHelper.tableAddColumn}`
|
|
);
|
|
if (targetAddColumn) {
|
|
event.preventDefault();
|
|
event.stopImmediatePropagation();
|
|
const index = Number(
|
|
targetAddColumn.getAttribute("data-index")
|
|
);
|
|
addColumnBefore({ index })(view.state, view.dispatch);
|
|
return true;
|
|
}
|
|
|
|
const targetGripColumn = event.target.closest(
|
|
`.${EditorStyleHelper.tableGripColumn}`
|
|
);
|
|
if (targetGripColumn) {
|
|
event.preventDefault();
|
|
event.stopImmediatePropagation();
|
|
|
|
selectColumn(
|
|
Number(targetGripColumn.getAttribute("data-index")),
|
|
event.metaKey || event.shiftKey
|
|
)(view.state, view.dispatch);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
},
|
|
},
|
|
decorations: (state) => {
|
|
const { doc } = state;
|
|
const decorations: Decoration[] = [];
|
|
const cols = getCellsInRow(0)(state);
|
|
|
|
if (cols) {
|
|
cols.forEach((pos, index) => {
|
|
const className = cn(EditorStyleHelper.tableGripColumn, {
|
|
selected: isColumnSelected(index)(state),
|
|
first: index === 0,
|
|
last: index === cols.length - 1,
|
|
});
|
|
|
|
decorations.push(
|
|
Decoration.widget(
|
|
pos + 1,
|
|
() => {
|
|
const grip = document.createElement("a");
|
|
grip.role = "button";
|
|
grip.className = className;
|
|
grip.dataset.index = index.toString();
|
|
return grip;
|
|
},
|
|
{
|
|
key: cn(className, index),
|
|
}
|
|
)
|
|
);
|
|
|
|
if (index === 0) {
|
|
decorations.push(buildAddColumnDecoration(pos, index));
|
|
}
|
|
|
|
decorations.push(buildAddColumnDecoration(pos, index + 1));
|
|
});
|
|
}
|
|
|
|
return DecorationSet.create(doc, decorations);
|
|
},
|
|
},
|
|
}),
|
|
];
|
|
}
|
|
}
|