12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div ref="container">
- <slot></slot>
- </div>
- </template>
- <script lang="ts">
- /*
- Implements a wrapper listening to viewport intersections via
- IntersectionObserver API
- Events
- ------
- intersecting (entry: IntersectionObserverEntry) -> When the component is intersecting the viewport
- */
- import { defineComponent } from "@nuxtjs/composition-api"
- export default defineComponent({
- data() {
- return {
- observer: null as IntersectionObserver | null,
- }
- },
- mounted() {
- this.observer = new IntersectionObserver(([entry]) => {
- if (entry && entry.isIntersecting) {
- this.$emit("intersecting", entry)
- }
- })
- this.observer.observe(this.$refs.container as Element)
- },
- beforeDestroy() {
- this.observer?.disconnect()
- },
- })
- </script>
|