scrollspy.js 9.03 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
    NAV_ITEMS       : '.nav-item',
58
    LIST_ITEMS      : '.list-group-item',
59
60
61
    DROPDOWN        : '.dropdown',
    DROPDOWN_ITEMS  : '.dropdown-item',
    DROPDOWN_TOGGLE : '.dropdown-toggle'
fat's avatar
fat committed
62
63
  }

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

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

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

  class ScrollSpy {

    constructor(element, config) {
fat's avatar
fat committed
79
      this._element       = element
fat's avatar
fat committed
80
      this._scrollElement = element.tagName === 'BODY' ? window : element
fat's avatar
fat committed
81
      this._config        = this._getConfig(config)
Jacob Thornton's avatar
Jacob Thornton committed
82
      this._selector      = `${this._config.target} ${Selector.NAV_LINKS},`
83
                          + `${this._config.target} ${Selector.LIST_ITEMS},`
Jacob Thornton's avatar
Jacob Thornton committed
84
                          + `${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
      const autoMethod = this._scrollElement !== this._scrollElement.window ?
112
113
        OffsetMethod.POSITION : OffsetMethod.OFFSET

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

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

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

      this._scrollHeight = this._getScrollHeight()

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

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

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

136
137
138
139
140
141
142
143
144
          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
145
          }
146
          return null
fat's avatar
fat committed
147
148
149
150
151
152
153
154
155
        })
        .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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
    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
170
171
172

    // private

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

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

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

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

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

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

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

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

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

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

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

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

Jacob Thornton's avatar
Jacob Thornton committed
259
      if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
260
261
262
        $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)
        $link.addClass(ClassName.ACTIVE)
      } else {
263
264
265
266
267
        // 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)
268
269
        // Handle special case when .nav-link is inside .nav-item
        $link.parents(Selector.NAV_LIST_GROUP).prev(Selector.NAV_ITEMS).children(Selector.NAV_LINKS).addClass(ClassName.ACTIVE)
fat's avatar
fat committed
270
271
272
273
274
275
276
277
      }

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

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


    // static

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

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

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


  }


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

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

    for (let i = scrollSpys.length; i--;) {
317
      const $spy = $(scrollSpys[i])
fat's avatar
fat committed
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

Johann-S's avatar
Johann-S committed
338
})($)
fat's avatar
fat committed
339
340

export default ScrollSpy