mirror of
https://github.com/plausible/analytics.git
synced 2024-12-20 16:11:49 +03:00
41 lines
872 B
JavaScript
41 lines
872 B
JavaScript
import React from 'react';
|
|
|
|
export default class extends React.Component {
|
|
componentDidMount() {
|
|
if ('IntersectionObserver' in window) {
|
|
this.attachObserver()
|
|
} else {
|
|
this.props.onVisible && this.props.onVisible()
|
|
}
|
|
}
|
|
|
|
attachObserver() {
|
|
this.observer = new IntersectionObserver((entries) => {
|
|
if (entries[0].isIntersecting) {
|
|
this.props.onVisible && this.props.onVisible()
|
|
this.observer.unobserve(this.element);
|
|
}
|
|
}, {
|
|
threshold: 0
|
|
});
|
|
|
|
this.observer.observe(this.element);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.observer && this.observer.unobserve(this.element);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div
|
|
ref={(el) => { this.element = el }}
|
|
className={this.props.className}
|
|
style={this.props.style}
|
|
>
|
|
{this.props.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|