dry-ux 1.45.0 → 1.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
+ import * as React from "react";
1
2
  /**
2
3
  * Returns a function that will call the given handler and prevent the default event behavior.
3
4
  * @param handler: The handler to call.
@@ -55,3 +56,4 @@ export declare class Deferred<T> {
55
56
  get reject(): (error: any) => void;
56
57
  }
57
58
  export declare const tryParseJson: <T = any>(json: string, errorValue?: {}) => {};
59
+ export declare const useIsVisible: (ref: React.MutableRefObject<any>) => boolean;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.tryParseJson = exports.Deferred = exports.getUrlParams = exports.insertUrlParams = exports.insertUrlParam = exports.toHashCode = exports.StorageUtils = exports.fnWithAuthCheck = exports.formatDollar = exports.useCountdown = exports.importStyleSheet = exports.importScript = exports.preventDefault = void 0;
3
+ exports.useIsVisible = exports.tryParseJson = exports.Deferred = exports.getUrlParams = exports.insertUrlParams = exports.insertUrlParam = exports.toHashCode = exports.StorageUtils = exports.fnWithAuthCheck = exports.formatDollar = exports.useCountdown = exports.importStyleSheet = exports.importScript = exports.preventDefault = void 0;
4
4
  const React = require("react");
5
5
  /**
6
6
  * Returns a function that will call the given handler and prevent the default event behavior.
@@ -184,3 +184,35 @@ const tryParseJson = (json, errorValue = {}) => {
184
184
  }
185
185
  };
186
186
  exports.tryParseJson = tryParseJson;
187
+ const useIsVisible = (ref) => {
188
+ const [isIntersecting, setIntersecting] = React.useState(false);
189
+ React.useEffect(() => {
190
+ const observer = new IntersectionObserver(([entry]) => setIntersecting(entry.isIntersecting));
191
+ observer.observe(ref.current);
192
+ return () => {
193
+ observer.disconnect();
194
+ };
195
+ }, [ref]);
196
+ return isIntersecting;
197
+ };
198
+ exports.useIsVisible = useIsVisible;
199
+ const usePubSub = () => {
200
+ const getEventName = (event) => `dry-ux-event-${event}`;
201
+ const usePub = () => (event, data) => {
202
+ document.dispatchEvent(new CustomEvent(getEventName(event), {
203
+ detail: data,
204
+ }));
205
+ };
206
+ const useSub = (event, callback) => {
207
+ const controller = new AbortController();
208
+ const unsubscribe = () => controller.abort();
209
+ React.useEffect(() => {
210
+ document.addEventListener(getEventName(event), (event) => callback(event.detail), {
211
+ signal: controller.signal,
212
+ });
213
+ return unsubscribe;
214
+ }, []);
215
+ return unsubscribe;
216
+ };
217
+ return { usePub, useSub };
218
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dry-ux",
3
- "version": "1.45.0",
3
+ "version": "1.47.0",
4
4
  "description": "",
5
5
  "main": "dist/index",
6
6
  "scripts": {