1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/collapse.js

162 lines
4.9 KiB
JavaScript
Raw Normal View History

2013-05-21 22:30:33 -04:00
/* ========================================================================
2013-05-16 14:06:30 -04:00
* Bootstrap: collapse.js v3.0.0
2012-01-24 14:08:03 -05:00
* http://twitter.github.com/bootstrap/javascript.html#collapse
2013-05-21 22:30:33 -04:00
* ========================================================================
2012-01-15 02:28:48 -05: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-21 22:30:33 -04:00
* ======================================================================== */
2013-05-21 22:30:33 -04:00
+function ($) { "use strict";
2013-05-16 14:20:18 -04:00
// COLLAPSE PUBLIC CLASS DEFINITION
// ================================
var Collapse = function (element, options) {
2013-05-16 14:20:18 -04:00
this.$element = $(element)
this.options = $.extend({}, Collapse.DEFAULTS, options)
this.transitioning = null
2013-05-16 14:20:18 -04:00
if (this.options.parent) this.$parent = $(this.options.parent)
if (this.options.toggle) this.toggle()
}
2013-05-16 14:20:18 -04:00
Collapse.DEFAULTS = {
toggle: true
}
2013-05-16 14:20:18 -04:00
Collapse.prototype.dimension = function () {
var hasWidth = this.$element.hasClass('width')
return hasWidth ? 'width' : 'height'
}
2013-05-16 14:20:18 -04:00
Collapse.prototype.show = function () {
if (this.transitioning || this.$element.hasClass('in')) return
2011-12-01 01:42:22 -05:00
2013-07-17 22:28:43 -04:00
var startEvent = $.Event('show.bs.collapse')
this.$element.trigger(startEvent)
if (startEvent.isDefaultPrevented()) return
2013-05-16 14:20:18 -04:00
var dimension = this.dimension()
var scroll = $.camelCase(['scroll', dimension].join('-'))
var actives = this.$parent && this.$parent.find('> .accordion-group > .in')
2013-05-16 14:20:18 -04:00
if (actives && actives.length) {
var hasData = actives.data('collapse')
if (hasData && hasData.transitioning) return
actives.collapse('hide')
hasData || actives.data('collapse', null)
}
2013-05-16 14:20:18 -04:00
this.$element[dimension](0)
2013-07-17 22:28:43 -04:00
this.transition('addClass', 'shown.bs.collapse')
2013-05-16 14:20:18 -04:00
if ($.support.transition) this.$element[dimension](this.$element[0][scroll])
}
2013-05-16 14:20:18 -04:00
Collapse.prototype.hide = function () {
if (this.transitioning || !this.$element.hasClass('in')) return
2013-07-17 22:28:43 -04:00
var startEvent = $.Event('hide.bs.collapse')
this.$element.trigger(startEvent)
if (startEvent.isDefaultPrevented()) return
2013-05-16 14:20:18 -04:00
var dimension = this.dimension()
this.reset(this.$element[dimension]())
2013-07-17 22:28:43 -04:00
this.transition('removeClass', 'shown.bs.hidden')
2013-05-16 14:20:18 -04:00
this.$element[dimension](0)
}
2013-05-16 14:20:18 -04:00
Collapse.prototype.reset = function (size) {
var dimension = this.dimension()
2013-05-16 14:20:18 -04:00
this.$element
.removeClass('collapse')
[dimension](size || 'auto')
[0].offsetWidth
2013-06-27 22:19:22 -04:00
this.$element[size != null ? 'addClass' : 'removeClass']('collapse')
2013-05-16 14:20:18 -04:00
return this
}
2013-07-17 22:28:43 -04:00
Collapse.prototype.transition = function (method, completeEvent) {
2013-05-16 14:20:18 -04:00
var that = this
var complete = function () {
2013-07-17 22:28:43 -04:00
if (completeEvent == 'shown.bs.collapse') that.reset()
2013-05-16 14:20:18 -04:00
that.transitioning = 0
that.$element.trigger(completeEvent)
}
2013-05-16 14:20:18 -04:00
this.transitioning = 1
2013-05-16 14:20:18 -04:00
this.$element[method]('in')
2013-05-16 14:20:18 -04:00
$.support.transition && this.$element.hasClass('collapse') ?
this.$element.one($.support.transition.end, complete) :
complete()
}
2013-05-16 14:20:18 -04:00
Collapse.prototype.toggle = function () {
this[this.$element.hasClass('in') ? 'hide' : 'show']()
}
2013-05-16 14:20:18 -04:00
// COLLAPSE PLUGIN DEFINITION
// ==========================
var old = $.fn.collapse
$.fn.collapse = function (option) {
return this.each(function () {
2013-05-16 14:20:18 -04:00
var $this = $(this)
var data = $this.data('collapse')
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
if (!data) $this.data('collapse', (data = new Collapse(this, options)))
if (typeof option == 'string') data[option]()
})
}
$.fn.collapse.Constructor = Collapse
2013-05-16 14:20:18 -04:00
// COLLAPSE NO CONFLICT
// ====================
$.fn.collapse.noConflict = function () {
$.fn.collapse = old
return this
}
2013-05-16 14:20:18 -04:00
// COLLAPSE DATA-API
// =================
$(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
2013-05-16 14:20:18 -04:00
var $this = $(this), href
var target = $this.attr('data-target')
|| e.preventDefault()
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
2013-05-16 14:20:18 -04:00
var option = $(target).data('collapse') ? 'toggle' : $this.data()
var parent = $this.attr('data-parent')
var $parent = parent && $(parent)
2013-05-16 14:20:18 -04:00
if ($parent) $parent.find('[data-toggle=collapse][data-parent=' + parent + ']').not($this).addClass('collapsed')
$this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
$(target).collapse(option)
})
}(window.jQuery);