@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
104 lines (92 loc) • 5.28 kB
JavaScript
import { Fragment, Slice } from '@atlaskit/editor-prosemirror/model';
import { TextSelection } from '@atlaskit/editor-prosemirror/state';
import { findParentNodeOfType, findParentNodeOfTypeClosestToPos, safeInsert } from '@atlaskit/editor-prosemirror/utils';
import { isListNode } from './list';
// Taken from `editor-plugin-content-insertion`
function setSelectionToValidTextNode(tr, node, from) {
const sliceInserted = Slice.maxOpen(Fragment.from(node));
const openPosition = Math.min(from + (node.isAtom ? node.nodeSize : sliceInserted.openStart), tr.doc.content.size);
const FORWARD_DIRECTION = 1;
const nextSelection = TextSelection.findFrom(tr.doc.resolve(openPosition), FORWARD_DIRECTION, true);
if (nextSelection) {
return tr.setSelection(nextSelection);
}
}
export function transformNodeIntoListItem(tr, node) {
var _tr$doc$nodeAt;
const {
$to,
$from,
to,
from
} = tr.selection;
const {
orderedList,
bulletList,
listItem
} = tr.doc.type.schema.nodes;
const startLinePosition = $from.start();
const parentStartPosition = $from.depth === 0 ? 0 : $from.before();
// Setting the start position
const startMapped = startLinePosition === from ? parentStartPosition : from;
// Selected nodes
const selectionParentListItemNode = findParentNodeOfType(listItem)(tr.selection);
const selectionParentListNodeWithPos = findParentNodeOfType([bulletList, orderedList])(tr.selection);
const selectionParentListNode = selectionParentListNodeWithPos === null || selectionParentListNodeWithPos === void 0 ? void 0 : selectionParentListNodeWithPos.node;
if (!selectionParentListNodeWithPos) {
return tr;
}
// Offsets
const listWrappingOffset = $to.depth - selectionParentListNodeWithPos.depth + 1; // difference in depth between to position and list node
const listItemWrappingOffset = $to.depth - selectionParentListNodeWithPos.depth; // difference in depth between to position and list item node
// Anything to do with nested lists should safeInsert and not be handled here
const grandParentListNode = findParentNodeOfTypeClosestToPos(tr.doc.resolve(selectionParentListNodeWithPos.pos), [bulletList, orderedList]);
const selectionIsInNestedList = !!grandParentListNode;
let selectedListItemHasNestedList = false;
selectionParentListItemNode === null || selectionParentListItemNode === void 0 ? void 0 : selectionParentListItemNode.node.content.forEach(child => {
if (isListNode(child)) {
selectedListItemHasNestedList = true;
}
});
if (selectedListItemHasNestedList || selectionIsInNestedList) {
return safeInsert(node)(tr).scrollIntoView();
}
// Check if node after the insert position is listItem
const isNodeAfterInsertPositionIsListItem = ((_tr$doc$nodeAt = tr.doc.nodeAt(to + listItemWrappingOffset)) === null || _tr$doc$nodeAt === void 0 ? void 0 : _tr$doc$nodeAt.type) === listItem;
let replaceTo;
if (isNodeAfterInsertPositionIsListItem) {
replaceTo = to + listItemWrappingOffset;
} else if (!isNodeAfterInsertPositionIsListItem) {
replaceTo = to;
} else {
replaceTo = to + listWrappingOffset;
}
// handle the insertion of the slice
tr.replaceWith(startMapped, replaceTo, node).scrollIntoView();
// Get the next list items position (used later to find the split out ordered list)
const indexOfNextListItem = $to.indexAfter($to.depth - listItemWrappingOffset);
const positionOfNextListItem = tr.doc.resolve(selectionParentListNodeWithPos.pos + 1).posAtIndex(indexOfNextListItem);
// Place the selection at the replaced location
setSelectionToValidTextNode(tr, node, from);
// Find the ordered list node after the pasted content so we can set it's order
const mappedPositionOfNextListItem = tr.mapping.map(positionOfNextListItem);
if (mappedPositionOfNextListItem > tr.doc.nodeSize) {
return tr;
}
const nodeAfterPastedContentResolvedPos = findParentNodeOfTypeClosestToPos(tr.doc.resolve(mappedPositionOfNextListItem), [orderedList]);
// Work out the new split out lists 'order' (the number it starts from)
const originalParentOrderedListNodeOrder = selectionParentListNode === null || selectionParentListNode === void 0 ? void 0 : selectionParentListNode.attrs.order;
const nodeOfOriginalList = findParentNodeOfTypeClosestToPos(tr.doc.resolve(from - 1), [orderedList]);
const numOfListItemsInOriginalList = nodeOfOriginalList === null || nodeOfOriginalList === void 0 ? void 0 : nodeOfOriginalList.node.childCount;
// Set the new split out lists order attribute
if (typeof originalParentOrderedListNodeOrder === 'number' && numOfListItemsInOriginalList && nodeAfterPastedContentResolvedPos &&
// We only want to apply the node markup if we're referring to the split
// list rather than the original
(nodeOfOriginalList === null || nodeOfOriginalList === void 0 ? void 0 : nodeOfOriginalList.node) !== (nodeAfterPastedContentResolvedPos === null || nodeAfterPastedContentResolvedPos === void 0 ? void 0 : nodeAfterPastedContentResolvedPos.node)) {
tr.setNodeMarkup(nodeAfterPastedContentResolvedPos.pos, orderedList, {
...nodeAfterPastedContentResolvedPos.node.attrs,
order: originalParentOrderedListNodeOrder + numOfListItemsInOriginalList
});
}
return tr;
}