本文整理汇总了TypeScript中@ephox/sugar.Hierarchy类的典型用法代码示例。如果您正苦于以下问题:TypeScript Hierarchy类的具体用法?TypeScript Hierarchy怎么用?TypeScript Hierarchy使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Hierarchy类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
const assertRange = function (root, range, startPath, startOffset, endPath, endOffset) {
const sc = Hierarchy.follow(Element.fromDom(root), startPath).getOrDie();
const ec = Hierarchy.follow(Element.fromDom(root), endPath).getOrDie();
const actualRange = range.getOrDie('Should be some');
Assertions.assertDomEq('Should be expected start container', sc, Element.fromDom(actualRange.startContainer));
Assertions.assertEq('Should be expected start offset', startOffset, actualRange.startOffset);
Assertions.assertDomEq('Should be expected end container', ec, Element.fromDom(actualRange.endContainer));
Assertions.assertEq('Should be expected end offset', endOffset, actualRange.endOffset);
};
示例2:
return Chain.mapper(function (editor) {
const startContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), startPath).getOrDie();
const endContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), endPath).getOrDie();
const rng = editor.dom.createRng();
rng.setStart(startContainer.dom(), startOffset);
rng.setEnd(endContainer.dom(), endOffset);
return ExpandRange.expandRng(editor, rng, format, remove);
});
示例3:
return Chain.op(function (editor: any) {
const startContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), startPath).getOrDie();
const endContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), endPath).getOrDie();
const rng = editor.dom.createRng();
rng.setStart(startContainer.dom(), startOffset);
rng.setEnd(endContainer.dom(), endOffset);
editor.selection.setRng(rng);
});
示例4: function
const setSelection = function (editor, start, soffset, finish, foffset) {
const sc = Hierarchy.follow(Element.fromDom(editor.getBody()), start).getOrDie();
const fc = Hierarchy.follow(Element.fromDom(editor.getBody()), start).getOrDie();
const rng = document.createRange();
rng.setStart(sc.dom(), soffset);
rng.setEnd(fc.dom(), foffset);
editor.selection.setRng(rng);
};
示例5:
return Chain.mapper(function (viewBlock) {
const sc = Hierarchy.follow(Element.fromDom(viewBlock.get()), startPath).getOrDie();
const ec = Hierarchy.follow(Element.fromDom(viewBlock.get()), endPath).getOrDie();
const rng = document.createRange();
rng.setStart(sc.dom(), startOffset);
rng.setEnd(ec.dom(), endOffset);
return SelectionUtils.hasAllContentsSelected(Element.fromDom(viewBlock.get()), rng);
});
示例6:
return Chain.op(function (editor: any) {
const startContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), startPath).getOrDie();
const endContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), endPath).getOrDie();
const rng = editor.selection.getRng();
Assertions.assertDomEq('Should be expected from start container', startContainer, Element.fromDom(rng.startContainer));
Assertions.assertEq('Should be expected from start offset', startOffset, rng.startOffset);
Assertions.assertDomEq('Should be expected end container', endContainer, Element.fromDom(rng.endContainer));
Assertions.assertEq('Should be expected end offset', endOffset, rng.endOffset);
});
示例7:
return Chain.op(function (blockBoundaryOption: Option<any>) {
const fromContainer = Hierarchy.follow(Element.fromDom(viewBlock.get()), fromPath).getOrDie();
const toContainer = Hierarchy.follow(Element.fromDom(viewBlock.get()), toPath).getOrDie();
const blockBoundary = blockBoundaryOption.getOrDie();
Assertions.assertDomEq('Should be expected from container', fromContainer, Element.fromDom(blockBoundary.from().position().container()));
Assertions.assertEq('Should be expected from offset', fromOffset, blockBoundary.from().position().offset());
Assertions.assertDomEq('Should be expected to container', toContainer, Element.fromDom(blockBoundary.to().position().container()));
Assertions.assertEq('Should be expected to offset', toOffset, blockBoundary.to().position().offset());
});
示例8:
return Chain.mapper(function (viewBlock: any) {
const sc = Hierarchy.follow(Element.fromDom(viewBlock.get()), startPath).getOrDie();
const ec = Hierarchy.follow(Element.fromDom(viewBlock.get()), endPath).getOrDie();
const rng = document.createRange();
rng.setStart(sc.dom(), startOffset);
rng.setEnd(ec.dom(), endOffset);
return NormalizeRange.normalize(DOMUtils(document, { root_element: viewBlock.get() }), rng);
});
示例9:
return Chain.mapper(function (viewBlock) {
const sc = Hierarchy.follow(Element.fromDom(viewBlock.get()), startPath).getOrDie();
const ec = Hierarchy.follow(Element.fromDom(viewBlock.get()), endPath).getOrDie();
const rng = document.createRange();
rng.setStart(sc.dom(), startOffset);
rng.setEnd(ec.dom(), endOffset);
return FragmentReader.read(Element.fromDom(viewBlock.get()), [rng]);
});
示例10:
return Chain.mapper(function () {
const elm = Element.fromHtml(html);
const sc = Hierarchy.follow(elm, startPath).getOrDie();
const ec = Hierarchy.follow(elm, endPath).getOrDie();
const rng = document.createRange();
rng.setStart(sc.dom(), startOffset);
rng.setEnd(ec.dom(), endOffset);
return TableDeleteAction.getActionFromRange(elm, rng);
});