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


/**
 * --------------------------------------------------------------------------
Mark Otto's avatar
Mark Otto committed
7
 * Bootstrap (v4.0.0-beta): scrollspy.js
fat's avatar
fat committed
8
9
10
11
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

12
const ScrollSpy = (() => {
fat's avatar
fat committed
13
14
15
16
17
18
19
20


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

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

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

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

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

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

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

63
64
65
66
67
  const OffsetMethod = {
    OFFSET   : 'offset',
    POSITION : 'position'
  }

fat's avatar
fat committed
68
69
70
71
72
73
74
75
76
77

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

  class ScrollSpy {

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

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

      this.refresh()
      this._process()
    }


    // getters

    static get VERSION() {
      return VERSION
    }

    static get Default() {
      return Default
    }


    // public

    refresh() {
110
      const autoMethod = this._scrollElement !== this._scrollElement.window ?
111
112
        OffsetMethod.POSITION : OffsetMethod.OFFSET

113
      const offsetMethod = this._config.method === 'auto' ?
114
        autoMethod : this._config.method
fat's avatar
fat committed
115

116
      const offsetBase = offsetMethod === OffsetMethod.POSITION ?
117
        this._getScrollTop() : 0
fat's avatar
fat committed
118
119
120
121
122
123

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

      this._scrollHeight = this._getScrollHeight()

124
      const targets = $.makeArray($(this._selector))
fat's avatar
fat committed
125
126
127
128

      targets
        .map((element) => {
          let target
129
          const targetSelector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
130
131
132
133
134

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

135
136
137
138
139
140
141
142
143
          if (target) {
            const targetBCR = target.getBoundingClientRect()
            if (targetBCR.width || targetBCR.height) {
              // todo (fat): remove sketch reliance on jQuery position/offset
              return [
                $(target)[offsetMethod]().top + offsetBase,
                targetSelector
              ]
            }
fat's avatar
fat committed
144
          }
145
          return null
fat's avatar
fat committed
146
147
148
149
150
151
152
153
154
        })
        .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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
    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
169
170
171

    // private

fat's avatar
fat committed
172
173
174
175
176
177
178
179
180
181
182
183
    _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
184
185
      Util.typeCheckConfig(NAME, config, DefaultType)

fat's avatar
fat committed
186
187
188
      return config
    }

fat's avatar
fat committed
189
190
    _getScrollTop() {
      return this._scrollElement === window ?
191
          this._scrollElement.pageYOffset : this._scrollElement.scrollTop
fat's avatar
fat committed
192
193
194
195
196
197
198
199
200
    }

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

201
202
    _getOffsetHeight() {
      return this._scrollElement === window ?
203
          window.innerHeight : this._scrollElement.getBoundingClientRect().height
204
205
    }

fat's avatar
fat committed
206
    _process() {
207
208
209
      const scrollTop    = this._getScrollTop() + this._config.offset
      const scrollHeight = this._getScrollHeight()
      const maxScroll    = this._config.offset
fat's avatar
fat committed
210
        + scrollHeight
211
        - this._getOffsetHeight()
fat's avatar
fat committed
212
213
214
215
216
217

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

      if (scrollTop >= maxScroll) {
218
        const target = this._targets[this._targets.length - 1]
fat's avatar
fat committed
219
220
221
222

        if (this._activeTarget !== target) {
          this._activate(target)
        }
223
        return
fat's avatar
fat committed
224
225
      }

226
      if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {
fat's avatar
fat committed
227
228
229
230
231
232
        this._activeTarget = null
        this._clear()
        return
      }

      for (let i = this._offsets.length; i--;) {
233
        const isActiveTarget = this._activeTarget !== this._targets[i]
fat's avatar
fat committed
234
            && scrollTop >= this._offsets[i]
XhmikosR's avatar
XhmikosR committed
235
            && (typeof this._offsets[i + 1] === 'undefined' ||
fat's avatar
fat committed
236
237
238
239
240
241
242
243
244
245
246
247
248
                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
249
      let queries = this._selector.split(',')
XhmikosR's avatar
XhmikosR committed
250
      // eslint-disable-next-line arrow-body-style
Jacob Thornton's avatar
Jacob Thornton committed
251
252
253
254
      queries     = queries.map((selector) => {
        return `${selector}[data-target="${target}"],` +
               `${selector}[href="${target}"]`
      })
fat's avatar
fat committed
255

256
      const $link = $(queries.join(','))
fat's avatar
fat committed
257

Jacob Thornton's avatar
Jacob Thornton committed
258
      if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
259
260
261
        $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)
        $link.addClass(ClassName.ACTIVE)
      } else {
262
263
264
265
266
        // Set triggered link as active
        $link.addClass(ClassName.ACTIVE)
        // Set triggered links parents as active
        // With both <ul> and <nav> markup a parent is the previous sibling of any nav ancestor
        $link.parents(Selector.NAV_LIST_GROUP).prev(`${Selector.NAV_LINKS}, ${Selector.LIST_ITEMS}`).addClass(ClassName.ACTIVE)
fat's avatar
fat committed
267
268
269
270
271
272
273
274
      }

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

    _clear() {
275
      $(this._selector).filter(Selector.ACTIVE).removeClass(ClassName.ACTIVE)
fat's avatar
fat committed
276
277
278
279
280
281
282
    }


    // static

    static _jQueryInterface(config) {
      return this.each(function () {
283
284
        let data      = $(this).data(DATA_KEY)
        const _config = typeof config === 'object' && config
fat's avatar
fat committed
285
286
287
288
289
290
291

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

        if (typeof config === 'string') {
XhmikosR's avatar
XhmikosR committed
292
          if (typeof data[config] === 'undefined') {
293
294
            throw new Error(`No method named "${config}"`)
          }
fat's avatar
fat committed
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
          data[config]()
        }
      })
    }


  }


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

Jacob Thornton's avatar
Jacob Thornton committed
310
  $(window).on(Event.LOAD_DATA_API, () => {
311
    const scrollSpys = $.makeArray($(Selector.DATA_SPY))
fat's avatar
fat committed
312
313

    for (let i = scrollSpys.length; i--;) {
314
      const $spy = $(scrollSpys[i])
fat's avatar
fat committed
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
      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