boottstrap 소스 코드 학습 및 예제: boottstrap - type: ahead

14064 단어 bootstrap
boottstrap - typeahead 라 는 이름 은 매우 애매 하 게 지 어 졌 는데 사실은 다른 UI 라 이브 러 리 의 자동 완성 이다.그것 은 JS 만 도입 하면 사용 할 수 있다.대상 텍스트 필드 에 적어도 두 개의 속성 이 있어 야 합 니 다. [data - provide = "typeahead"] 와 data - source 를 요구 하면 됩 니 다.data - source 는 unescapeHTML 을 거 친 문자열 배열 입 니 다.다만 JS 로 초기 화한 후 소스 속성 을 동적 으로 업데이트 하 는 것 을 권장 합 니 다.
명칭.
유형
묵인
묘사 하 다.
source
배열
[ ]
조회 에 사용 할 데이터 원본 입 니 다.
items
숫자.
8
드 롭 다운 목록 의 최대 표시 개수 입 니 다.
matcher
함수.
대소 문자 구분 없 음
이 matcher 함 수 는 어떤 항목 이 일치 하 는 지 여 부 를 결정 하 는 데 사 용 됩 니 다.이것 은 유일한 매개 변 수 를 받 아들 여 조회 에 부합 되 는 지 테스트 하 는 데 사용 합 니 다.item 를 통 해 현재 조 회 를 방문 하고 조회 와 일치 하면 불 값 this.query 을 되 돌려 줍 니 다.
sorter
함수.
정확하게 일치 하고 대소 문 자 를 구분 하 며 대소 문 자 를 구분 하지 않 습 니 다.
이 함 수 는 자동 으로 완 성 된 결 과 를 정렬 하 는 데 쓰 인 다.유일한 인자 true 를 받 아들 이 고 알림 을 입력 하 는 범위 도 있 습 니 다.사용 items 현재 조 회 를 참조 합 니 다.
highlighter
함수.
모든 기본 일치 강조
이 함 수 는 자동 으로 완 성 된 결 과 를 강조 하 는 데 쓰 인 다.유일한 인자 this.query 를 받 아들 이 고 알림 을 입력 하 는 범위 도 있 습 니 다.html 로 돌아 가 야 합 니 다.

!function($){

    "use strict"; // jshint ;_;


    /* TYPEAHEAD PUBLIC CLASS DEFINITION
  * ================================= */

    var Typeahead = function (element, options) {
        this.$element = $(element)
        this.options = $.extend({}, $.fn.typeahead.defaults, options)
        this.matcher = this.options.matcher || this.matcher//     matcher  
        this.sorter = this.options.sorter || this.sorter//     sorter  
        this.highlighter = this.options.highlighter || this.highlighter//     highlighter  
        this.updater = this.options.updater || this.updater//     updater  
        this.source = this.options.source
        this.$menu = $(this.options.menu)//UL
        this.shown = false
        this.listen()
    }

    Typeahead.prototype = {

        constructor: Typeahead

        , 
        select: function () {
            var val = this.$menu.find('.active').attr('data-value')
            this.$element
            .val(this.updater(val))
            .change()
            return this.hide()
        }

        , 
        updater: function (item) {
            return item
        }

        , 
        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
console.log(items)
            return items ? this.process(items) : this
        }

        , 
        process: 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
            }
            //      LI     this.options.items   ,       
            return this.render(items.slice(0, this.options.items)).show()
        }

        , 
        matcher: function (item) {//      ,      
            return ~item.toLowerCase().indexOf(this.query.toLowerCase())
        }

        , 
        sorter: function (items) {//  , beginswith,caseSensitive,caseInsensitive  
            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)
        }

        , 
        highlighter: function (item) {//item     
            var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')//                    
            return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
                return '<strong>' + match + '</strong>'//           LI innerHTML      strong  
            })
        }

        , 
        render: function (items) {
            var that = this

            items = $(items).map(function (i, item) {
                i = $(that.options.item).attr('data-value', item)
                i.find('a').html(that.highlighter(item))
                return i[0]
            })

            items.first().addClass('active')
            this.$menu.html(items)
            return this
        }

        , //    
        next: function (event) {
            var active = this.$menu.find('.active').removeClass('active')
            , next = active.next()

            if (!next.length) {
                next = $(this.$menu.find('li')[0])
            }

            next.addClass('active')
        }

        , //    
        prev: function (event) {
            var active = this.$menu.find('.active').removeClass('active')
            , prev = active.prev()

            if (!prev.length) {
                prev = this.$menu.find('li').last()
            }

            prev.addClass('active')
        }

        , 
        listen: function () {
            this.$element
            .on('blur',     $.proxy(this.blur, 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))
        }
        //        ,        
        , 
        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) {//   keydown  keypress
            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) {
                //    keydown      
                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()
        }

        , 
        blur: function (e) {//      
            var that = this
            setTimeout(function () {
                that.hide()
            }, 150)
        }

        , 
        click: function (e) {//        
            e.stopPropagation()
            e.preventDefault()
            this.select()
        }

        , 
        mouseenter: function (e) {
            this.$menu.find('.active').removeClass('active')
            $(e.currentTarget).addClass('active')
        }

    }


    /* 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>'
        , 
        minLength: 1
    }

    $.fn.typeahead.Constructor = Typeahead


    /* TYPEAHEAD NO CONFLICT
  * =================== */

    $.fn.typeahead.noConflict = function () {
        $.fn.typeahead = old
        return this
    }


    /* TYPEAHEAD DATA-API
  * ================== */

    $(document).on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
        var $this = $(this)
        if ($this.data('typeahead')) return
        e.preventDefault()
        $this.typeahead($this.data())//    data-*             
    })

}(window.jQuery);




< title > boottstrap 학습 by 사도 정미 < / title >







data-source="["Alabama","Alaska","Arizona","Arkansas","California","Colorado","Connecticut","Delaware","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Dakota","North Carolina","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming"]">


실행 코드

좋은 웹페이지 즐겨찾기