📄 accordioncontainer.js
字号:
/* Copyright (c) 2004-2006, The Dojo Foundation All Rights Reserved. Licensed under the Academic Free License version 2.1 or above OR the modified BSD license. For more information on Dojo licensing, see: http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.widget.AccordionContainer");dojo.require("dojo.widget.*");dojo.require("dojo.html.*");dojo.require("dojo.lfx.html");dojo.require("dojo.html.selection");dojo.require("dojo.widget.html.layout");dojo.require("dojo.widget.PageContainer");dojo.widget.defineWidget("dojo.widget.AccordionContainer", dojo.widget.HtmlWidget, {isContainer:true, labelNodeClass:"label", containerNodeClass:"accBody", duration:250, fillInTemplate:function () { with (this.domNode.style) { if (position != "absolute") { position = "relative"; } overflow = "hidden"; }}, addChild:function (widget) { var child = this._addChild(widget); this._setSizes(); return child;}, _addChild:function (widget) { if (widget.open) { dojo.deprecated("open parameter deprecated, use 'selected=true' instead will be removed in ", "0.5"); dojo.debug(widget.widgetId + ": open == " + widget.open); widget.selected = true; } if (widget.widgetType != "AccordionPane") { var wrapper = dojo.widget.createWidget("AccordionPane", {label:widget.label, selected:widget.selected, labelNodeClass:this.labelNodeClass, containerNodeClass:this.containerNodeClass, allowCollapse:this.allowCollapse}); wrapper.addChild(widget); this.addWidgetAsDirectChild(wrapper); this.registerChild(wrapper, this.children.length); return wrapper; } else { dojo.html.addClass(widget.containerNode, this.containerNodeClass); dojo.html.addClass(widget.labelNode, this.labelNodeClass); this.addWidgetAsDirectChild(widget); this.registerChild(widget, this.children.length); return widget; }}, postCreate:function () { var tmpChildren = this.children; this.children = []; dojo.html.removeChildren(this.domNode); dojo.lang.forEach(tmpChildren, dojo.lang.hitch(this, "_addChild")); this._setSizes();}, removeChild:function (widget) { dojo.widget.AccordionContainer.superclass.removeChild.call(this, widget); this._setSizes();}, onResized:function () { this._setSizes();}, _setSizes:function () { var totalCollapsedHeight = 0; var openIdx = 0; dojo.lang.forEach(this.children, function (child, idx) { totalCollapsedHeight += child.getLabelHeight(); if (child.selected) { openIdx = idx; } }); var mySize = dojo.html.getContentBox(this.domNode); var y = 0; dojo.lang.forEach(this.children, function (child, idx) { var childCollapsedHeight = child.getLabelHeight(); child.resizeTo(mySize.width, mySize.height - totalCollapsedHeight + childCollapsedHeight); child.domNode.style.zIndex = idx + 1; child.domNode.style.position = "absolute"; child.domNode.style.top = y + "px"; y += (idx == openIdx) ? dojo.html.getBorderBox(child.domNode).height : childCollapsedHeight; });}, selectChild:function (page) { dojo.lang.forEach(this.children, function (child) { child.setSelected(child == page); }); var y = 0; var anims = []; dojo.lang.forEach(this.children, function (child, idx) { if (child.domNode.style.top != (y + "px")) { anims.push(dojo.lfx.html.slideTo(child.domNode, {top:y, left:0}, this.duration)); } y += child.selected ? dojo.html.getBorderBox(child.domNode).height : child.getLabelHeight(); }, this); dojo.lfx.combine(anims).play();}});dojo.widget.defineWidget("dojo.widget.AccordionPane", dojo.widget.HtmlWidget, {label:"", "class":"dojoAccordionPane", labelNodeClass:"label", containerNodeClass:"accBody", selected:false, templateString:"<div dojoAttachPoint=\"domNode\">\n<div dojoAttachPoint=\"labelNode\" dojoAttachEvent=\"onclick: onLabelClick\" class=\"${this.labelNodeClass}\">${this.label}</div>\n<div dojoAttachPoint=\"containerNode\" style=\"overflow: hidden;\" class=\"${this.containerNodeClass}\"></div>\n</div>\n", templateCssString:".dojoAccordionPane .label {\n\tcolor: #000;\n\tfont-weight: bold;\n\tbackground: url(\"images/soriaAccordionOff.gif\") repeat-x top left #85aeec;\n\tborder:1px solid #d9d9d9;\n\tfont-size:0.9em;\n}\n\n.dojoAccordionPane-selected .label {\n\tbackground: url(\"images/soriaAccordionSelected.gif\") repeat-x top left #85aeec;\n\tborder:1px solid #84a3d1;\n}\n\n.dojoAccordionPane .label:hover {\n\tcursor: pointer;\n}\n\n.dojoAccordionPane .accBody {\n\tbackground: #fff;\n\toverflow: auto;\n\tborder:1px solid #84a3d1;\n}\n", templateCssPath:dojo.uri.moduleUri("dojo.widget", "templates/AccordionPane.css"), isContainer:true, fillInTemplate:function () { dojo.html.addClass(this.domNode, this["class"]); dojo.widget.AccordionPane.superclass.fillInTemplate.call(this); dojo.html.disableSelection(this.labelNode); this.setSelected(this.selected);}, setLabel:function (label) { this.labelNode.innerHTML = label;}, resizeTo:function (width, height) { dojo.html.setMarginBox(this.domNode, {width:width, height:height}); var children = [{domNode:this.labelNode, layoutAlign:"top"}, {domNode:this.containerNode, layoutAlign:"client"}]; dojo.widget.html.layout(this.domNode, children); var childSize = dojo.html.getContentBox(this.containerNode); this.children[0].resizeTo(childSize.width, childSize.height);}, getLabelHeight:function () { return dojo.html.getMarginBox(this.labelNode).height;}, onLabelClick:function () { this.parent.selectChild(this);}, setSelected:function (isSelected) { this.selected = isSelected; (isSelected ? dojo.html.addClass : dojo.html.removeClass)(this.domNode, this["class"] + "-selected"); var child = this.children[0]; if (child) { if (isSelected) { if (!child.isShowing()) { child.show(); } else { child.onShow(); } } else { child.onHide(); } }}});dojo.lang.extend(dojo.widget.Widget, {open:false});
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -