mirror of
https://github.com/jasny/bootstrap.git
synced 2026-01-23 21:27:56 -05:00
Fixed variables when loading custom.json Conflicts: Makefile README.md component.json composer.json docs/assets/css/bootstrap-responsive.css docs/assets/js/application.js docs/assets/js/bootstrap-typeahead.js docs/assets/js/bootstrap.js docs/assets/js/bootstrap.min.js docs/index.html docs/javascript.html docs/templates/pages/index.mustache docs/templates/pages/javascript.mustache js/bootstrap-typeahead.js package.json
525 lines
14 KiB
JavaScript
525 lines
14 KiB
JavaScript
/* =============================================================
|
|
* bootstrap-typeahead.js v2.3.0-j4
|
|
* http://twitter.github.com/bootstrap/javascript.html#typeahead
|
|
* =============================================================
|
|
* 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.
|
|
* ============================================================ */
|
|
|
|
|
|
!function($){
|
|
|
|
"use strict"; // jshint ;_;
|
|
|
|
|
|
/* TYPEAHEAD PUBLIC CLASS DEFINITION
|
|
* ================================= */
|
|
|
|
var Typeahead = function (element, options) {
|
|
this.$element = $(element)
|
|
this.options = $.extend({}, $.fn.typeahead.defaults, options)
|
|
if (this.options.target) this.$target = $(this.options.target)
|
|
this.matcher = this.options.matcher || this.matcher
|
|
this.sorter = this.options.sorter || this.sorter
|
|
this.highlighter = this.options.highlighter || this.highlighter
|
|
this.updater = this.options.updater || this.updater
|
|
this.source = this.options.source
|
|
this.strict = this.options.strict
|
|
this.$menu = $(this.options.menu)
|
|
this.shown = false
|
|
|
|
if (typeof this.source == 'string') {
|
|
this.url = this.source
|
|
this.source = this.searchAjax
|
|
}
|
|
|
|
if (element.nodeName == 'SELECT') this.replaceSelect()
|
|
|
|
this.text = this.$element.val()
|
|
|
|
this.$element
|
|
.attr('data-text', this.value)
|
|
.attr('autocomplete', "off")
|
|
|
|
if (typeof this.$target != 'undefined') this.$element.attr('data-value', this.$target.val())
|
|
else if (typeof this.$element.attr('data-value') == 'undefined') this.$element.attr('data-value', this.strict ? '' : this.value)
|
|
|
|
this.$menu.css('min-width', this.$element.width() + 12)
|
|
|
|
this.listen()
|
|
}
|
|
|
|
Typeahead.prototype = {
|
|
|
|
constructor: Typeahead
|
|
|
|
, replaceSelect: function () {
|
|
this.$target = this.$element
|
|
this.$element = $('<input type="text" />')
|
|
|
|
this.source = {}
|
|
this.strict = true
|
|
|
|
var options = this.$target.find('option')
|
|
var $option;
|
|
for (var i=0; i<options.length; i++) {
|
|
$option = $(options[i]);
|
|
if ($option.val() === '') {
|
|
this.$element.attr('placeholder', $option.html());
|
|
continue;
|
|
}
|
|
|
|
this.source[$option.val()] = $option.html()
|
|
if (this.$target.val() == $option.val()) this.$element.val($option.html())
|
|
}
|
|
|
|
var attr = this.$target[0].attributes
|
|
for (i=0; i<attr.length; i++) {
|
|
if (attr[i].nodeName != 'type' && attr[i].nodeName != 'name' && attr[i].nodeName != 'id' && attr[i].nodeName != 'data-provide' && !attr[i].nodeName.match(/^on/)) {
|
|
this.$element.attr(attr[i].nodeName, attr[i].nodeValue)
|
|
}
|
|
}
|
|
|
|
this.$element.insertAfter(this.$target)
|
|
if (this.$target.attr('autofocus')) this.$element.trigger('focus').select()
|
|
this.$target.attr('autofocus', false)
|
|
this.$target.hide()
|
|
}
|
|
|
|
, destroyReplacement: function () {
|
|
// Detroy replacement element, so it doesn't mess up the browsers autofill on refresh
|
|
if (typeof this.$target != 'undefined' && this.$target[0].nodeName == 'SELECT') {
|
|
this.$element.replaceWith('');
|
|
}
|
|
}
|
|
|
|
, select: function () {
|
|
var li = this.$menu.find('.active')
|
|
, val = li.attr('data-value')
|
|
, text = li.find('.item-text').length > 0 ? li.find('.item-text').text() : li.text()
|
|
|
|
val = this.updater(val, 'value')
|
|
text = this.updater(text, 'text')
|
|
|
|
this.$element
|
|
.val(text)
|
|
.attr('data-value', val)
|
|
|
|
this.text = text
|
|
|
|
if (typeof this.$target != 'undefined') {
|
|
this.$target
|
|
.val(val)
|
|
.trigger('change')
|
|
}
|
|
|
|
this.$element.trigger('change')
|
|
|
|
return this.hide()
|
|
}
|
|
|
|
, updater: function (text, type) {
|
|
return text
|
|
}
|
|
|
|
, show: function () {
|
|
var pos = $.extend({}, this.$element.position(), {
|
|
height: this.$element[0].offsetHeight
|
|
})
|
|
|
|
this.$menu
|
|
.insertAfter(this.$element)
|
|
.css({
|
|
top: pos.top + pos.height
|
|
, left: pos.left
|
|
})
|
|
.show()
|
|
|
|
this.shown = true
|
|
return this
|
|
}
|
|
|
|
, hide: function () {
|
|
this.$menu.hide()
|
|
this.shown = false
|
|
return this
|
|
}
|
|
|
|
, lookup: function (event) {
|
|
var items
|
|
|
|
this.query = this.$element.val()
|
|
|
|
if (!this.query || this.query.length < this.options.minLength) {
|
|
return this.shown ? this.hide() : this
|
|
}
|
|
|
|
items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.source
|
|
|
|
return items ? this.process(items) : this
|
|
}
|
|
|
|
, process: function (items) {
|
|
return $.isArray(items) ? this.processArray(items) : this.processObject(items)
|
|
}
|
|
|
|
, processArray: function (items) {
|
|
var that = this
|
|
|
|
items = $.grep(items, function (item) {
|
|
return that.matcher(item)
|
|
})
|
|
|
|
items = this.sorter(items)
|
|
|
|
if (!items.length) {
|
|
return this.shown ? this.hide() : this
|
|
}
|
|
|
|
return this.render(items.slice(0, this.options.items)).show()
|
|
}
|
|
|
|
, processObject: function (itemsIn) {
|
|
var that = this
|
|
, items = {}
|
|
, i = 0
|
|
|
|
$.each(itemsIn, function (key, item) {
|
|
if (that.matcher(item)) items[key] = item
|
|
})
|
|
|
|
items = this.sorter(items)
|
|
|
|
if ($.isEmptyObject(items)) {
|
|
return this.shown ? this.hide() : this
|
|
}
|
|
|
|
$.each(items, function(key, item) {
|
|
if (i++ >= that.options.items) delete items[key]
|
|
})
|
|
|
|
return this.render(items).show()
|
|
}
|
|
|
|
, searchAjax: function (query, process) {
|
|
var that = this
|
|
|
|
if (this.ajaxTimeout) clearTimeout(this.ajaxTimeout)
|
|
|
|
this.ajaxTimeout = setTimeout(function () {
|
|
if (that.ajaxTimeout) clearTimeout(that.ajaxTimeout)
|
|
|
|
if (query === "") {
|
|
that.hide()
|
|
return
|
|
}
|
|
|
|
$.get(that.url, {'q': query, 'limit': that.options.items }, function (items) {
|
|
if (typeof items == 'string') items = JSON.parse(items)
|
|
process(items)
|
|
})
|
|
}, this.options.ajaxdelay)
|
|
}
|
|
|
|
, matcher: function (item) {
|
|
return ~item.toLowerCase().indexOf(this.query.toLowerCase())
|
|
}
|
|
|
|
, sorter: function (items) {
|
|
return $.isArray(items) ? this.sortArray(items) : this.sortObject(items)
|
|
}
|
|
|
|
, sortArray: function (items) {
|
|
var beginswith = []
|
|
, caseSensitive = []
|
|
, caseInsensitive = []
|
|
, item
|
|
|
|
while (item = items.shift()) {
|
|
if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item)
|
|
else if (~item.indexOf(this.query)) caseSensitive.push(item)
|
|
else caseInsensitive.push(item)
|
|
}
|
|
|
|
return beginswith.concat(caseSensitive, caseInsensitive)
|
|
}
|
|
|
|
, sortObject: function (items) {
|
|
var sorted = {}
|
|
, key;
|
|
|
|
for (key in items) {
|
|
if (!items[key].toLowerCase().indexOf(this.query.toLowerCase())) {
|
|
sorted[key] = items[key];
|
|
delete items[key]
|
|
}
|
|
}
|
|
|
|
for (key in items) {
|
|
if (~items[key].indexOf(this.query)) {
|
|
sorted[key] = items[key];
|
|
delete items[key]
|
|
}
|
|
}
|
|
|
|
for (key in items) {
|
|
sorted[key] = items[key]
|
|
}
|
|
|
|
return sorted
|
|
}
|
|
|
|
, highlighter: function (item) {
|
|
var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
|
|
return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
|
|
return '<strong>' + match + '</strong>'
|
|
})
|
|
}
|
|
|
|
, render: function (items) {
|
|
var that = this
|
|
, list = $([])
|
|
|
|
$.map(items, function (item, value) {
|
|
if (list.length >= that.options.items) return
|
|
|
|
var li
|
|
, a
|
|
|
|
if ($.isArray(items)) value = item
|
|
|
|
li = $(that.options.item)
|
|
a = li.find('a').length ? li.find('a') : li
|
|
a.html(that.highlighter(item))
|
|
|
|
li.attr('data-value', value)
|
|
if (li.find('a').length === 0) li.addClass('dropdown-header')
|
|
|
|
list.push(li[0])
|
|
})
|
|
|
|
list.not('.dropdown-header').first().addClass('active')
|
|
|
|
this.$menu.html(list)
|
|
|
|
return this
|
|
}
|
|
|
|
, next: function (event) {
|
|
var active = this.$menu.find('.active').removeClass('active')
|
|
, next = active.nextAll('li:not(.dropdown-header)').first()
|
|
|
|
if (!next.length) {
|
|
next = $(this.$menu.find('li:not(.dropdown-header)')[0])
|
|
}
|
|
|
|
next.addClass('active')
|
|
}
|
|
|
|
, prev: function (event) {
|
|
var active = this.$menu.find('.active').removeClass('active')
|
|
, prev = active.prevAll('li:not(.dropdown-header)').first()
|
|
|
|
if (!prev.length) {
|
|
prev = this.$menu.find('li:not(.dropdown-header)').last()
|
|
}
|
|
|
|
prev.addClass('active')
|
|
}
|
|
|
|
, listen: function () {
|
|
this.$element
|
|
.on('focus', $.proxy(this.focus, this))
|
|
.on('blur', $.proxy(this.blur, this))
|
|
.on('change', $.proxy(this.change, this))
|
|
.on('keypress', $.proxy(this.keypress, this))
|
|
.on('keyup', $.proxy(this.keyup, this))
|
|
|
|
if (this.eventSupported('keydown')) {
|
|
this.$element.on('keydown', $.proxy(this.keydown, this))
|
|
}
|
|
|
|
this.$menu
|
|
.on('click', $.proxy(this.click, this))
|
|
.on('mouseenter', 'li', $.proxy(this.mouseenter, this))
|
|
.on('mouseleave', 'li', $.proxy(this.mouseleave, this))
|
|
|
|
$(window).on('unload', $.proxy(this.destroyReplacement, this))
|
|
}
|
|
|
|
, eventSupported: function(eventName) {
|
|
var isSupported = eventName in this.$element
|
|
if (!isSupported) {
|
|
this.$element.setAttribute(eventName, 'return;')
|
|
isSupported = typeof this.$element[eventName] === 'function'
|
|
}
|
|
return isSupported
|
|
}
|
|
|
|
, move: function (e) {
|
|
if (!this.shown) return
|
|
|
|
switch(e.keyCode) {
|
|
case 9: // tab
|
|
case 13: // enter
|
|
case 27: // escape
|
|
e.preventDefault()
|
|
break
|
|
|
|
case 38: // up arrow
|
|
e.preventDefault()
|
|
this.prev()
|
|
break
|
|
|
|
case 40: // down arrow
|
|
e.preventDefault()
|
|
this.next()
|
|
break
|
|
}
|
|
|
|
e.stopPropagation()
|
|
}
|
|
|
|
, keydown: function (e) {
|
|
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
|
|
this.move(e)
|
|
}
|
|
|
|
, keypress: function (e) {
|
|
if (this.suppressKeyPressRepeat) return
|
|
this.move(e)
|
|
}
|
|
|
|
, keyup: function (e) {
|
|
switch(e.keyCode) {
|
|
case 40: // down arrow
|
|
case 38: // up arrow
|
|
case 16: // shift
|
|
case 17: // ctrl
|
|
case 18: // alt
|
|
break
|
|
|
|
case 9: // tab
|
|
case 13: // enter
|
|
if (!this.shown) return
|
|
this.select()
|
|
break
|
|
|
|
case 27: // escape
|
|
if (!this.shown) return
|
|
this.hide()
|
|
break
|
|
|
|
default:
|
|
this.lookup()
|
|
}
|
|
|
|
e.stopPropagation()
|
|
e.preventDefault()
|
|
}
|
|
|
|
, change: function (e) {
|
|
var value
|
|
|
|
if (this.$element.val() != this.text) {
|
|
value = this.$element.val() === '' || this.strict ? '' : this.$element.val()
|
|
|
|
this.$element.val(value)
|
|
this.$element.attr('data-value', value)
|
|
this.text = value
|
|
if (typeof this.$target != 'undefined') this.$target.val(value)
|
|
}
|
|
}
|
|
|
|
, focus: function (e) {
|
|
this.focused = true
|
|
}
|
|
|
|
, blur: function (e) {
|
|
this.focused = false
|
|
if (!this.mousedover && this.shown) this.hide()
|
|
}
|
|
|
|
, click: function (e) {
|
|
e.stopPropagation()
|
|
e.preventDefault()
|
|
this.select()
|
|
this.$element.focus()
|
|
}
|
|
|
|
, mouseenter: function (e) {
|
|
this.mousedover = true
|
|
this.$menu.find('.active').removeClass('active')
|
|
$(e.currentTarget).addClass('active')
|
|
}
|
|
|
|
, mouseleave: function (e) {
|
|
this.mousedover = false
|
|
if (!this.focused && this.shown) this.hide()
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/* TYPEAHEAD PLUGIN DEFINITION
|
|
* =========================== */
|
|
|
|
var old = $.fn.typeahead
|
|
|
|
$.fn.typeahead = function (option) {
|
|
return this.each(function () {
|
|
var $this = $(this)
|
|
, data = $this.data('typeahead')
|
|
, options = typeof option == 'object' && option
|
|
if (!data) $this.data('typeahead', (data = new Typeahead(this, options)))
|
|
if (typeof option == 'string') data[option]()
|
|
})
|
|
}
|
|
|
|
$.fn.typeahead.defaults = {
|
|
source: []
|
|
, items: 8
|
|
, menu: '<ul class="typeahead dropdown-menu"></ul>'
|
|
, item: '<li><a href="#"></a></li>'
|
|
, ajaxdelay: 400
|
|
, minLength: 1
|
|
}
|
|
|
|
$.fn.typeahead.Constructor = Typeahead
|
|
|
|
|
|
/* TYPEAHEAD NO CONFLICT
|
|
* =================== */
|
|
|
|
$.fn.typeahead.noConflict = function () {
|
|
$.fn.typeahead = old
|
|
return this
|
|
}
|
|
|
|
|
|
/* TYPEAHEAD DATA-API
|
|
* ================== */
|
|
|
|
$(document)
|
|
.off('focus.typeahead.data-api') // overwriting Twitter's typeahead
|
|
.on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
|
|
var $this = $(this)
|
|
if ($this.data('typeahead')) return
|
|
if ($this.is('select')) $this.attr('autofocus', true)
|
|
e.preventDefault()
|
|
$this.typeahead($this.data())
|
|
})
|
|
|
|
}(window.jQuery);
|