| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/bitnami/htdocs/app/node_modules/prosemirror-commands/dist/ |
Upload File : |
import { liftTarget, canJoin, joinPoint, canSplit, ReplaceAroundStep, findWrapping } from 'prosemirror-transform';
import { Fragment, Slice } from 'prosemirror-model';
import { NodeSelection, Selection, AllSelection, TextSelection } from 'prosemirror-state';
// :: (EditorState, ?(tr: Transaction)) → bool
// Delete the selection, if there is one.
function deleteSelection(state, dispatch) {
if (state.selection.empty) { return false }
if (dispatch) { dispatch(state.tr.deleteSelection().scrollIntoView()); }
return true
}
// :: (EditorState, ?(tr: Transaction), ?EditorView) → bool
// If the selection is empty and at the start of a textblock, try to
// reduce the distance between that block and the one before it—if
// there's a block directly before it that can be joined, join them.
// If not, try to move the selected block closer to the next one in
// the document structure by lifting it out of its parent or moving it
// into a parent of the previous block. Will use the view for accurate
// (bidi-aware) start-of-textblock detection if given.
function joinBackward(state, dispatch, view) {
var ref = state.selection;
var $cursor = ref.$cursor;
if (!$cursor || (view ? !view.endOfTextblock("backward", state)
: $cursor.parentOffset > 0))
{ return false }
var $cut = findCutBefore($cursor);
// If there is no node before this, try to lift
if (!$cut) {
var range = $cursor.blockRange(), target = range && liftTarget(range);
if (target == null) { return false }
if (dispatch) { dispatch(state.tr.lift(range, target).scrollIntoView()); }
return true
}
var before = $cut.nodeBefore;
// Apply the joining algorithm
if (!before.type.spec.isolating && deleteBarrier(state, $cut, dispatch))
{ return true }
// If the node below has no content and the node above is
// selectable, delete the node below and select the one above.
if ($cursor.parent.content.size == 0 &&
(textblockAt(before, "end") || NodeSelection.isSelectable(before))) {
if (dispatch) {
var tr = state.tr.deleteRange($cursor.before(), $cursor.after());
tr.setSelection(textblockAt(before, "end") ? Selection.findFrom(tr.doc.resolve(tr.mapping.map($cut.pos, -1)), -1)
: NodeSelection.create(tr.doc, $cut.pos - before.nodeSize));
dispatch(tr.scrollIntoView());
}
return true
}
// If the node before is an atom, delete it
if (before.isAtom && $cut.depth == $cursor.depth - 1) {
if (dispatch) { dispatch(state.tr.delete($cut.pos - before.nodeSize, $cut.pos).scrollIntoView()); }
return true
}
return false
}
function textblockAt(node, side) {
for (; node; node = (side == "start" ? node.firstChild : node.lastChild))
{ if (node.isTextblock) { return true } }
return false
}
// :: (EditorState, ?(tr: Transaction), ?EditorView) → bool
// When the selection is empty and at the start of a textblock, select
// the node before that textblock, if possible. This is intended to be
// bound to keys like backspace, after
// [`joinBackward`](#commands.joinBackward) or other deleting
// commands, as a fall-back behavior when the schema doesn't allow
// deletion at the selected point.
function selectNodeBackward(state, dispatch, view) {
var ref = state.selection;
var $head = ref.$head;
var empty = ref.empty;
var $cut = $head;
if (!empty) { return false }
if ($head.parent.isTextblock) {
if (view ? !view.endOfTextblock("backward", state) : $head.parentOffset > 0) { return false }
$cut = findCutBefore($head);
}
var node = $cut && $cut.nodeBefore;
if (!node || !NodeSelection.isSelectable(node)) { return false }
if (dispatch)
{ dispatch(state.tr.setSelection(NodeSelection.create(state.doc, $cut.pos - node.nodeSize)).scrollIntoView()); }
return true
}
function findCutBefore($pos) {
if (!$pos.parent.type.spec.isolating) { for (var i = $pos.depth - 1; i >= 0; i--) {
if ($pos.index(i) > 0) { return $pos.doc.resolve($pos.before(i + 1)) }
if ($pos.node(i).type.spec.isolating) { break }
} }
return null
}
// :: (EditorState, ?(tr: Transaction), ?EditorView) → bool
// If the selection is empty and the cursor is at the end of a
// textblock, try to reduce or remove the boundary between that block
// and the one after it, either by joining them or by moving the other
// block closer to this one in the tree structure. Will use the view
// for accurate start-of-textblock detection if given.
function joinForward(state, dispatch, view) {
var ref = state.selection;
var $cursor = ref.$cursor;
if (!$cursor || (view ? !view.endOfTextblock("forward", state)
: $cursor.parentOffset < $cursor.parent.content.size))
{ return false }
var $cut = findCutAfter($cursor);
// If there is no node after this, there's nothing to do
if (!$cut) { return false }
var after = $cut.nodeAfter;
// Try the joining algorithm
if (deleteBarrier(state, $cut, dispatch)) { return true }
// If the node above has no content and the node below is
// selectable, delete the node above and select the one below.
if ($cursor.parent.content.size == 0 &&
(textblockAt(after, "start") || NodeSelection.isSelectable(after))) {
if (dispatch) {
var tr = state.tr.deleteRange($cursor.before(), $cursor.after());
tr.setSelection(textblockAt(after, "start") ? Selection.findFrom(tr.doc.resolve(tr.mapping.map($cut.pos)), 1)
: NodeSelection.create(tr.doc, tr.mapping.map($cut.pos)));
dispatch(tr.scrollIntoView());
}
return true
}
// If the next node is an atom, delete it
if (after.isAtom && $cut.depth == $cursor.depth - 1) {
if (dispatch) { dispatch(state.tr.delete($cut.pos, $cut.pos + after.nodeSize).scrollIntoView()); }
return true
}
return false
}
// :: (EditorState, ?(tr: Transaction), ?EditorView) → bool
// When the selection is empty and at the end of a textblock, select
// the node coming after that textblock, if possible. This is intended
// to be bound to keys like delete, after
// [`joinForward`](#commands.joinForward) and similar deleting
// commands, to provide a fall-back behavior when the schema doesn't
// allow deletion at the selected point.
function selectNodeForward(state, dispatch, view) {
var ref = state.selection;
var $head = ref.$head;
var empty = ref.empty;
var $cut = $head;
if (!empty) { return false }
if ($head.parent.isTextblock) {
if (view ? !view.endOfTextblock("forward", state) : $head.parentOffset < $head.parent.content.size)
{ return false }
$cut = findCutAfter($head);
}
var node = $cut && $cut.nodeAfter;
if (!node || !NodeSelection.isSelectable(node)) { return false }
if (dispatch)
{ dispatch(state.tr.setSelection(NodeSelection.create(state.doc, $cut.pos)).scrollIntoView()); }
return true
}
function findCutAfter($pos) {
if (!$pos.parent.type.spec.isolating) { for (var i = $pos.depth - 1; i >= 0; i--) {
var parent = $pos.node(i);
if ($pos.index(i) + 1 < parent.childCount) { return $pos.doc.resolve($pos.after(i + 1)) }
if (parent.type.spec.isolating) { break }
} }
return null
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Join the selected block or, if there is a text selection, the
// closest ancestor block of the selection that can be joined, with
// the sibling above it.
function joinUp(state, dispatch) {
var sel = state.selection, nodeSel = sel instanceof NodeSelection, point;
if (nodeSel) {
if (sel.node.isTextblock || !canJoin(state.doc, sel.from)) { return false }
point = sel.from;
} else {
point = joinPoint(state.doc, sel.from, -1);
if (point == null) { return false }
}
if (dispatch) {
var tr = state.tr.join(point);
if (nodeSel) { tr.setSelection(NodeSelection.create(tr.doc, point - state.doc.resolve(point).nodeBefore.nodeSize)); }
dispatch(tr.scrollIntoView());
}
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Join the selected block, or the closest ancestor of the selection
// that can be joined, with the sibling after it.
function joinDown(state, dispatch) {
var sel = state.selection, point;
if (sel instanceof NodeSelection) {
if (sel.node.isTextblock || !canJoin(state.doc, sel.to)) { return false }
point = sel.to;
} else {
point = joinPoint(state.doc, sel.to, 1);
if (point == null) { return false }
}
if (dispatch)
{ dispatch(state.tr.join(point).scrollIntoView()); }
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Lift the selected block, or the closest ancestor block of the
// selection that can be lifted, out of its parent node.
function lift(state, dispatch) {
var ref = state.selection;
var $from = ref.$from;
var $to = ref.$to;
var range = $from.blockRange($to), target = range && liftTarget(range);
if (target == null) { return false }
if (dispatch) { dispatch(state.tr.lift(range, target).scrollIntoView()); }
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// If the selection is in a node whose type has a truthy
// [`code`](#model.NodeSpec.code) property in its spec, replace the
// selection with a newline character.
function newlineInCode(state, dispatch) {
var ref = state.selection;
var $head = ref.$head;
var $anchor = ref.$anchor;
if (!$head.parent.type.spec.code || !$head.sameParent($anchor)) { return false }
if (dispatch) { dispatch(state.tr.insertText("\n").scrollIntoView()); }
return true
}
function defaultBlockAt(match) {
for (var i = 0; i < match.edgeCount; i++) {
var ref = match.edge(i);
var type = ref.type;
if (type.isTextblock && !type.hasRequiredAttrs()) { return type }
}
return null
}
// :: (EditorState, ?(tr: Transaction)) → bool
// When the selection is in a node with a truthy
// [`code`](#model.NodeSpec.code) property in its spec, create a
// default block after the code block, and move the cursor there.
function exitCode(state, dispatch) {
var ref = state.selection;
var $head = ref.$head;
var $anchor = ref.$anchor;
if (!$head.parent.type.spec.code || !$head.sameParent($anchor)) { return false }
var above = $head.node(-1), after = $head.indexAfter(-1), type = defaultBlockAt(above.contentMatchAt(after));
if (!above.canReplaceWith(after, after, type)) { return false }
if (dispatch) {
var pos = $head.after(), tr = state.tr.replaceWith(pos, pos, type.createAndFill());
tr.setSelection(Selection.near(tr.doc.resolve(pos), 1));
dispatch(tr.scrollIntoView());
}
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// If a block node is selected, create an empty paragraph before (if
// it is its parent's first child) or after it.
function createParagraphNear(state, dispatch) {
var sel = state.selection;
var $from = sel.$from;
var $to = sel.$to;
if (sel instanceof AllSelection || $from.parent.inlineContent || $to.parent.inlineContent) { return false }
var type = defaultBlockAt($to.parent.contentMatchAt($to.indexAfter()));
if (!type || !type.isTextblock) { return false }
if (dispatch) {
var side = (!$from.parentOffset && $to.index() < $to.parent.childCount ? $from : $to).pos;
var tr = state.tr.insert(side, type.createAndFill());
tr.setSelection(TextSelection.create(tr.doc, side + 1));
dispatch(tr.scrollIntoView());
}
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// If the cursor is in an empty textblock that can be lifted, lift the
// block.
function liftEmptyBlock(state, dispatch) {
var ref = state.selection;
var $cursor = ref.$cursor;
if (!$cursor || $cursor.parent.content.size) { return false }
if ($cursor.depth > 1 && $cursor.after() != $cursor.end(-1)) {
var before = $cursor.before();
if (canSplit(state.doc, before)) {
if (dispatch) { dispatch(state.tr.split(before).scrollIntoView()); }
return true
}
}
var range = $cursor.blockRange(), target = range && liftTarget(range);
if (target == null) { return false }
if (dispatch) { dispatch(state.tr.lift(range, target).scrollIntoView()); }
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Split the parent block of the selection. If the selection is a text
// selection, also delete its content.
function splitBlock(state, dispatch) {
var ref = state.selection;
var $from = ref.$from;
var $to = ref.$to;
if (state.selection instanceof NodeSelection && state.selection.node.isBlock) {
if (!$from.parentOffset || !canSplit(state.doc, $from.pos)) { return false }
if (dispatch) { dispatch(state.tr.split($from.pos).scrollIntoView()); }
return true
}
if (!$from.parent.isBlock) { return false }
if (dispatch) {
var atEnd = $to.parentOffset == $to.parent.content.size;
var tr = state.tr;
if (state.selection instanceof TextSelection || state.selection instanceof AllSelection) { tr.deleteSelection(); }
var deflt = $from.depth == 0 ? null : defaultBlockAt($from.node(-1).contentMatchAt($from.indexAfter(-1)));
var types = atEnd && deflt ? [{type: deflt}] : null;
var can = canSplit(tr.doc, tr.mapping.map($from.pos), 1, types);
if (!types && !can && canSplit(tr.doc, tr.mapping.map($from.pos), 1, deflt && [{type: deflt}])) {
types = [{type: deflt}];
can = true;
}
if (can) {
tr.split(tr.mapping.map($from.pos), 1, types);
if (!atEnd && !$from.parentOffset && $from.parent.type != deflt) {
var first = tr.mapping.map($from.before()), $first = tr.doc.resolve(first);
if ($from.parent.canReplaceWith($first.index(), $first.index() + 1, deflt))
{ tr.setNodeMarkup(tr.mapping.map($from.before()), deflt); }
}
}
dispatch(tr.scrollIntoView());
}
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Acts like [`splitBlock`](#commands.splitBlock), but without
// resetting the set of active marks at the cursor.
function splitBlockKeepMarks(state, dispatch) {
return splitBlock(state, dispatch && (function (tr) {
var marks = state.storedMarks || (state.selection.$to.parentOffset && state.selection.$from.marks());
if (marks) { tr.ensureMarks(marks); }
dispatch(tr);
}))
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Move the selection to the node wrapping the current selection, if
// any. (Will not select the document node.)
function selectParentNode(state, dispatch) {
var ref = state.selection;
var $from = ref.$from;
var to = ref.to;
var pos;
var same = $from.sharedDepth(to);
if (same == 0) { return false }
pos = $from.before(same);
if (dispatch) { dispatch(state.tr.setSelection(NodeSelection.create(state.doc, pos))); }
return true
}
// :: (EditorState, ?(tr: Transaction)) → bool
// Select the whole document.
function selectAll(state, dispatch) {
if (dispatch) { dispatch(state.tr.setSelection(new AllSelection(state.doc))); }
return true
}
function joinMaybeClear(state, $pos, dispatch) {
var before = $pos.nodeBefore, after = $pos.nodeAfter, index = $pos.index();
if (!before || !after || !before.type.compatibleContent(after.type)) { return false }
if (!before.content.size && $pos.parent.canReplace(index - 1, index)) {
if (dispatch) { dispatch(state.tr.delete($pos.pos - before.nodeSize, $pos.pos).scrollIntoView()); }
return true
}
if (!$pos.parent.canReplace(index, index + 1) || !(after.isTextblock || canJoin(state.doc, $pos.pos)))
{ return false }
if (dispatch)
{ dispatch(state.tr
.clearIncompatible($pos.pos, before.type, before.contentMatchAt(before.childCount))
.join($pos.pos)
.scrollIntoView()); }
return true
}
function deleteBarrier(state, $cut, dispatch) {
var before = $cut.nodeBefore, after = $cut.nodeAfter, conn, match;
if (before.type.spec.isolating || after.type.spec.isolating) { return false }
if (joinMaybeClear(state, $cut, dispatch)) { return true }
var canDelAfter = $cut.parent.canReplace($cut.index(), $cut.index() + 1);
if (canDelAfter &&
(conn = (match = before.contentMatchAt(before.childCount)).findWrapping(after.type)) &&
match.matchType(conn[0] || after.type).validEnd) {
if (dispatch) {
var end = $cut.pos + after.nodeSize, wrap = Fragment.empty;
for (var i = conn.length - 1; i >= 0; i--)
{ wrap = Fragment.from(conn[i].create(null, wrap)); }
wrap = Fragment.from(before.copy(wrap));
var tr = state.tr.step(new ReplaceAroundStep($cut.pos - 1, end, $cut.pos, end, new Slice(wrap, 1, 0), conn.length, true));
var joinAt = end + 2 * conn.length;
if (canJoin(tr.doc, joinAt)) { tr.join(joinAt); }
dispatch(tr.scrollIntoView());
}
return true
}
var selAfter = Selection.findFrom($cut, 1);
var range = selAfter && selAfter.$from.blockRange(selAfter.$to), target = range && liftTarget(range);
if (target != null && target >= $cut.depth) {
if (dispatch) { dispatch(state.tr.lift(range, target).scrollIntoView()); }
return true
}
if (canDelAfter && after.isTextblock && textblockAt(before, "end")) {
var at = before, wrap$1 = [];
for (;;) {
wrap$1.push(at);
if (at.isTextblock) { break }
at = at.lastChild;
}
if (at.canReplace(at.childCount, at.childCount, after.content)) {
if (dispatch) {
var end$1 = Fragment.empty;
for (var i$1 = wrap$1.length - 1; i$1 >= 0; i$1--) { end$1 = Fragment.from(wrap$1[i$1].copy(end$1)); }
var tr$1 = state.tr.step(new ReplaceAroundStep($cut.pos - wrap$1.length, $cut.pos + after.nodeSize,
$cut.pos + 1, $cut.pos + after.nodeSize - 1,
new Slice(end$1, wrap$1.length, 0), 0, true));
dispatch(tr$1.scrollIntoView());
}
return true
}
}
return false
}
// Parameterized commands
// :: (NodeType, ?Object) → (state: EditorState, dispatch: ?(tr: Transaction)) → bool
// Wrap the selection in a node of the given type with the given
// attributes.
function wrapIn(nodeType, attrs) {
return function(state, dispatch) {
var ref = state.selection;
var $from = ref.$from;
var $to = ref.$to;
var range = $from.blockRange($to), wrapping = range && findWrapping(range, nodeType, attrs);
if (!wrapping) { return false }
if (dispatch) { dispatch(state.tr.wrap(range, wrapping).scrollIntoView()); }
return true
}
}
// :: (NodeType, ?Object) → (state: EditorState, dispatch: ?(tr: Transaction)) → bool
// Returns a command that tries to set the selected textblocks to the
// given node type with the given attributes.
function setBlockType(nodeType, attrs) {
return function(state, dispatch) {
var ref = state.selection;
var from = ref.from;
var to = ref.to;
var applicable = false;
state.doc.nodesBetween(from, to, function (node, pos) {
if (applicable) { return false }
if (!node.isTextblock || node.hasMarkup(nodeType, attrs)) { return }
if (node.type == nodeType) {
applicable = true;
} else {
var $pos = state.doc.resolve(pos), index = $pos.index();
applicable = $pos.parent.canReplaceWith(index, index + 1, nodeType);
}
});
if (!applicable) { return false }
if (dispatch) { dispatch(state.tr.setBlockType(from, to, nodeType, attrs).scrollIntoView()); }
return true
}
}
function markApplies(doc, ranges, type) {
var loop = function ( i ) {
var ref = ranges[i];
var $from = ref.$from;
var $to = ref.$to;
var can = $from.depth == 0 ? doc.type.allowsMarkType(type) : false;
doc.nodesBetween($from.pos, $to.pos, function (node) {
if (can) { return false }
can = node.inlineContent && node.type.allowsMarkType(type);
});
if (can) { return { v: true } }
};
for (var i = 0; i < ranges.length; i++) {
var returned = loop( i );
if ( returned ) return returned.v;
}
return false
}
// :: (MarkType, ?Object) → (state: EditorState, dispatch: ?(tr: Transaction)) → bool
// Create a command function that toggles the given mark with the
// given attributes. Will return `false` when the current selection
// doesn't support that mark. This will remove the mark if any marks
// of that type exist in the selection, or add it otherwise. If the
// selection is empty, this applies to the [stored
// marks](#state.EditorState.storedMarks) instead of a range of the
// document.
function toggleMark(markType, attrs) {
return function(state, dispatch) {
var ref = state.selection;
var empty = ref.empty;
var $cursor = ref.$cursor;
var ranges = ref.ranges;
if ((empty && !$cursor) || !markApplies(state.doc, ranges, markType)) { return false }
if (dispatch) {
if ($cursor) {
if (markType.isInSet(state.storedMarks || $cursor.marks()))
{ dispatch(state.tr.removeStoredMark(markType)); }
else
{ dispatch(state.tr.addStoredMark(markType.create(attrs))); }
} else {
var has = false, tr = state.tr;
for (var i = 0; !has && i < ranges.length; i++) {
var ref$1 = ranges[i];
var $from = ref$1.$from;
var $to = ref$1.$to;
has = state.doc.rangeHasMark($from.pos, $to.pos, markType);
}
for (var i$1 = 0; i$1 < ranges.length; i$1++) {
var ref$2 = ranges[i$1];
var $from$1 = ref$2.$from;
var $to$1 = ref$2.$to;
if (has) {
tr.removeMark($from$1.pos, $to$1.pos, markType);
} else {
var from = $from$1.pos, to = $to$1.pos, start = $from$1.nodeAfter, end = $to$1.nodeBefore;
var spaceStart = start && start.isText ? /^\s*/.exec(start.text)[0].length : 0;
var spaceEnd = end && end.isText ? /\s*$/.exec(end.text)[0].length : 0;
if (from + spaceStart < to) { from += spaceStart; to -= spaceEnd; }
tr.addMark(from, to, markType.create(attrs));
}
}
dispatch(tr.scrollIntoView());
}
}
return true
}
}
function wrapDispatchForJoin(dispatch, isJoinable) {
return function (tr) {
if (!tr.isGeneric) { return dispatch(tr) }
var ranges = [];
for (var i = 0; i < tr.mapping.maps.length; i++) {
var map = tr.mapping.maps[i];
for (var j = 0; j < ranges.length; j++)
{ ranges[j] = map.map(ranges[j]); }
map.forEach(function (_s, _e, from, to) { return ranges.push(from, to); });
}
// Figure out which joinable points exist inside those ranges,
// by checking all node boundaries in their parent nodes.
var joinable = [];
for (var i$1 = 0; i$1 < ranges.length; i$1 += 2) {
var from = ranges[i$1], to = ranges[i$1 + 1];
var $from = tr.doc.resolve(from), depth = $from.sharedDepth(to), parent = $from.node(depth);
for (var index = $from.indexAfter(depth), pos = $from.after(depth + 1); pos <= to; ++index) {
var after = parent.maybeChild(index);
if (!after) { break }
if (index && joinable.indexOf(pos) == -1) {
var before = parent.child(index - 1);
if (before.type == after.type && isJoinable(before, after))
{ joinable.push(pos); }
}
pos += after.nodeSize;
}
}
// Join the joinable points
joinable.sort(function (a, b) { return a - b; });
for (var i$2 = joinable.length - 1; i$2 >= 0; i$2--) {
if (canJoin(tr.doc, joinable[i$2])) { tr.join(joinable[i$2]); }
}
dispatch(tr);
}
}
// :: ((state: EditorState, ?(tr: Transaction)) → bool, union<(before: Node, after: Node) → bool, [string]>) → (state: EditorState, ?(tr: Transaction)) → bool
// Wrap a command so that, when it produces a transform that causes
// two joinable nodes to end up next to each other, those are joined.
// Nodes are considered joinable when they are of the same type and
// when the `isJoinable` predicate returns true for them or, if an
// array of strings was passed, if their node type name is in that
// array.
function autoJoin(command, isJoinable) {
if (Array.isArray(isJoinable)) {
var types = isJoinable;
isJoinable = function (node) { return types.indexOf(node.type.name) > -1; };
}
return function (state, dispatch) { return command(state, dispatch && wrapDispatchForJoin(dispatch, isJoinable)); }
}
// :: (...[(EditorState, ?(tr: Transaction), ?EditorView) → bool]) → (EditorState, ?(tr: Transaction), ?EditorView) → bool
// Combine a number of command functions into a single function (which
// calls them one by one until one returns true).
function chainCommands() {
var commands = [], len = arguments.length;
while ( len-- ) commands[ len ] = arguments[ len ];
return function(state, dispatch, view) {
for (var i = 0; i < commands.length; i++)
{ if (commands[i](state, dispatch, view)) { return true } }
return false
}
}
var backspace = chainCommands(deleteSelection, joinBackward, selectNodeBackward);
var del = chainCommands(deleteSelection, joinForward, selectNodeForward);
// :: Object
// A basic keymap containing bindings not specific to any schema.
// Binds the following keys (when multiple commands are listed, they
// are chained with [`chainCommands`](#commands.chainCommands)):
//
// * **Enter** to `newlineInCode`, `createParagraphNear`, `liftEmptyBlock`, `splitBlock`
// * **Mod-Enter** to `exitCode`
// * **Backspace** and **Mod-Backspace** to `deleteSelection`, `joinBackward`, `selectNodeBackward`
// * **Delete** and **Mod-Delete** to `deleteSelection`, `joinForward`, `selectNodeForward`
// * **Mod-Delete** to `deleteSelection`, `joinForward`, `selectNodeForward`
// * **Mod-a** to `selectAll`
var pcBaseKeymap = {
"Enter": chainCommands(newlineInCode, createParagraphNear, liftEmptyBlock, splitBlock),
"Mod-Enter": exitCode,
"Backspace": backspace,
"Mod-Backspace": backspace,
"Delete": del,
"Mod-Delete": del,
"Mod-a": selectAll
};
// :: Object
// A copy of `pcBaseKeymap` that also binds **Ctrl-h** like Backspace,
// **Ctrl-d** like Delete, **Alt-Backspace** like Ctrl-Backspace, and
// **Ctrl-Alt-Backspace**, **Alt-Delete**, and **Alt-d** like
// Ctrl-Delete.
var macBaseKeymap = {
"Ctrl-h": pcBaseKeymap["Backspace"],
"Alt-Backspace": pcBaseKeymap["Mod-Backspace"],
"Ctrl-d": pcBaseKeymap["Delete"],
"Ctrl-Alt-Backspace": pcBaseKeymap["Mod-Delete"],
"Alt-Delete": pcBaseKeymap["Mod-Delete"],
"Alt-d": pcBaseKeymap["Mod-Delete"]
};
for (var key in pcBaseKeymap) { macBaseKeymap[key] = pcBaseKeymap[key]; }
// declare global: os, navigator
var mac = typeof navigator != "undefined" ? /Mac/.test(navigator.platform)
: typeof os != "undefined" ? os.platform() == "darwin" : false;
// :: Object
// Depending on the detected platform, this will hold
// [`pcBasekeymap`](#commands.pcBaseKeymap) or
// [`macBaseKeymap`](#commands.macBaseKeymap).
var baseKeymap = mac ? macBaseKeymap : pcBaseKeymap;
export { autoJoin, baseKeymap, chainCommands, createParagraphNear, deleteSelection, exitCode, joinBackward, joinDown, joinForward, joinUp, lift, liftEmptyBlock, macBaseKeymap, newlineInCode, pcBaseKeymap, selectAll, selectNodeBackward, selectNodeForward, selectParentNode, setBlockType, splitBlock, splitBlockKeepMarks, toggleMark, wrapIn };
//# sourceMappingURL=index.es.js.map