-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathscrollTo.js
48 lines (37 loc) · 1.42 KB
/
scrollTo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
'use strict';
var getOffset = require('../query/offset')
, height = require('../query/height')
, getScrollParent = require('../query/scrollParent')
, scrollTop = require('../query/scrollTop')
, raf = require('./requestAnimationFrame')
, getWindow = require('../query/isWindow')
module.exports = function scrollTo( selected, scrollParent, scrollToTop = false ) {
var offset = getOffset(selected)
, poff = { top: 0, left: 0 }
, list, listScrollTop, selectedTop, isWin
, selectedHeight, listHeight, bottom;
if( !selected ) return
list = scrollParent || getScrollParent(selected)
isWin = getWindow(list)
listScrollTop = scrollTop(list)
listHeight = height(list, true)
isWin = getWindow(list)
if (!isWin)
poff = getOffset(list)
offset = {
top: offset.top - poff.top,
left: offset.left - poff.left,
height: offset.height,
width: offset.width
}
selectedHeight = offset.height
selectedTop = offset.top + (isWin ? 0 : listScrollTop)
bottom = scrollToTop ? selectedTop + listHeight : selectedTop + selectedHeight;
listScrollTop = listScrollTop > selectedTop
? selectedTop
: bottom > (listScrollTop + listHeight)
? (bottom - listHeight)
: listScrollTop
var id = raf(() => scrollTop(list, listScrollTop))
return () => raf.cancel(id)
}