scrollspy.js 8.7 KB
Newer Older
fat's avatar
fat committed
1
2
/**
 * --------------------------------------------------------------------------
Mark Otto's avatar
Mark Otto committed
3
 * Bootstrap (v4.3.0): scrollspy.js
fat's avatar
fat committed
4
5
6
7
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

8
9
10
import $ from 'jquery'
import Util from './util'

Johann-S's avatar
Johann-S committed
11
12
13
14
15
/**
 * ------------------------------------------------------------------------
 * Constants
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
16

Johann-S's avatar
Johann-S committed
17
const NAME               = 'scrollspy'
Mark Otto's avatar
Mark Otto committed
18
const VERSION            = '4.3.0'
Johann-S's avatar
Johann-S committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
const DATA_KEY           = 'bs.scrollspy'
const EVENT_KEY          = `.${DATA_KEY}`
const DATA_API_KEY       = '.data-api'
const JQUERY_NO_CONFLICT = $.fn[NAME]

const Default = {
  offset : 10,
  method : 'auto',
  target : ''
}

const DefaultType = {
  offset : 'number',
  method : 'string',
  target : '(string|element)'
}

const Event = {
  ACTIVATE      : `activate${EVENT_KEY}`,
  SCROLL        : `scroll${EVENT_KEY}`,
  LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`
}

const ClassName = {
  DROPDOWN_ITEM : 'dropdown-item',
  DROPDOWN_MENU : 'dropdown-menu',
  ACTIVE        : 'active'
}

const Selector = {
  DATA_SPY        : '[data-spy="scroll"]',
  ACTIVE          : '.active',
  NAV_LIST_GROUP  : '.nav, .list-group',
  NAV_LINKS       : '.nav-link',
  NAV_ITEMS       : '.nav-item',
  LIST_ITEMS      : '.list-group-item',
  DROPDOWN        : '.dropdown',
  DROPDOWN_ITEMS  : '.dropdown-item',
  DROPDOWN_TOGGLE : '.dropdown-toggle'
}

const OffsetMethod = {
  OFFSET   : 'offset',
  POSITION : 'position'
}
fat's avatar
fat committed
64

Johann-S's avatar
Johann-S committed
65
66
67
68
69
/**
 * ------------------------------------------------------------------------
 * Class Definition
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
70

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

    $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))

    this.refresh()
    this._process()
fat's avatar
fat committed
88
89
  }

Johann-S's avatar
Johann-S committed
90
  // Getters
fat's avatar
fat committed
91

Johann-S's avatar
Johann-S committed
92
93
  static get VERSION() {
    return VERSION
94
95
  }

Johann-S's avatar
Johann-S committed
96
97
98
  static get Default() {
    return Default
  }
fat's avatar
fat committed
99

Johann-S's avatar
Johann-S committed
100
  // Public
fat's avatar
fat committed
101

Johann-S's avatar
Johann-S committed
102
103
104
  refresh() {
    const autoMethod = this._scrollElement === this._scrollElement.window
      ? OffsetMethod.OFFSET : OffsetMethod.POSITION
105

Johann-S's avatar
Johann-S committed
106
107
    const offsetMethod = this._config.method === 'auto'
      ? autoMethod : this._config.method
fat's avatar
fat committed
108

Johann-S's avatar
Johann-S committed
109
110
    const offsetBase = offsetMethod === OffsetMethod.POSITION
      ? this._getScrollTop() : 0
fat's avatar
fat committed
111

Johann-S's avatar
Johann-S committed
112
113
    this._offsets = []
    this._targets = []
fat's avatar
fat committed
114

Johann-S's avatar
Johann-S committed
115
    this._scrollHeight = this._getScrollHeight()
fat's avatar
fat committed
116

Johann-S's avatar
Johann-S committed
117
    const targets = [].slice.call(document.querySelectorAll(this._selector))
fat's avatar
fat committed
118

Johann-S's avatar
Johann-S committed
119
120
121
122
    targets
      .map((element) => {
        let target
        const targetSelector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
123

Johann-S's avatar
Johann-S committed
124
125
126
        if (targetSelector) {
          target = document.querySelector(targetSelector)
        }
fat's avatar
fat committed
127

Johann-S's avatar
Johann-S committed
128
129
130
131
132
133
134
135
        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
136
          }
fat's avatar
fat committed
137
        }
Johann-S's avatar
Johann-S committed
138
139
140
141
142
143
144
145
146
        return null
      })
      .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
147

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

Johann-S's avatar
Johann-S committed
162
  // Private
fat's avatar
fat committed
163

Johann-S's avatar
Johann-S committed
164
165
166
167
  _getConfig(config) {
    config = {
      ...Default,
      ...typeof config === 'object' && config ? config : {}
fat's avatar
fat committed
168
169
    }

Johann-S's avatar
Johann-S committed
170
171
172
173
174
175
176
    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
177
178
    }

Johann-S's avatar
Johann-S committed
179
    Util.typeCheckConfig(NAME, config, DefaultType)
180

Johann-S's avatar
Johann-S committed
181
182
    return config
  }
fat's avatar
fat committed
183

Johann-S's avatar
Johann-S committed
184
185
186
187
  _getScrollTop() {
    return this._scrollElement === window
      ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop
  }
fat's avatar
fat committed
188

Johann-S's avatar
Johann-S committed
189
190
191
192
193
194
  _getScrollHeight() {
    return this._scrollElement.scrollHeight || Math.max(
      document.body.scrollHeight,
      document.documentElement.scrollHeight
    )
  }
fat's avatar
fat committed
195

Johann-S's avatar
Johann-S committed
196
197
198
199
  _getOffsetHeight() {
    return this._scrollElement === window
      ? window.innerHeight : this._scrollElement.getBoundingClientRect().height
  }
fat's avatar
fat committed
200

Johann-S's avatar
Johann-S committed
201
202
203
204
205
206
  _process() {
    const scrollTop    = this._getScrollTop() + this._config.offset
    const scrollHeight = this._getScrollHeight()
    const maxScroll    = this._config.offset +
      scrollHeight -
      this._getOffsetHeight()
fat's avatar
fat committed
207

Johann-S's avatar
Johann-S committed
208
209
210
    if (this._scrollHeight !== scrollHeight) {
      this.refresh()
    }
fat's avatar
fat committed
211

Johann-S's avatar
Johann-S committed
212
213
214
215
216
    if (scrollTop >= maxScroll) {
      const target = this._targets[this._targets.length - 1]

      if (this._activeTarget !== target) {
        this._activate(target)
fat's avatar
fat committed
217
      }
Johann-S's avatar
Johann-S committed
218
      return
fat's avatar
fat committed
219
220
    }

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

Johann-S's avatar
Johann-S committed
227
228
229
230
231
232
    const offsetLength = this._offsets.length
    for (let i = offsetLength; i--;) {
      const isActiveTarget = this._activeTarget !== this._targets[i] &&
          scrollTop >= this._offsets[i] &&
          (typeof this._offsets[i + 1] === 'undefined' ||
              scrollTop < this._offsets[i + 1])
fat's avatar
fat committed
233

Johann-S's avatar
Johann-S committed
234
235
      if (isActiveTarget) {
        this._activate(this._targets[i])
fat's avatar
fat committed
236
237
      }
    }
Johann-S's avatar
Johann-S committed
238
  }
fat's avatar
fat committed
239

Johann-S's avatar
Johann-S committed
240
241
242
243
244
  _activate(target) {
    this._activeTarget = target

    this._clear()

245
246
247
    const queries = this._selector
      .split(',')
      .map((selector) => `${selector}[data-target="${target}"],${selector}[href="${target}"]`)
Johann-S's avatar
Johann-S committed
248
249
250
251
252
253
254
255
256
257
258
259
260
261

    const $link = $([].slice.call(document.querySelectorAll(queries.join(','))))

    if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {
      $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)
      $link.addClass(ClassName.ACTIVE)
    } else {
      // 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)
      // 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
262
263
    }

Johann-S's avatar
Johann-S committed
264
265
266
267
    $(this._scrollElement).trigger(Event.ACTIVATE, {
      relatedTarget: target
    })
  }
fat's avatar
fat committed
268

Johann-S's avatar
Johann-S committed
269
  _clear() {
270
271
272
    [].slice.call(document.querySelectorAll(this._selector))
      .filter((node) => node.classList.contains(ClassName.ACTIVE))
      .forEach((node) => node.classList.remove(ClassName.ACTIVE))
Johann-S's avatar
Johann-S committed
273
  }
fat's avatar
fat committed
274

Johann-S's avatar
Johann-S committed
275
  // Static
fat's avatar
fat committed
276

Johann-S's avatar
Johann-S committed
277
278
279
280
281
282
283
284
285
286
287
288
289
  static _jQueryInterface(config) {
    return this.each(function () {
      let data = $(this).data(DATA_KEY)
      const _config = typeof config === 'object' && config

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

      if (typeof config === 'string') {
        if (typeof data[config] === 'undefined') {
          throw new TypeError(`No method named "${config}"`)
fat's avatar
fat committed
290
        }
Johann-S's avatar
Johann-S committed
291
292
293
        data[config]()
      }
    })
fat's avatar
fat committed
294
  }
Johann-S's avatar
Johann-S committed
295
}
fat's avatar
fat committed
296

Johann-S's avatar
Johann-S committed
297
298
299
300
301
/**
 * ------------------------------------------------------------------------
 * Data Api implementation
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
302

Johann-S's avatar
Johann-S committed
303
304
305
$(window).on(Event.LOAD_DATA_API, () => {
  const scrollSpys = [].slice.call(document.querySelectorAll(Selector.DATA_SPY))
  const scrollSpysLength = scrollSpys.length
306

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

/**
 * ------------------------------------------------------------------------
 * jQuery
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
318

Johann-S's avatar
Johann-S committed
319
320
321
322
323
324
$.fn[NAME] = ScrollSpy._jQueryInterface
$.fn[NAME].Constructor = ScrollSpy
$.fn[NAME].noConflict = () => {
  $.fn[NAME] = JQUERY_NO_CONFLICT
  return ScrollSpy._jQueryInterface
}
fat's avatar
fat committed
325
326

export default ScrollSpy