AccordionLayout.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:7k
源码类别:

JavaScript

开发平台:

JavaScript

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