-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIntersectionObserver.js
80 lines (80 loc) · 2.78 KB
/
IntersectionObserver.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
export default {
name: 'intersect',
abstract: true,
props: {
/**
* A specific ancestor of the target element being observed.
* If no value was passed to the constructor or this is null, the
* top-level document's viewport is used.
* @url: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/root
*/
root: {
default: () => null
},
/**
* An offset rectangle applied to the root's bounding box when
* calculating intersections, effectively shrinking or growing the
* root for calculation purposes. The value returned by this property
* may not be the same as the one specified when calling the constructor
* as it may be changed to match internal requirements. Each offset can be
* expressed in pixels (px) or as a percentage (%).
* The default is "0px 0px 0px 0px".
* @url: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/rootMargin
*/
rootMargin: {
type: String,
default: () => '0px 0px 0px 0px'
},
/**
* A list of thresholds, sorted in increasing numeric order, where each threshold
* is a ratio of intersection area to bounding box area of an observed target. Notifications
* for a target are generated when any of the thresholds are crossed for that target. If no value
* was passed to the constructor, 0 is used.
* @url: https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/thresholds
*/
threshold: {
type: Array,
default: () => [0, 0.2]
}
},
data () {
return {
_observer: null
}
},
created () {
if ('IntersectionObserver' in window) {
this.$data._observer = new IntersectionObserver((entries) => { // eslint-disable-line no-undef
if (!entries[0].isIntersecting) {
this.$emit('leave', [entries[0]])
} else {
this.$emit('enter', [entries[0]])
}
this.$emit('change', [entries[0]])
}, {
threshold: this.threshold,
root: this.root,
rootMargin: this.rootMargin
})
} else {
console.warn('[✋ VueObservables] You need to polyfill IntersectionObserver')
}
},
mounted () {
this.$nextTick(() => {
if (this.$slots.default && this.$slots.default.length > 1) {
console.warn('[✋ VueObservables] You may only wrap one element in a <intersect> component.')
} else if (!this.$slots.default || this.$slots.default.length < 1) {
console.warn('[✋ VueObservables] You must have one child inside a <intersect> component.')
return
}
this.$data._observer.observe(this.$slots.default[0].elm)
})
},
destroyed () {
this.$data._observer.disconnect()
},
render () {
return this.$slots.default ? this.$slots.default[0] : null
}
}