本文整理汇总了TypeScript中@ephox/sugar.Insert.before方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Insert.before方法的具体用法?TypeScript Insert.before怎么用?TypeScript Insert.before使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类@ephox/sugar.Insert
的用法示例。
在下文中一共展示了Insert.before方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
const replaceWithCaretFormat = function (targetNode, formatNodes) {
const caretContainer = createCaretContainer(false);
const innerMost = insertFormatNodesIntoCaretContainer(formatNodes, caretContainer.dom());
Insert.before(Element.fromDom(targetNode), caretContainer);
Remove.remove(Element.fromDom(targetNode));
return CaretPosition(innerMost, 0);
};
示例2: getElementFromPosition
return getElementFromPosition(pos).map((elm) => {
const textNode = Element.fromText(text);
if (pos.isAtEnd()) {
Insert.after(elm, textNode);
} else {
Insert.before(elm, textNode);
}
return CaretPosition(textNode.dom(), text.length);
});
示例3: moveToRange
editor.undoManager.transact(() => {
const element = SugarElement.fromTag(forcedRootBlock);
Attr.setAll(element, Settings.getForcedRootBlockAttrs(editor));
Insert.append(element, SugarElement.fromTag('br'));
if (down) {
Insert.after(SugarElement.fromDom(table), element);
} else {
Insert.before(SugarElement.fromDom(table), element);
}
const rng = editor.dom.createRng();
rng.setStart(element.dom(), 0);
rng.setEnd(element.dom(), 0);
moveToRange(editor, rng);
});
示例4:
const wrapWithSiblings = (dom: DOMUtils, node: Node, next: boolean, name: string, attrs?): Node => {
const start = Element.fromDom(node);
const wrapper = Element.fromDom(dom.create(name, attrs));
const siblings = next ? Traverse.nextSiblings(start) : Traverse.prevSiblings(start);
InsertAll.append(wrapper, siblings);
if (next) {
Insert.before(start, wrapper);
Insert.prepend(wrapper, start);
} else {
Insert.after(start, wrapper);
Insert.append(wrapper, start);
}
return wrapper.dom();
};
示例5: removeEmptyRoot
const nestedBlockMerge = (rootNode: Element, fromBlock: Element, toBlock: Element, insertionPoint: Element): Option<CaretPosition> => {
if (Empty.isEmpty(toBlock)) {
PaddingBr.fillWithPaddingBr(toBlock);
return CaretFinder.firstPositionIn(toBlock.dom());
}
if (isEmptyBefore(insertionPoint) && Empty.isEmpty(fromBlock)) {
Insert.before(insertionPoint, Element.fromTag('br'));
}
const position = CaretFinder.prevPosition(toBlock.dom(), CaretPosition.before(insertionPoint.dom()));
Arr.each(extractChildren(fromBlock), (child) => {
Insert.before(insertionPoint, child);
});
removeEmptyRoot(rootNode, fromBlock);
return position;
};
示例6: function
const insertBrBefore = function (editor, inline) {
const br = Element.fromTag('br');
Insert.before(Element.fromDom(inline), br);
editor.undoManager.add();
};
示例7: function
Arr.each(children, function (node) {
Insert.before(target, node);
});
示例8:
Arr.each(extractChildren(fromBlock), (child) => {
Insert.before(insertionPoint, child);
});