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

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

11
const ScrollSpy = (($) => {
fat's avatar
fat committed
12
13
14
15
16
17
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */

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

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

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

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

  const ClassName = {
44
    DROPDOWN_ITEM : 'dropdown-item',
fat's avatar
fat committed
45
46
47
48
49
    DROPDOWN_MENU : 'dropdown-menu',
    ACTIVE        : 'active'
  }

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

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

fat's avatar
fat committed
66
67
68
69
70
71
72
73
  /**
   * ------------------------------------------------------------------------
   * Class Definition
   * ------------------------------------------------------------------------
   */

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

85
      $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))
fat's avatar
fat committed
86
87
88
89
90

      this.refresh()
      this._process()
    }

XhmikosR's avatar
XhmikosR committed
91
    // Getters
fat's avatar
fat committed
92
93
94
95
96
97
98
99
100

    static get VERSION() {
      return VERSION
    }

    static get Default() {
      return Default
    }

XhmikosR's avatar
XhmikosR committed
101
    // Public
fat's avatar
fat committed
102
103

    refresh() {
XhmikosR's avatar
XhmikosR committed
104
105
      const autoMethod = this._scrollElement === this._scrollElement.window
        ? OffsetMethod.OFFSET : OffsetMethod.POSITION
106

XhmikosR's avatar
XhmikosR committed
107
108
      const offsetMethod = this._config.method === 'auto'
        ? autoMethod : this._config.method
fat's avatar
fat committed
109

XhmikosR's avatar
XhmikosR committed
110
111
      const offsetBase = offsetMethod === OffsetMethod.POSITION
        ? this._getScrollTop() : 0
fat's avatar
fat committed
112
113
114
115
116
117

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

      this._scrollHeight = this._getScrollHeight()

118
      const targets = [].slice.call(document.querySelectorAll(this._selector))
fat's avatar
fat committed
119
120
121
122

      targets
        .map((element) => {
          let target
123
          const targetSelector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
124
125

          if (targetSelector) {
126
            target = document.querySelector(targetSelector)
fat's avatar
fat committed
127
128
          }

129
130
131
          if (target) {
            const targetBCR = target.getBoundingClientRect()
            if (targetBCR.width || targetBCR.height) {
XhmikosR's avatar
XhmikosR committed
132
              // TODO (fat): remove sketch reliance on jQuery position/offset
133
134
135
136
137
              return [
                $(target)[offsetMethod]().top + offsetBase,
                targetSelector
              ]
            }
fat's avatar
fat committed
138
          }
139
          return null
fat's avatar
fat committed
140
        })
XhmikosR's avatar
XhmikosR committed
141
142
        .filter((item) => item)
        .sort((a, b) => a[0] - b[0])
fat's avatar
fat committed
143
144
145
146
147
148
        .forEach((item) => {
          this._offsets.push(item[0])
          this._targets.push(item[1])
        })
    }

fat's avatar
fat committed
149
150
151
152
153
154
155
156
157
158
159
160
161
162
    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
    }

XhmikosR's avatar
XhmikosR committed
163
    // Private
fat's avatar
fat committed
164

fat's avatar
fat committed
165
    _getConfig(config) {
166
167
      config = {
        ...Default,
168
        ...typeof config === 'object' && config ? config : {}
169
      }
fat's avatar
fat committed
170
171
172
173
174
175
176
177
178
179

      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
180
181
      Util.typeCheckConfig(NAME, config, DefaultType)

fat's avatar
fat committed
182
183
184
      return config
    }

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

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

197
    _getOffsetHeight() {
XhmikosR's avatar
XhmikosR committed
198
199
      return this._scrollElement === window
        ? window.innerHeight : this._scrollElement.getBoundingClientRect().height
200
201
    }

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

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

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

        if (this._activeTarget !== target) {
          this._activate(target)
        }
219
        return
fat's avatar
fat committed
220
221
      }

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

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

253
      const $link = $([].slice.call(document.querySelectorAll(queries.join(','))))
fat's avatar
fat committed
254

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

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

    _clear() {
274
275
      const nodes = [].slice.call(document.querySelectorAll(this._selector))
      $(nodes).filter(Selector.ACTIVE).removeClass(ClassName.ACTIVE)
fat's avatar
fat committed
276
277
    }

XhmikosR's avatar
XhmikosR committed
278
    // Static
fat's avatar
fat committed
279
280
281

    static _jQueryInterface(config) {
      return this.each(function () {
XhmikosR's avatar
XhmikosR committed
282
        let data = $(this).data(DATA_KEY)
283
        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') {
XhmikosR's avatar
XhmikosR committed
292
            throw new TypeError(`No method named "${config}"`)
293
          }
fat's avatar
fat committed
294
295
296
297
298
299
300
301
302
303
304
305
          data[config]()
        }
      })
    }
  }

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

Jacob Thornton's avatar
Jacob Thornton committed
306
  $(window).on(Event.LOAD_DATA_API, () => {
307
    const scrollSpys = [].slice.call(document.querySelectorAll(Selector.DATA_SPY))
fat's avatar
fat committed
308

309
310
    const scrollSpysLength = scrollSpys.length
    for (let i = scrollSpysLength; i--;) {
311
      const $spy = $(scrollSpys[i])
fat's avatar
fat committed
312
313
314
315
316
317
318
319
320
321
      ScrollSpy._jQueryInterface.call($spy, $spy.data())
    }
  })

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

XhmikosR's avatar
XhmikosR committed
322
  $.fn[NAME] = ScrollSpy._jQueryInterface
fat's avatar
fat committed
323
  $.fn[NAME].Constructor = ScrollSpy
XhmikosR's avatar
XhmikosR committed
324
  $.fn[NAME].noConflict = () => {
fat's avatar
fat committed
325
326
327
328
329
    $.fn[NAME] = JQUERY_NO_CONFLICT
    return ScrollSpy._jQueryInterface
  }

  return ScrollSpy
330
})($)
fat's avatar
fat committed
331
332

export default ScrollSpy