AccordionLayout.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:6k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.layout.AccordionLayout
  3.  * @extends Ext.layout.FitLayout
  4.  * <p>This is a layout that contains multiple panels in an expandable accordion style such that only
  5.  * <b>one panel can be open at any given time</b>.  Each panel has built-in support for expanding and collapsing.
  6.  * <p>This class is intended to be extended or created via the <tt><b>{@link Ext.Container#layout layout}</b></tt>
  7.  * configuration property.  See <tt><b>{@link Ext.Container#layout}</b></tt> for additional details.</p>
  8.  * <p>Example usage:</p>
  9.  * <pre><code>
  10. var accordion = new Ext.Panel({
  11.     title: 'Accordion Layout',
  12.     layout:'accordion',
  13.     defaults: {
  14.         // applied to each contained panel
  15.         bodyStyle: 'padding:15px'
  16.     },
  17.     layoutConfig: {
  18.         // layout-specific configs go here
  19.         titleCollapse: false,
  20.         animate: true,
  21.         activeOnTop: true
  22.     },
  23.     items: [{
  24.         title: 'Panel 1',
  25.         html: '&lt;p&gt;Panel content!&lt;/p&gt;'
  26.     },{
  27.         title: 'Panel 2',
  28.         html: '&lt;p&gt;Panel content!&lt;/p&gt;'
  29.     },{
  30.         title: 'Panel 3',
  31.         html: '&lt;p&gt;Panel content!&lt;/p&gt;'
  32.     }]
  33. });
  34. </code></pre>
  35.  */
  36. Ext.layout.AccordionLayout = Ext.extend(Ext.layout.FitLayout, {
  37.     /**
  38.      * @cfg {Boolean} fill
  39.      * True to adjust the active item's height to fill the available space in the container, false to use the
  40.      * item's current height, or auto height if not explicitly set (defaults to true).
  41.      */
  42.     fill : true,
  43.     /**
  44.      * @cfg {Boolean} autoWidth
  45.      * True to set each contained item's width to 'auto', false to use the item's current width (defaults to true).
  46.      * Note that some components, in particular the {@link Ext.grid.GridPanel grid}, will not function properly within
  47.      * layouts if they have auto width, so in such cases this config should be set to false.
  48.      */
  49.     autoWidth : true,
  50.     /**
  51.      * @cfg {Boolean} titleCollapse
  52.      * True to allow expand/collapse of each contained panel by clicking anywhere on the title bar, false to allow
  53.      * expand/collapse only when the toggle tool button is clicked (defaults to true).  When set to false,
  54.      * {@link #hideCollapseTool} should be false also.
  55.      */
  56.     titleCollapse : true,
  57.     /**
  58.      * @cfg {Boolean} hideCollapseTool
  59.      * True to hide the contained panels' collapse/expand toggle buttons, false to display them (defaults to false).
  60.      * When set to true, {@link #titleCollapse} should be true also.
  61.      */
  62.     hideCollapseTool : false,
  63.     /**
  64.      * @cfg {Boolean} collapseFirst
  65.      * True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools
  66.      * in the contained panels' title bars, false to render it last (defaults to false).
  67.      */
  68.     collapseFirst : false,
  69.     /**
  70.      * @cfg {Boolean} animate
  71.      * True to slide the contained panels open and closed during expand/collapse using animation, false to open and
  72.      * close directly with no animation (defaults to false).  Note: to defer to the specific config setting of each
  73.      * contained panel for this property, set this to undefined at the layout level.
  74.      */
  75.     animate : false,
  76.     /**
  77.      * @cfg {Boolean} sequence
  78.      * <b>Experimental</b>. If animate is set to true, this will result in each animation running in sequence.
  79.      */
  80.     sequence : false,
  81.     /**
  82.      * @cfg {Boolean} activeOnTop
  83.      * True to swap the position of each panel as it is expanded so that it becomes the first item in the container,
  84.      * false to keep the panels in the rendered order. <b>This is NOT compatible with "animate:true"</b> (defaults to false).
  85.      */
  86.     activeOnTop : false,
  87.     renderItem : function(c){
  88.         if(this.animate === false){
  89.             c.animCollapse = false;
  90.         }
  91.         c.collapsible = true;
  92.         if(this.autoWidth){
  93.             c.autoWidth = true;
  94.         }
  95.         if(this.titleCollapse){
  96.             c.titleCollapse = true;
  97.         }
  98.         if(this.hideCollapseTool){
  99.             c.hideCollapseTool = true;
  100.         }
  101.         if(this.collapseFirst !== undefined){
  102.             c.collapseFirst = this.collapseFirst;
  103.         }
  104.         if(!this.activeItem && !c.collapsed){
  105.             this.activeItem = c;
  106.         }else if(this.activeItem && this.activeItem != c){
  107.             c.collapsed = true;
  108.         }
  109.         Ext.layout.AccordionLayout.superclass.renderItem.apply(this, arguments);
  110.         c.header.addClass('x-accordion-hd');
  111.         c.on('beforeexpand', this.beforeExpand, this);
  112.     },
  113.     // private
  114.     beforeExpand : function(p, anim){
  115.         var ai = this.activeItem;
  116.         if(ai){
  117.             if(this.sequence){
  118.                 delete this.activeItem;
  119.                 if (!ai.collapsed){
  120.                     ai.collapse({callback:function(){
  121.                         p.expand(anim || true);
  122.                     }, scope: this});
  123.                     return false;
  124.                 }
  125.             }else{
  126.                 ai.collapse(this.animate);
  127.             }
  128.         }
  129.         this.activeItem = p;
  130.         if(this.activeOnTop){
  131.             p.el.dom.parentNode.insertBefore(p.el.dom, p.el.dom.parentNode.firstChild);
  132.         }
  133.         this.layout();
  134.     },
  135.     // private
  136.     setItemSize : function(item, size){
  137.         if(this.fill && item){
  138.             var hh = 0;
  139.             this.container.items.each(function(p){
  140.                 if(p != item){
  141.                     hh += p.header.getHeight();
  142.                 }    
  143.             });
  144.             size.height -= hh;
  145.             item.setSize(size);
  146.         }
  147.     },
  148.     /**
  149.      * Sets the active (expanded) item in the layout.
  150.      * @param {String/Number} item The string component id or numeric index of the item to activate
  151.      */
  152.     setActiveItem : function(item){
  153.         item = this.container.getComponent(item);
  154.         if(this.activeItem != item){
  155.             if(item.rendered && item.collapsed){
  156.                 item.expand();
  157.             }else{
  158.                 this.activeItem = item;
  159.             }
  160.         }
  161.     }
  162. });
  163. Ext.Container.LAYOUTS.accordion = Ext.layout.AccordionLayout;
  164. //backwards compat
  165. Ext.layout.Accordion = Ext.layout.AccordionLayout;