jQuery UI Tabs插件无法处理2层标签

问题描述 投票:0回答:1

我正在使用jQuery UI选项卡以结构化方式显示用户生成的数据的旧项目。系统不限制用户可以创建的选项卡数量(但通常在第二层中大约有30个),而jQuery UI Tabs仅包装选项卡,这看起来非常不专业。

Wrapping tabs in my project.

[我偶然发现了Paul Blundell于2014年推出的漂亮插件OverflowTabs(这是他的JSFiddle:http://jsfiddle.net/o1wLbtj4/,),但不幸的是,我无法使其在我的2层标签中正常工作。我正在使用jQuery 1.10.2和jQuery UI 1.10.4。Gathered tabs in a dropdown menu in Paul Blundell's JSFiddle.

我做了一个简化的JSFiddle,它显示了我想做的事情:打开一个对话框窗口,其中包含2层选项卡中的数据。当标签过多时,两个层次都应将溢出的标签推入菜单,单击该菜单即可打开下拉菜单,但此刻(在具有名称的层次上)仅显示最后一个标签,并且下拉按钮不起作用并读取为0:http://jsfiddle.net/megahra/6s2xwgec/18/

据我所知,该插件正确地从第一层中删除了选项卡,并将它们添加到溢出div(_hideTab函数)中,但由于某些原因,稍后将其覆盖。我怀疑该插件无法正确处理第二层,但我不知道该在哪里修复。

这是插件的_hideTab函数:

_hideTab: function() {
    if (!$('.ui-tabs-overflow').length) {
      $(this.element).find('.ui-tabs-nav').after('<ul class="ui-tabs-overflow hide"></ul>');
      $(this.element).find('.ui-tabs-overflow').after('<div class="overflow-selector">&#8595 <span class="total">0</span></div>');
    }
    var lastTab = $(this.element).find('.ui-tabs-nav li').last();
    lastTab.appendTo($(this.element).find('.ui-tabs-overflow'));
}

如果有人能指出正确的方向,我将不胜感激!

jquery css jquery-ui jquery-plugins
1个回答
0
投票

发现了一些旧代码用法,只是做了一些小的清理。我发现了一些问题。

工作示例:https://jsfiddle.net/Twisty/tbvasj1g/

  1. 单击事件是贪婪的,并且正在隐藏不需要隐藏的列表项
  2. 添加/删除类是预切换方法。更新为使用.toggleClass()
  3. [.size()折旧为length

    注意:此方法已在jQuery 3.0中删除。请改用.length属性。.size()方法在功能上等效于.length属性。但是,.length属性为首选,因为它没有函数调用的开销。

  4. [$(this.element).find(selector)替换为速记$(selector, this.element)

  5. .total更新从计算功能移出,并移入更新功能。在循环结束时,有些东西将其重置为0。不知道是什么。在那里更新没有任何意义,因此我将其移到了现在就可以了。

小部件工厂

$.widget("ui.tabs", $.ui.tabs, {
  options: {
    overflowTabs: false,
    tabPadding: 25,
    containerPadding: 0,
    dropdownSize: 50
  },
  _create: function() {
    this._super("_create");
    this.tabsWidth = 0;
    this.containerWidth = 0;
    if (!this.options.overflowTabs)
      return;

    // update the tabs
    this.updateOverflowTabs();

    // Detect a window resize and check the tabs again
    var that = this;
    var el = this.element;

    $(window).resize(function() {
      // Add a slight delay after resize, to fix Maximise issue.
      setTimeout(function() {
        that.updateOverflowTabs();
      }, 150);
    });

    // Detect dropdown click
    $(".tabStructure").on("click", ".overflow-selector", function(e) {
      $('.ui-tabs-overflow', el).toggleClass('hide');
    });
  },

  refresh: function() {
    this._super("refresh");
    this.updateOverflowTabs();
  },

  updateOverflowTabs: function() {
    var failsafe = 0;
    this._calculateWidths();
    var el = this.element;
    console.log("cWidth", this.containerWidth);

    // Loop until tabsWidth is less than the containerWidth
    while (this.tabsWidth > this.containerWidth && failsafe < 30) {
      //debugger;
      this._hideTab();
      this._calculateWidths();
      failsafe++;
    }

    // Finish now if there are no tabs in the overflow list
    if ($('.ui-tabs-overflow li', el).length === 0)
      return;

    // Reset
    failsafe = 0;

    // Get the first tab in the overflow list
    var next = this._nextTab();

    // Loop until we cannot fit any more tabs
    while (next.totalSize < this.containerWidth && $('.ui-tabs-overflow li', el).length > 0 && failsafe < 30) {
      this._showTab(next.tab);
      this._calculateWidths();
      next = this._nextTab();
      failsafe++;
    }

    $('.overflow-selector .total', el).html($('.ui-tabs-overflow li', el).length);
  },

  _calculateWidths: function() {
    var width = 0;
    $(this.element).find('.ui-tabs-nav > li').each(function() {
      width += $(this).outerWidth(true);
      //debugger;
    });
    this.tabsWidth = width;
    this.containerWidth = $(this.element).parent().width() - this.options.containerPadding - this.options.dropdownSize;
  },
  _hideTab: function() {
    if (!$('.ui-tabs-overflow').length) {
      $(this.element).find('.ui-tabs-nav').after('<ul class="ui-tabs-overflow hide"></ul>');
      $(this.element).find('.ui-tabs-overflow').after('<div class="overflow-selector">&#8595 <span class="total">0</span></div>');
    }
    var lastTab = $(this.element).find('.ui-tabs-nav li').last();
    lastTab.appendTo($(this.element).find('.ui-tabs-overflow'));
  },
  _showTab: function(tab) {
    tab.appendTo($(this.element).find('.ui-tabs-nav'));

    // Check to see if overflow list is now empty
    if ($(this.element).find('.ui-tabs-overflow li').size() == 0) {
      $(this.element).find('.ui-tabs-overflow').remove();
      $(this.element).find('.overflow-selector').remove();
    }
  },
  _nextTab: function() {
    var result = {};
    var firstTab = $(this.element).find('.ui-tabs-overflow li').first();
    result.tab = firstTab;
    result.totalSize = this.tabsWidth + this._textWidth(firstTab) + this.options.tabPadding;
    return result;
  },
  _textWidth: function(element) {
    var self = $(element),
      children = self.children(),
      calculator = $('<span style="display: inline-block;" />'),
      width;

    children.wrap(calculator);
    width = children.parent().width();
    children.unwrap();

    return width;
  }
});

$(function() {
  $("#rowDialog").dialog({
    title: 'Test modal',
    closeOnEscape: false,
    minHeight: 'auto',
    width: '600px',
    modal: true,
    resizable: true,
    buttons: [{
      // Close button
      text: 'Close',
      click: function() {
        $(this).dialog('close')
      },
    }]
  });

  $(".tabStructure").tabs({
    overflowTabs: true
  });
});

总体上不支持此解决方案。我建议分页。如果其他选项卡中没有内容或内容很多,则下拉列表将被剪切。同样,如果您从下拉菜单中选择一个选项卡,则该选项卡将被隐藏,并且您也无法知道正在查看的选项卡,因为它们都不是可视指示器。

© www.soinside.com 2019 - 2024. All rights reserved.