Welcome to mirror list, hosted at ThFree Co, Russian Federation.

intersection_observer.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0959df9a186f0c8123c2ca138e60e4461c8b4189 (plain)
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
import { memoize } from 'lodash';

import { uuids } from './uuids';

export const create = memoize((options = {}) => {
  const id = uuids()[0];

  return {
    id,
    observer: new IntersectionObserver((entries) => {
      entries.forEach((entry) => {
        entry.target.dispatchEvent(
          new CustomEvent(`IntersectionUpdate`, { detail: { entry, observer: id } }),
        );

        if (entry.isIntersecting) {
          entry.target.dispatchEvent(
            new CustomEvent(`IntersectionAppear`, { detail: { observer: id } }),
          );
        } else {
          entry.target.dispatchEvent(
            new CustomEvent(`IntersectionDisappear`, { detail: { observer: id } }),
          );
        }
      });
    }, options),
  };
});