scrollspy.js 8.79 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-beta): 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-beta'
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
48
49
50
51
    DROPDOWN_MENU : 'dropdown-menu',
    ACTIVE        : 'active'
  }

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

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

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

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

  class ScrollSpy {

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

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

      this.refresh()
      this._process()
    }


    // getters

    static get VERSION() {
      return VERSION
    }

    static get Default() {
      return Default
    }


    // public

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

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

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

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

      this._scrollHeight = this._getScrollHeight()

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

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

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

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

    // private

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

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

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

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

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

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

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

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

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

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

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

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

Jacob Thornton's avatar
Jacob Thornton committed
257
      if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
258
259
260
        $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)
        $link.addClass(ClassName.ACTIVE)
      } else {
261
262
263
264
265
        // 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
266
267
268
269
270
271
272
273
      }

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

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


    // static

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

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

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


  }


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

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

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