Giter VIP home page Giter VIP logo

msc24x / xobserver Goto Github PK

View Code? Open in Web Editor NEW
3.0 2.0 0.0 31 KB

XObserver eliminates the usage of multiple instances of IntersectionObserver, by providing a scope based initialization of single IntersectionObsever and a few methods to intract with it.

Home Page: https://www.npmjs.com/package/@msc24x/xobserver

License: MIT License

TypeScript 100.00%
intersection-observer intersectionobserver intersectionobserver-api npm-module npm-package optimization-tools typescript

xobserver's Introduction

XObserver

Eliminates multiple instances of IntersectionObserver in your application and allows element level callbacks easily.

npm version

How does it work?

  1. XObserver simply maintains a global repository of the IntersectionObservers your application will use. Each global instance have a unique identifier called scope. Those instances can be ensured to be available by calling the .ping method under that particular scope.
  2. Unlike the traditional flow, the callback function of the observer is provided at the element level and not the instance level. This allows the application to assign separate callback for each element, This is done by .subscribe
  3. And yes, there an .unsubscribe method equivalent to the traditional .unobserve

Installation

yarn add @msc24x/xobserver

or

npm i @msc24x/xobserver

Methods

ping

XObserver.ping(scope: string, options?: IntersectionObserverInit, defCallback?: XObserverCallback)): void

Initialize/prepare one IntersectionObserver per given scope. A default callback for each subscriber can also be provided at the scope level, using defCallback. This can be called multiple times, only the first call will create an actual instance.

  • A new scope must be pinged if another set of options is required
  • defCallback for an element will be ignored if a callback was provided for that element during .subscribe

subscribe

XObserver.subscribe(scope: string, element: Element, callback?: XObserverCallback): void

Subscribe the element to the observer. Be aware that the callback provided is invoked only for given particular element.

  • The element must have a unique ID assigned to it

unsubscribe

XObserver.unsubscribe(scope: string, element: Element): void

Equivalent to calling .unobserve on IntersectionObserver.

Example (React)

A component that is being animated when in view and being hidden when out of view. The number of actual IntersectionObserver instances, in this case, will remain 2, no matter how many elements of this component is rendered.

export default function MyComponent(
	props: {id:string}
) {
	const [inView, setInView] = useState(false);
	const ref = useRef<HTMLDivElement>();

	useEffect(() => {
		XObserver.ping("appearance", { threshold: [0.3, 0] });

		const target = ref.current!;

		XObserver.subscribe("appearance", target, (entry) =>
			entry.isIntersecting && entry.intersectionRatio > 0.2
				? setInView(true)
				: setInView(false)
		);

		return () => {
			XObserver.unsubscribe("appearance", target);
		};
	}, []);

    return <div id={props.id} ref={ref as MutableRefObject<HTMLDivElement>}>In view : {inView}</div>
}

xobserver's People

Contributors

msc24x avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.