bootstrap-twipsy.js 6.95 KB
Newer Older
Jacob Thornton's avatar
Jacob Thornton committed
1
/* ==========================================================
2
 * bootstrap-twipsy.js v2.0.0
Jacob Thornton's avatar
Jacob Thornton committed
3
 * http://twitter.github.com/bootstrap/javascript.html#twipsy
4
 * Inspired by the original jQuery.tipsy by Jason Frame
Jacob Thornton's avatar
Jacob Thornton committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 * ==========================================================
 * Copyright 2011 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.
 * ========================================================== */

21
!function( $ ) {
22

23
24
  "use strict"

25
26
27
28
 /* TWIPSY PUBLIC CLASS DEFINITION
  * ============================== */

  var Twipsy = function ( element, options ) {
29
    this.init('twipsy', element, options)
30
31
32
33
  }

  Twipsy.prototype = {

34
35
    constructor: Twipsy

36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
  , init: function ( type, element, options ) {
      var eventIn
        , eventOut

      this.type = type
      this.$element = $(element)
      this.options = this.getOptions(options)
      this.enabled = true

      if (this.options.trigger != 'manual') {
        eventIn  = this.options.trigger == 'hover' ? 'mouseenter' : 'focus'
        eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur'
        this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this))
        this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this))
      }

      this.options.selector ?
        (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
        this.fixTitle()
    }

  , getOptions: function ( options ) {
      options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data())

      if (options.delay && typeof options.delay == 'number') {
        options.delay = {
          show: options.delay
        , hide: options.delay
        }
      }

      return options
    }

  , enter: function ( e ) {
      var self = $(e.currentTarget)[this.type](this._options).data(this.type)

      if (!self.options.delay || !self.options.delay.show) {
        self.show()
      } else {
        self.hoverState = 'in'
        setTimeout(function() {
          if (self.hoverState == 'in') {
            self.show()
          }
        }, self.options.delay.show)
      }
    }

  , leave: function ( e ) {
      var self = $(e.currentTarget)[this.type](this._options).data(this.type)

      if (!self.options.delay || !self.options.delay.hide) {
        self.hide()
      } else {
        setTimeout(function() {
          self.hoverState = 'out'
          if (self.hoverState == 'out') {
            self.hide()
          }
        }, self.options.delay.hide)
      }
    }

  , show: function () {
      var $tip
102
        , inside
103
        , pos
104
105
106
107
108
        , actualWidth
        , actualHeight
        , placement
        , tp

109
      if (this.hasContent() && this.enabled) {
110
        $tip = this.tip()
Jacob Thornton's avatar
Jacob Thornton committed
111
        this.setContent()
112

Jacob Thornton's avatar
Jacob Thornton committed
113
        if (this.options.animation) {
114
115
116
          $tip.addClass('fade')
        }

117
118
119
120
121
122
        placement = typeof this.options.placement == 'function' ?
          thing.call(this, $tip[0], this.$element[0]) :
          this.options.placement

        inside = /in/.test(placement)

123
124
125
        $tip
          .remove()
          .css({ top: 0, left: 0, display: 'block' })
126
          .prependTo(inside ? this.$element : document.body)
127

128
        pos = this.getPosition(inside)
129
130
131

        actualWidth = $tip[0].offsetWidth
        actualHeight = $tip[0].offsetHeight
132

133
134
        switch (inside ? placement.split(' ')[1] : placement) {
          case 'bottom':
135
            tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}
136
            break
137
          case 'top':
138
            tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}
139
140
            break
          case 'left':
141
            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}
142
143
            break
          case 'right':
144
            tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}
145
146
147
148
149
150
            break
        }

        $tip
          .css(tp)
          .addClass(placement)
151
          .addClass('in')
152
153
154
      }
    }

Jacob Thornton's avatar
Jacob Thornton committed
155
156
  , setContent: function () {
      var $tip = this.tip()
157
      $tip.find('.twipsy-inner').html(this.getTitle())
Jacob Thornton's avatar
Jacob Thornton committed
158
159
160
      $tip[0].className = 'twipsy'
    }

161
  , hide: function () {
162
163
164
      var that = this
        , $tip = this.tip()

165
      $tip.removeClass('in')
166
167
168
169
170

      function removeElement () {
        $tip.remove()
      }

171
      $.support.transition && this.$tip.hasClass('fade') ?
172
        $tip.on($.support.transition.end, removeElement) :
173
174
175
        removeElement()
    }

176
  , fixTitle: function () {
177
178
179
180
181
182
      var $e = this.$element
      if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
        $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title')
      }
    }

183
184
185
186
  , hasContent: function () {
      return this.getTitle()
    }

187
188
189
190
191
192
193
  , getPosition: function (inside) {
      return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), {
        width: this.$element[0].offsetWidth
      , height: this.$element[0].offsetHeight
      })
    }

194
  , getTitle: function () {
195
196
197
198
      var title
        , $e = this.$element
        , o = this.options

199
200
      title = $e.attr('data-original-title')
        || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)
201

202
      title = title.toString().replace(/(^\s*|\s*$)/, "")
203

204
      return title
205
206
    }

207
  , tip: function () {
208
      return this.$tip = this.$tip || $(this.options.template)
209
210
    }

211
  , validate: function () {
212
213
214
215
216
217
218
      if (!this.$element[0].parentNode) {
        this.hide()
        this.$element = null
        this.options = null
      }
    }

219
  , enable: function () {
220
221
222
      this.enabled = true
    }

223
  , disable: function () {
224
225
226
      this.enabled = false
    }

227
  , toggleEnabled: function () {
228
229
230
      this.enabled = !this.enabled
    }

231
232
233
234
  , toggle: function () {
      this[this.tip().hasClass('in') ? 'hide' : 'show']()
    }

235
236
237
  }


Jacob Thornton's avatar
Jacob Thornton committed
238
239
 /* TWIPSY PLUGIN DEFINITION
  * ======================== */
240

241
242
243
244
245
246
247
248
  $.fn.twipsy = function ( option ) {
    return this.each(function () {
      var $this = $(this)
        , data = $this.data('twipsy')
        , options = typeof option == 'object' && option
      if (!data) $this.data('twipsy', (data = new Twipsy(this, options)))
      if (typeof option == 'string') data[option]()
    })
249
250
  }

251
  $.fn.twipsy.Constructor = Twipsy
Jacob Thornton's avatar
Jacob Thornton committed
252

253
  $.fn.twipsy.defaults = {
Jacob Thornton's avatar
Jacob Thornton committed
254
    animation: true
255
  , delay: 0
256
  , selector: false
257
  , placement: 'top'
258
  , trigger: 'hover'
259
  , title: ''
260
  , template: '<div class="twipsy"><div class="twipsy-arrow"></div><div class="twipsy-inner"></div></div>'
261
262
  }

263
}( window.jQuery )