当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Hierarchy.follow方法代码示例

本文整理汇总了TypeScript中@ephox/sugar.Hierarchy.follow方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Hierarchy.follow方法的具体用法?TypeScript Hierarchy.follow怎么用?TypeScript Hierarchy.follow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@ephox/sugar.Hierarchy的用法示例。


在下文中一共展示了Hierarchy.follow方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

    return Chain.op(function (blockBoundaryOption) {
      const expectedFromBlock = Hierarchy.follow(Element.fromDom(viewBlock.get()), fromBlockPath).getOrDie();
      const expectedToBlock = Hierarchy.follow(Element.fromDom(viewBlock.get()), toBlockPath).getOrDie();
      const blockBoundary = blockBoundaryOption.getOrDie();

      Assertions.assertDomEq('Should be expected from block', expectedFromBlock, blockBoundary.from().block());
      Assertions.assertDomEq('Should be expected to block', expectedToBlock, blockBoundary.to().block());
    });
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:8,代码来源:BlockBoundaryTest.ts

示例2: next

 return Step.stateful(function (value, next, die) {
   const startContainer = Hierarchy.follow(Element.fromDom(viewBlock.get()), startPath).getOrDie();
   const endContainer = Hierarchy.follow(Element.fromDom(viewBlock.get()), endPath).getOrDie();
   const rng = document.createRange();
   rng.setStart(startContainer.dom(), startOffset);
   rng.setEnd(endContainer.dom(), endOffset);
   next(rng);
 });
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:8,代码来源:RangeNormalizerTest.ts

示例3:

    return Chain.op(function (rng: any) {
      const startContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), startPath).getOrDie();
      const endContainer = Hierarchy.follow(Element.fromDom(editor.getBody()), endPath).getOrDie();

      Assertions.assertDomEq('Should be expected start container', startContainer, Element.fromDom(rng.startContainer));
      Assertions.assertEq('Should be expected 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);
    });
开发者ID:tinymce,项目名称:tinymce,代码行数:9,代码来源:ExpandRangeTest.ts

示例4: function

  const assertRawRange = function (element, rng, startPath, startOffset, endPath, endOffset) {
    const startContainer = Hierarchy.follow(element, startPath).getOrDie();
    const endContainer = Hierarchy.follow(element, endPath).getOrDie();

    Assertions.assertDomEq('Should be expected start container', startContainer, Element.fromDom(rng.startContainer));
    Assertions.assertEq('Should be expected 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);
  };
开发者ID:danielpunkass,项目名称:tinymce,代码行数:9,代码来源:BookmarksTest.ts

示例5:

    return Chain.op(function () {
      const sc = Hierarchy.follow(Element.fromDom(viewBlock.get()), startPath).getOrDie('invalid startPath');
      const fc = Hierarchy.follow(Element.fromDom(viewBlock.get()), finishPath).getOrDie('invalid finishPath');
      const win = Traverse.defaultView(sc);

      WindowSelection.setExact(
        win.dom(), sc, soffset, fc, foffset
      );
    });
开发者ID:danielpunkass,项目名称:tinymce,代码行数:9,代码来源:SelectionBookmarkTest.ts

示例6:

 return Chain.binder(function (_) {
   const tableElm = Element.fromHtml(html);
   const startElm = Hierarchy.follow(tableElm, startPath).getOrDie();
   const endElm = Hierarchy.follow(tableElm, endPath).getOrDie();
   return SimpleTableModel.subsection(SimpleTableModel.fromDom(tableElm), startElm, endElm).fold(
     Fun.constant(Result.error('Failed to get the subsection')),
     Result.value
   );
 });
开发者ID:aha-app,项目名称:tinymce-word-paste-filter,代码行数:9,代码来源:SimpleTableModelTest.ts

示例7: 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);
    };
开发者ID:howardjing,项目名称:tinymce,代码行数:10,代码来源:SelectionBookmarkInlineEditorTest.ts

示例8:

    return Chain.op(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);

      editor.selection.setRng(rng);
    });
开发者ID:abstask,项目名称:tinymce,代码行数:10,代码来源:EditorFocusTest.ts

示例9: 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);
  };
开发者ID:abstask,项目名称:tinymce,代码行数:10,代码来源:NormalizeRangeTest.ts


注:本文中的@ephox/sugar.Hierarchy.follow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。