scrollspy.js 8.26 KB
Newer Older
fat's avatar
fat committed
1
2
3
4
5
import Util from './util'


/**
 * --------------------------------------------------------------------------
Mark Otto's avatar
Mark Otto committed
6
 * Bootstrap (v4.0.0-alpha.5): scrollspy.js
fat's avatar
fat committed
7
8
9
10
11
12
13
14
15
16
17
18
19
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

const ScrollSpy = (($) => {


  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */

fat's avatar
tab es6    
fat committed
20
  const NAME               = 'scrollspy'
Mark Otto's avatar
Mark Otto committed
21
  const VERSION            = '4.0.0-alpha.5'
fat's avatar
tab es6    
fat committed
22
  const DATA_KEY           = 'bs.scrollspy'
fat's avatar
fat committed
23
24
  const EVENT_KEY          = `.${DATA_KEY}`
  const DATA_API_KEY       = '.data-api'
fat's avatar
tab es6    
fat committed
25
  const JQUERY_NO_CONFLICT = $.fn[NAME]
fat's avatar
fat committed
26

27
  const Default = {
28
    offset : 10,
fat's avatar
fat committed
29
30
    method : 'auto',
    target : ''
fat's avatar
fat committed
31
32
  }

fat's avatar
fat committed
33
34
35
36
37
38
  const DefaultType = {
    offset : 'number',
    method : 'string',
    target : '(string|element)'
  }

fat's avatar
fat committed
39
  const Event = {
fat's avatar
fat committed
40
41
42
    ACTIVATE      : `activate${EVENT_KEY}`,
    SCROLL        : `scroll${EVENT_KEY}`,
    LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`
fat's avatar
fat committed
43
44
45
  }

  const ClassName = {
46
    DROPDOWN_ITEM : 'dropdown-item',
fat's avatar
fat committed
47
    DROPDOWN_MENU : 'dropdown-menu',
48
49
    NAV_LINK      : 'nav-link',
    NAV           : 'nav',
fat's avatar
fat committed
50
51
52
53
    ACTIVE        : 'active'
  }

  const Selector = {
54
55
56
57
58
59
60
61
62
    DATA_SPY        : '[data-spy="scroll"]',
    ACTIVE          : '.active',
    LIST_ITEM       : '.list-item',
    LI              : 'li',
    LI_DROPDOWN     : 'li.dropdown',
    NAV_LINKS       : '.nav-link',
    DROPDOWN        : '.dropdown',
    DROPDOWN_ITEMS  : '.dropdown-item',
    DROPDOWN_TOGGLE : '.dropdown-toggle'
fat's avatar
fat committed
63
64
  }

65
66
67
68
69
  const OffsetMethod = {
    OFFSET   : 'offset',
    POSITION : 'position'
  }

fat's avatar
fat committed
70
71
72
73
74
75
76
77
78
79

  /**
   * ------------------------------------------------------------------------
   * Class Definition
   * ------------------------------------------------------------------------
   */

  class ScrollSpy {

    constructor(element, config) {
fat's avatar
fat committed
80
      this._element       = element
fat's avatar
fat committed
81
      this._scrollElement = element.tagName === 'BODY' ? window : element
fat's avatar
fat committed
82
      this._config        = this._getConfig(config)
Jacob Thornton's avatar
Jacob Thornton committed
83
84
      this._selector      = `${this._config.target} ${Selector.NAV_LINKS},`
                          + `${this._config.target} ${Selector.DROPDOWN_ITEMS}`
fat's avatar
fat committed
85
86
87
88
89
      this._offsets       = []
      this._targets       = []
      this._activeTarget  = null
      this._scrollHeight  = 0

90
      $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))
fat's avatar
fat committed
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110

      this.refresh()
      this._process()
    }


    // getters

    static get VERSION() {
      return VERSION
    }

    static get Default() {
      return Default
    }


    // public

    refresh() {
111
112
113
114
115
      let autoMethod = this._scrollElement !== this._scrollElement.window ?
        OffsetMethod.POSITION : OffsetMethod.OFFSET

      let offsetMethod = this._config.method === 'auto' ?
        autoMethod : this._config.method
fat's avatar
fat committed
116

117
118
      let offsetBase = offsetMethod === OffsetMethod.POSITION ?
        this._getScrollTop() : 0
fat's avatar
fat committed
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142

      this._offsets = []
      this._targets = []

      this._scrollHeight = this._getScrollHeight()

      let targets = $.makeArray($(this._selector))

      targets
        .map((element) => {
          let target
          let targetSelector = Util.getSelectorFromElement(element)

          if (targetSelector) {
            target = $(targetSelector)[0]
          }

          if (target && (target.offsetWidth || target.offsetHeight)) {
            // todo (fat): remove sketch reliance on jQuery position/offset
            return [
              $(target)[offsetMethod]().top + offsetBase,
              targetSelector
            ]
          }
143
          return null
fat's avatar
fat committed
144
145
146
147
148
149
150
151
152
        })
        .filter((item)  => item)
        .sort((a, b)    => a[0] - b[0])
        .forEach((item) => {
          this._offsets.push(item[0])
          this._targets.push(item[1])
        })
    }

fat's avatar
fat committed
153
154
155
156
157
158
159
160
161
162
163
164
165
166
    dispose() {
      $.removeData(this._element, DATA_KEY)
      $(this._scrollElement).off(EVENT_KEY)

      this._element       = null
      this._scrollElement = null
      this._config        = null
      this._selector      = null
      this._offsets       = null
      this._targets       = null
      this._activeTarget  = null
      this._scrollHeight  = null
    }

fat's avatar
fat committed
167
168
169

    // private

fat's avatar
fat committed
170
171
172
173
174
175
176
177
178
179
180
181
    _getConfig(config) {
      config = $.extend({}, Default, config)

      if (typeof config.target !== 'string') {
        let id = $(config.target).attr('id')
        if (!id) {
          id = Util.getUID(NAME)
          $(config.target).attr('id', id)
        }
        config.target = `#${id}`
      }

fat's avatar
fat committed
182
183
      Util.typeCheckConfig(NAME, config, DefaultType)

fat's avatar
fat committed
184
185
186
      return config
    }

fat's avatar
fat committed
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
    _getScrollTop() {
      return this._scrollElement === window ?
          this._scrollElement.scrollY : this._scrollElement.scrollTop
    }

    _getScrollHeight() {
      return this._scrollElement.scrollHeight || Math.max(
        document.body.scrollHeight,
        document.documentElement.scrollHeight
      )
    }

    _process() {
      let scrollTop    = this._getScrollTop() + this._config.offset
      let scrollHeight = this._getScrollHeight()
      let maxScroll    = this._config.offset
        + scrollHeight
        - this._scrollElement.offsetHeight

      if (this._scrollHeight !== scrollHeight) {
        this.refresh()
      }

      if (scrollTop >= maxScroll) {
        let target = this._targets[this._targets.length - 1]

        if (this._activeTarget !== target) {
          this._activate(target)
        }
      }

      if (this._activeTarget && scrollTop < this._offsets[0]) {
        this._activeTarget = null
        this._clear()
        return
      }

      for (let i = this._offsets.length; i--;) {
        let isActiveTarget = this._activeTarget !== this._targets[i]
            && scrollTop >= this._offsets[i]
            && (this._offsets[i + 1] === undefined ||
                scrollTop < this._offsets[i + 1])

        if (isActiveTarget) {
          this._activate(this._targets[i])
        }
      }
    }

    _activate(target) {
      this._activeTarget = target

      this._clear()

Jacob Thornton's avatar
Jacob Thornton committed
241
242
243
244
245
      let queries = this._selector.split(',')
      queries     = queries.map((selector) => {
        return `${selector}[data-target="${target}"],` +
               `${selector}[href="${target}"]`
      })
fat's avatar
fat committed
246

Jacob Thornton's avatar
Jacob Thornton committed
247
      let $link = $(queries.join(','))
fat's avatar
fat committed
248

Jacob Thornton's avatar
Jacob Thornton committed
249
      if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
250
251
252
        $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)
        $link.addClass(ClassName.ACTIVE)
      } else {
253
        // todo (fat) this is kinda sus...
254
255
        // recursively add actives to tested nav-links
        $link.parents(Selector.LI).find(Selector.NAV_LINKS).addClass(ClassName.ACTIVE)
fat's avatar
fat committed
256
257
258
259
260
261
262
263
      }

      $(this._scrollElement).trigger(Event.ACTIVATE, {
        relatedTarget: target
      })
    }

    _clear() {
264
      $(this._selector).filter(Selector.ACTIVE).removeClass(ClassName.ACTIVE)
fat's avatar
fat committed
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
    }


    // static

    static _jQueryInterface(config) {
      return this.each(function () {
        let data    = $(this).data(DATA_KEY)
        let _config = typeof config === 'object' && config || null

        if (!data) {
          data = new ScrollSpy(this, _config)
          $(this).data(DATA_KEY, data)
        }

        if (typeof config === 'string') {
281
282
283
          if (data[config] === undefined) {
            throw new Error(`No method named "${config}"`)
          }
fat's avatar
fat committed
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
          data[config]()
        }
      })
    }


  }


  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */

Jacob Thornton's avatar
Jacob Thornton committed
299
  $(window).on(Event.LOAD_DATA_API, () => {
fat's avatar
fat committed
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
    let scrollSpys = $.makeArray($(Selector.DATA_SPY))

    for (let i = scrollSpys.length; i--;) {
      let $spy = $(scrollSpys[i])
      ScrollSpy._jQueryInterface.call($spy, $spy.data())
    }
  })


  /**
   * ------------------------------------------------------------------------
   * jQuery
   * ------------------------------------------------------------------------
   */

  $.fn[NAME]             = ScrollSpy._jQueryInterface
  $.fn[NAME].Constructor = ScrollSpy
  $.fn[NAME].noConflict  = function () {
    $.fn[NAME] = JQUERY_NO_CONFLICT
    return ScrollSpy._jQueryInterface
  }

  return ScrollSpy

})(jQuery)

export default ScrollSpy