twbs--bootstrap/js/collapse.js

180 lines
5.1 KiB
JavaScript
Raw Normal View History

2013-05-22 02:30:33 +00:00
/* ========================================================================
2013-05-16 18:06:30 +00:00
* Bootstrap: collapse.js v3.0.0
2013-07-25 19:24:13 +00:00
* http://twbs.github.com/bootstrap/javascript.html#collapse
2013-05-22 02:30:33 +00:00
* ========================================================================
2012-01-15 07:28:48 +00:00
* Copyright 2012 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2013-05-22 02:30:33 +00:00
* ======================================================================== */
2013-05-22 02:30:33 +00:00
+function ($) { "use strict";
2013-05-16 18:20:18 +00:00
// COLLAPSE PUBLIC CLASS DEFINITION
// ================================
var Collapse = function (element, options) {
2013-05-16 18:20:18 +00:00
this.$element = $(element)
this.options = $.extend({}, Collapse.DEFAULTS, options)
this.transitioning = null
2013-05-16 18:20:18 +00:00
if (this.options.parent) this.$parent = $(this.options.parent)
if (this.options.toggle) this.toggle()
}
2013-05-16 18:20:18 +00:00
Collapse.DEFAULTS = {
toggle: true
}
2013-05-16 18:20:18 +00:00
Collapse.prototype.dimension = function () {
var hasWidth = this.$element.hasClass('width')
return hasWidth ? 'width' : 'height'
}
2013-05-16 18:20:18 +00:00
Collapse.prototype.show = function () {
if (this.transitioning || this.$element.hasClass('in')) return
2011-12-01 06:42:22 +00:00
2013-07-18 02:28:43 +00:00
var startEvent = $.Event('show.bs.collapse')
this.$element.trigger(startEvent)
if (startEvent.isDefaultPrevented()) return
var actives = this.$parent && this.$parent.find('> .panel > .in')
2013-05-16 18:20:18 +00:00
if (actives && actives.length) {
2013-07-18 03:29:41 +00:00
var hasData = actives.data('bs.collapse')
2013-05-16 18:20:18 +00:00
if (hasData && hasData.transitioning) return
actives.collapse('hide')
2013-07-18 03:29:41 +00:00
hasData || actives.data('bs.collapse', null)
2013-05-16 18:20:18 +00:00
}
var dimension = this.dimension()
this.$element
.removeClass('collapse')
.addClass('collapsing')
[dimension](0)
this.transitioning = 1
var complete = function () {
this.$element
.removeClass('collapsing')
.addClass('in')
[dimension]('auto')
this.transitioning = 0
this.$element.trigger('shown.bs.collapse')
}
if (!$.support.transition) return complete.call(this)
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
this.$element
.one($.support.transition.end, $.proxy(complete, this))
.emulateTransitionEnd(350)
[dimension](this.$element[0][scrollSize])
2013-05-16 18:20:18 +00:00
}
2013-05-16 18:20:18 +00:00
Collapse.prototype.hide = function () {
if (this.transitioning || !this.$element.hasClass('in')) return
2013-07-18 02:28:43 +00:00
var startEvent = $.Event('hide.bs.collapse')
this.$element.trigger(startEvent)
if (startEvent.isDefaultPrevented()) return
2013-05-16 18:20:18 +00:00
var dimension = this.dimension()
this.$element
[dimension](this.$element[dimension]())
[0].offsetHeight
2013-05-16 18:20:18 +00:00
this.$element
.addClass('collapsing')
2013-05-16 18:20:18 +00:00
.removeClass('collapse')
.removeClass('in')
this.transitioning = 1
2013-05-16 18:20:18 +00:00
var complete = function () {
this.transitioning = 0
this.$element
.trigger('hidden.bs.collapse')
.removeClass('collapsing')
.addClass('collapse')
}
if (!$.support.transition) return complete.call(this)
this.$element
[dimension](0)
.one($.support.transition.end, $.proxy(complete, this))
.emulateTransitionEnd(350)
2013-05-16 18:20:18 +00:00
}
2013-05-16 18:20:18 +00:00
Collapse.prototype.toggle = function () {
this[this.$element.hasClass('in') ? 'hide' : 'show']()
}
2013-05-16 18:20:18 +00:00
// COLLAPSE PLUGIN DEFINITION
// ==========================
var old = $.fn.collapse
$.fn.collapse = function (option) {
return this.each(function () {
2013-05-16 18:20:18 +00:00
var $this = $(this)
2013-07-18 03:29:41 +00:00
var data = $this.data('bs.collapse')
2013-05-16 18:20:18 +00:00
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
2013-07-18 03:29:41 +00:00
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
if (typeof option == 'string') data[option]()
})
}
$.fn.collapse.Constructor = Collapse
2013-05-16 18:20:18 +00:00
// COLLAPSE NO CONFLICT
// ====================
$.fn.collapse.noConflict = function () {
$.fn.collapse = old
return this
}
2013-05-16 18:20:18 +00:00
// COLLAPSE DATA-API
// =================
$(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
2013-07-18 06:52:29 +00:00
var $this = $(this), href
var target = $this.attr('data-target')
|| e.preventDefault()
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
2013-07-18 06:52:29 +00:00
var $target = $(target)
var data = $target.data('bs.collapse')
var option = data ? 'toggle' : $this.data()
var parent = $this.attr('data-parent')
var $parent = parent && $(parent)
2013-05-16 18:20:18 +00:00
2013-07-18 03:29:41 +00:00
if (!data || !data.transitioning) {
if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
2013-07-18 06:52:29 +00:00
$this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
2013-07-18 03:29:41 +00:00
}
2013-07-18 06:52:29 +00:00
$target.collapse(option)
})
}(window.jQuery);