當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript SelectorFind.ancestor方法代碼示例

本文整理匯總了TypeScript中@ephox/sugar.SelectorFind.ancestor方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript SelectorFind.ancestor方法的具體用法?TypeScript SelectorFind.ancestor怎麽用?TypeScript SelectorFind.ancestor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@ephox/sugar.SelectorFind的用法示例。


在下文中一共展示了SelectorFind.ancestor方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: getMaxTabviewHeight

const updateTabviewHeight = (dialogBody: Element, tabview: Element, maxTabHeight: Cell<Option<number>>) => {
  SelectorFind.ancestor(dialogBody, '[role="dialog"]').each((dialog) => {
    maxTabHeight.get().map((height) => {
      // Set the tab view height to 0, so we can calculate the max tabview height, without worrying about overflows
      Css.set(tabview, 'height', '0');
      return Math.min(height, getMaxTabviewHeight(dialog, dialogBody));
    }).each((height) => {
      Css.set(tabview, 'height', height + 'px');
    });
  });
};
開發者ID:tinymce,項目名稱:tinymce,代碼行數:11,代碼來源:DialogTabHeight.ts

示例2:

const getMaxTabviewHeight = (dialog: Element, dialogBody: Element) => {
  const rootElm = SelectorFind.ancestor(dialog, '.tox-dialog-wrap').getOr(dialog);
  const isFixed = Css.get(rootElm, 'position') === 'fixed';
  // Get the document or window/viewport height
  let maxHeight;
  if (isFixed) {
    maxHeight = Math.max(document.documentElement.clientHeight, window.innerHeight);
  } else {
    maxHeight = Math.max(document.documentElement.offsetHeight, document.documentElement.scrollHeight);
  }
  // Determine the max dialog body height
  const dialogChrome = dialog.dom().getBoundingClientRect().height - dialogBody.dom().getBoundingClientRect().height;
  return maxHeight - dialogChrome;
};
開發者ID:tinymce,項目名稱:tinymce,代碼行數:14,代碼來源:DialogTabHeight.ts

示例3:

const getClosestTable = (cell, isRoot) => {
  return SelectorFind.ancestor(cell, 'table', isRoot);
};
開發者ID:danielpunkass,項目名稱:tinymce,代碼行數:3,代碼來源:TableDeleteAction.ts

示例4: function

const getParentTable = function (rootElm, cell) {
  return SelectorFind.ancestor(cell, 'table', Fun.curry(Compare.eq, rootElm));
};
開發者ID:howardjing,項目名稱:tinymce,代碼行數:3,代碼來源:FragmentReader.ts

示例5: function

const sketch = function (settings) {
  const dataset = convert(settings.formats, function () {
    return memMenu;
  });
  // Turn settings into a tiered menu data.

  const memMenu = Memento.record(TieredMenu.sketch({
    dom: {
      tag: 'div',
      classes: [ Styles.resolve('styles-menu') ]
    },
    components: [ ],

    // Focus causes issues when the things being focused are offscreen.
    fakeFocus: true,
    // For animations, need things to stay around in the DOM (at least until animation is done)
    stayInDom: true,

    onExecute (tmenu, item) {
      const v = Representing.getValue(item);
      settings.handle(item, v.value);
    },
    onEscape () {
    },
    onOpenMenu (container, menu) {
      const w = Width.get(container.element());
      Width.set(menu.element(), w);
      Transitioning.jumpTo(menu, 'current');
    },
    onOpenSubmenu (container, item, submenu) {
      const w = Width.get(container.element());
      const menu = SelectorFind.ancestor(item.element(), '[role="menu"]').getOrDie('hacky');
      const menuComp = container.getSystem().getByDom(menu).getOrDie();

      Width.set(submenu.element(), w);

      Transitioning.progressTo(menuComp, 'before');
      Transitioning.jumpTo(submenu, 'after');
      Transitioning.progressTo(submenu, 'current');
    },

    onCollapseMenu (container, item, menu) {
      const submenu = SelectorFind.ancestor(item.element(), '[role="menu"]').getOrDie('hacky');
      const submenuComp = container.getSystem().getByDom(submenu).getOrDie();
      Transitioning.progressTo(submenuComp, 'after');
      Transitioning.progressTo(menu, 'current');
    },

    navigateOnHover: false,

    openImmediately: true,
    data: dataset.tmenu,

    markers: {
      backgroundMenu: Styles.resolve('styles-background-menu'),
      menu: Styles.resolve('styles-menu'),
      selectedMenu: Styles.resolve('styles-selected-menu'),
      item: Styles.resolve('styles-item'),
      selectedItem: Styles.resolve('styles-selected-item')
    }
  }));

  return memMenu.asSpec();
};
開發者ID:abstask,項目名稱:tinymce,代碼行數:64,代碼來源:StylesMenu.ts

示例6: function

const getClosestTable = function (cell, isRoot) {
  return SelectorFind.ancestor(cell, 'table', isRoot);
};
開發者ID:enigmatic-user,項目名稱:tinymce-1,代碼行數:3,代碼來源:TableDeleteAction.ts


注:本文中的@ephox/sugar.SelectorFind.ancestor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。