@zayne-labs/toolkit-react 0.8.38 → 0.8.45

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,5 +1,5 @@
1
- import { createContext, useRef, useLayoutEffect, useCallback, useEffect, useState, useSyncExternalStore, useDebugValue, use } from 'react';
2
- import { on, setAnimationInterval, debounce, lockScroll, createLocationStore, isBrowser, createExternalStorageStore, throttleBySetTimeout, throttleByTime, throttleByFrame, copyToClipboard, createSearchParams } from '@zayne-labs/toolkit-core';
1
+ import { useState, createContext, useRef, useLayoutEffect, useCallback, useEffect, useSyncExternalStore, useDebugValue, use } from 'react';
2
+ import { on, setAnimationInterval, debounce, lockScroll, createLocationStore, createScrollObserver, createExternalStorageStore, throttleBySetTimeout, throttleByTime, throttleByFrame, copyToClipboard, createSearchParams } from '@zayne-labs/toolkit-core';
3
3
  import { isArray, isPlainObject, isString, isFunction } from '@zayne-labs/toolkit-type-helpers';
4
4
 
5
5
  // src/hooks/createCustomContext.ts
@@ -76,13 +76,13 @@ var useLifeCycle = ({ onMount, onUnmount }) => {
76
76
  }, []);
77
77
  };
78
78
 
79
- // src/hooks/effects/useOnMountEffect.ts
79
+ // src/hooks/effects/useMountEffect.ts
80
80
  var useMountEffect = (callBackFn) => {
81
81
  useLifeCycle({ onMount: callBackFn });
82
82
  };
83
83
 
84
- // src/hooks/effects/useOnUnMountEffect.ts
85
- var useOnUnmountEffect = (cleanUpFn) => useLifeCycle({ onUnmount: cleanUpFn });
84
+ // src/hooks/effects/useUnMountEffect.ts
85
+ var useUnmountEffect = (cleanUpFn) => useLifeCycle({ onUnmount: cleanUpFn });
86
86
  var removeClass = (target, className) => () => target.classList.remove(className);
87
87
  var useAnimateElementRefs = (elementsInfoArray) => {
88
88
  const elementsRef = useRef({});
@@ -152,7 +152,7 @@ var useCopyToClipboard = () => {
152
152
  var useDebouncedFn = (callBackFn, delay) => {
153
153
  const latestCallback = useCallbackRef(callBackFn);
154
154
  const debouncedFn = useConstant(() => debounce(latestCallback, delay));
155
- useOnUnmountEffect(() => {
155
+ useUnmountEffect(() => {
156
156
  debouncedFn.cancel();
157
157
  debouncedFn.cancelMaxWait();
158
158
  });
@@ -161,7 +161,7 @@ var useDebouncedFn = (callBackFn, delay) => {
161
161
  var useDebouncedState = (defaultValue, delay) => {
162
162
  const [value, setValue] = useState(defaultValue);
163
163
  const setDebouncedValue = useConstant(() => debounce(setValue, delay));
164
- useOnUnmountEffect(() => {
164
+ useUnmountEffect(() => {
165
165
  setDebouncedValue.cancel();
166
166
  setDebouncedValue.cancelMaxWait();
167
167
  });
@@ -286,7 +286,7 @@ var useAnimationPresence = (options = {}) => {
286
286
  isPresent: isMounted,
287
287
  isVisible: isShown,
288
288
  toggleVisibility,
289
- ...duration === undefined && { elementRef }
289
+ ...duration === void 0 && { elementRef }
290
290
  };
291
291
  };
292
292
  var useTransitionPresence = (options = {}) => {
@@ -332,7 +332,7 @@ var useTransitionPresence = (options = {}) => {
332
332
  isPresent: isMounted || isShown,
333
333
  isVisible: isMounted && isShown,
334
334
  toggleVisibility,
335
- ...duration === undefined && { elementRef }
335
+ ...duration === void 0 && { elementRef }
336
336
  };
337
337
  };
338
338
 
@@ -343,30 +343,25 @@ var usePresence = (options = {}) => {
343
343
  return useSpecificPresence(restOfOptions);
344
344
  };
345
345
  var useScrollObserver = (options = {}) => {
346
- const { rootMargin = "10px 0px 0px 0px", ...restOfOptions } = options;
346
+ const { onIntersection, rootMargin = "10px 0px 0px 0px", ...restOfOptions } = options;
347
347
  const [isScrolled, setIsScrolled] = useState(false);
348
- const elementObserver = useConstant(() => {
349
- if (!isBrowser()) return;
350
- return new IntersectionObserver(
351
- ([entry]) => {
352
- if (!entry) return;
353
- setIsScrolled(!entry.isIntersecting);
348
+ const savedOnIntersection = useCallbackRef(onIntersection);
349
+ const { handleObservation } = useConstant(() => {
350
+ return createScrollObserver({
351
+ onIntersection: (entry, observer) => {
352
+ const newIsScrolledState = !entry.isIntersecting;
353
+ setIsScrolled(newIsScrolledState);
354
+ entry.target.dataset.scrolled = String(newIsScrolledState);
355
+ savedOnIntersection(entry, observer);
354
356
  },
355
- { rootMargin, ...restOfOptions }
356
- );
357
+ rootMargin,
358
+ ...restOfOptions
359
+ });
357
360
  });
358
361
  const observedElementRef = useCallbackRef((element) => {
359
- const scrollWatcher = document.createElement("span");
360
- scrollWatcher.dataset.scrollWatcher = "";
361
- element?.before(scrollWatcher);
362
- if (!elementObserver) return;
363
- elementObserver.observe(scrollWatcher);
364
- const cleanupFn = () => {
365
- scrollWatcher.remove();
366
- elementObserver.disconnect();
367
- };
362
+ const cleanupFn = handleObservation(element);
368
363
  if (!element) {
369
- cleanupFn();
364
+ cleanupFn?.();
370
365
  return;
371
366
  }
372
367
  return cleanupFn;
@@ -446,7 +441,7 @@ var useStorageState = (...params) => {
446
441
  var useThrottleBySetTimeout = (callbackFn, delay) => {
447
442
  const latestCallback = useCallbackRef(callbackFn);
448
443
  const throttledCallback = useConstant(() => throttleBySetTimeout(latestCallback, delay));
449
- useOnUnmountEffect(() => throttledCallback.cancelTimeout());
444
+ useUnmountEffect(() => throttledCallback.cancelTimeout());
450
445
  return throttledCallback;
451
446
  };
452
447
  var useThrottleByTimer = (callbackFn, delay) => {
@@ -457,10 +452,39 @@ var useThrottleByTimer = (callbackFn, delay) => {
457
452
  var useThrottleByFrame = (callbackFn) => {
458
453
  const latestCallback = useCallbackRef(callbackFn);
459
454
  const throttledCallback = useConstant(() => throttleByFrame(latestCallback));
460
- useOnUnmountEffect(() => throttledCallback.cancelAnimation());
455
+ useUnmountEffect(() => throttledCallback.cancelAnimation());
461
456
  return throttledCallback;
462
457
  };
458
+ var replacer = (_, value) => {
459
+ if (!isPlainObject(value)) {
460
+ return value;
461
+ }
462
+ const transformedObject = Object.keys(value).sort().reduce((accumulator, key) => {
463
+ accumulator[key] = value[key];
464
+ return accumulator;
465
+ }, {});
466
+ return transformedObject;
467
+ };
468
+ var hashResourceKey = (resourceKey) => JSON.stringify(resourceKey, replacer);
469
+ var $PromiseCache = /* @__PURE__ */ new Map();
470
+ var useResource = (options) => {
471
+ const { fn, hashFn = hashResourceKey, key = () => [fn.toString()] } = options;
472
+ const computedResourceKey = isFunction(key) ? key() : key;
473
+ const hashedKey = hashFn(computedResourceKey);
474
+ const fetchResourceAndSetCache = () => {
475
+ const promise = fn({ resourceKey: computedResourceKey }).catch(($error) => {
476
+ return $error;
477
+ });
478
+ $PromiseCache.set(hashedKey, promise);
479
+ };
480
+ if (!$PromiseCache.has(hashedKey)) {
481
+ fetchResourceAndSetCache();
482
+ }
483
+ const cachedPromise = $PromiseCache.get(hashedKey);
484
+ const result = use(cachedPromise);
485
+ return { data: result, refetch: fetchResourceAndSetCache };
486
+ };
463
487
 
464
- export { ContextError, createCustomContext, getErrorMessage, useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useCallbackRef, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, useOnUnmountEffect, usePresence, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle };
465
- //# sourceMappingURL=chunk-EGZYEI7N.js.map
466
- //# sourceMappingURL=chunk-EGZYEI7N.js.map
488
+ export { ContextError, createCustomContext, getErrorMessage, useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useCallbackRef, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, usePresence, useResource, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle, useUnmountEffect };
489
+ //# sourceMappingURL=chunk-5Q4MKFW3.js.map
490
+ //# sourceMappingURL=chunk-5Q4MKFW3.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/hooks/createCustomContext.ts","../../src/hooks/useCallbackRef.ts","../../src/hooks/effects/useAfterMountEffect.ts","../../src/hooks/effects/useEffectOnce.ts","../../src/hooks/effects/useLifeCycle.ts","../../src/hooks/effects/useMountEffect.ts","../../src/hooks/effects/useUnMountEffect.ts","../../src/hooks/useAnimateElementRefs.ts","../../src/hooks/useConstant.ts","../../src/hooks/useAnimationInterval.ts","../../src/hooks/useCopyToClipboard.ts","../../src/hooks/useDebounce.ts","../../src/hooks/useToggle.ts","../../src/hooks/useDisclosure.ts","../../src/hooks/useIsServer.ts","../../src/hooks/useStore.ts","../../src/hooks/useLocation.ts","../../src/hooks/usePresence/useAnimationPresence.ts","../../src/hooks/usePresence/useTransitionPresence.ts","../../src/hooks/usePresence/usePresence.ts","../../src/hooks/useScrollObserver.ts","../../src/hooks/useSearch.ts","../../src/hooks/useSearchParams.ts","../../src/hooks/useStorageState.ts","../../src/hooks/useThrottle.ts","../../src/hooks/useResource.ts"],"names":["useRef","useEffect","useCallback","useState","useSyncExternalStore","on","isPlainObject","isFunction","use"],"mappings":"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","file":"chunk-5Q4MKFW3.js","sourcesContent":["import { createContext, use } from \"react\";\n\nexport class ContextError extends Error {\n\toverride name = \"ContextError\";\n\n\tconstructor(...args: Parameters<typeof Error>) {\n\t\tsuper(...args);\n\n\t\tError.captureStackTrace(this, this.constructor);\n\t}\n}\n\nexport const getErrorMessage = (hook: string, provider: string) => {\n\treturn `${hook} returned \"null\". Did you forget to wrap the necessary components within ${provider}?`;\n};\n\nexport type CustomContextOptions<TDefaultContextValue, TStrict extends boolean> = {\n\tdefaultValue?: TDefaultContextValue | null;\n\terrorMessage?: string;\n\thookName?: string;\n\tname?: string;\n\tproviderName?: string;\n\tstrict?: TStrict;\n};\n\ntype UseCustomContextResult<TContextValue, TStrict extends boolean> = TStrict extends true\n\t? TContextValue\n\t: TContextValue | null;\n\nconst createCustomContext = <TContextValue, TStrict extends boolean = true>(\n\toptions: CustomContextOptions<TContextValue, TStrict> = {}\n) => {\n\tconst {\n\t\tdefaultValue = null,\n\t\terrorMessage,\n\t\thookName = \"Unnamed Context hook\",\n\t\tname = \"Unnamed Context\",\n\t\tproviderName = \"Unnamed Provider\",\n\t\tstrict = true,\n\t} = options;\n\n\tconst Context = createContext<TContextValue | null>(defaultValue);\n\n\tContext.displayName = name;\n\n\tconst useCustomContext = (): UseCustomContextResult<TContextValue, TStrict> => {\n\t\tconst contextValue = use(Context);\n\n\t\tif (strict && contextValue === null) {\n\t\t\tthrow new ContextError(errorMessage ?? getErrorMessage(hookName, providerName));\n\t\t}\n\n\t\treturn contextValue as UseCustomContextResult<TContextValue, TStrict>;\n\t};\n\n\treturn [Context.Provider, useCustomContext] as const;\n};\n\nexport { createCustomContext };\n","import type { AnyFunction } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useCallback, useLayoutEffect, useRef } from \"react\";\n\n/**\n * Returns a stable function that always points to the latest version of the callback function.\n * @param callbackFn - The function to reference\n * @returns a stable function that always points to the latest version of the callback function\n */\n\nconst useCallbackRef = <TCallback = AnyFunction>(callbackFn: TCallback | undefined) => {\n\tconst callbackRef = useRef(callbackFn);\n\n\tuseLayoutEffect(() => {\n\t\t// == Doing this instead updating it during render cuz according to Dan Abramov, render should be pure\n\t\tcallbackRef.current = callbackFn;\n\t}, [callbackFn]);\n\n\tconst savedCallback = useCallback(\n\t\t// eslint-disable-next-line ts-eslint/no-unnecessary-condition -- callbackRef.current can be null in some cases\n\t\t(...params: unknown[]) => (callbackRef.current as AnyFunction)?.(...params) as unknown,\n\t\t[]\n\t);\n\n\treturn savedCallback as TCallback;\n};\n\nexport { useCallbackRef };\n","import { useEffect, useRef } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nconst useAfterMountEffect: typeof useEffect = (callBackFn, deps) => {\n\tconst isFirstMount = useRef(true);\n\tconst stableCallback = useCallbackRef(callBackFn);\n\n\tuseEffect(() => {\n\t\tif (isFirstMount.current) {\n\t\t\tisFirstMount.current = false;\n\t\t\treturn;\n\t\t}\n\n\t\tstableCallback();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableCallback is stable\n\t}, deps);\n};\nexport { useAfterMountEffect };\n","import { useEffect, useRef } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nconst useEffectOnce = (callBackFn: React.EffectCallback) => {\n\tconst stableCallback = useCallbackRef(callBackFn);\n\n\tconst effectGuard = useRef(false);\n\n\t// == savedCallback is always stable so no worries about re-execution of this effect\n\tuseEffect(() => {\n\t\tif (effectGuard.current) return;\n\n\t\teffectGuard.current = true;\n\n\t\treturn stableCallback();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableCallback is stable\n\t}, []);\n};\n\nexport { useEffectOnce };\n","import { useEffect } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nexport type Destructor = ReturnType<React.EffectCallback>;\n\ntype LifeCycleOptions = {\n\tonMount?: () => void;\n\tonUnmount?: Destructor;\n};\n\nconst useLifeCycle = ({ onMount, onUnmount }: LifeCycleOptions) => {\n\tconst stableOnMount = useCallbackRef(onMount);\n\tconst stableOnUnmount = useCallbackRef(onUnmount);\n\n\tuseEffect(() => {\n\t\tstableOnMount();\n\n\t\treturn stableOnUnmount;\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableOnMount and stableOnUnmount are stable\n\t}, []);\n};\n\nexport { useLifeCycle };\n","import { useLifeCycle } from \"./useLifeCycle\";\n\nconst useMountEffect = (callBackFn: () => void) => {\n\tuseLifeCycle({ onMount: callBackFn });\n};\n\nexport { useMountEffect };\n","import { type Destructor, useLifeCycle } from \"./useLifeCycle\";\n\nconst useUnmountEffect = (cleanUpFn: Destructor) => useLifeCycle({ onUnmount: cleanUpFn });\n\nexport { useUnmountEffect };\n","import { on } from \"@zayne-labs/toolkit-core\";\nimport { type NonEmptyArray, isArray } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useCallback, useRef } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\n\ntype ElementsInfoArray<TTargetElement extends string> = NonEmptyArray<{\n\tanimationClass: string;\n\ttargetElement: TTargetElement;\n}>;\n\nconst removeClass = (target: HTMLElement, className: string) => () => target.classList.remove(className);\n\n/**\n * This is a custom React hook that adds and removes animation classes to specified HTML elements.\n * @param elementsInfoArray - An array of objects that contain information about the animation class and the target HTML element.\n * @returns - An object containing the refs of the animated elements and a function to handle the initiation and removal animation.\n */\n\nconst useAnimateElementRefs = <TTargetElement extends string>(\n\telementsInfoArray: ElementsInfoArray<TTargetElement>\n) => {\n\tconst elementsRef = useRef<Record<TTargetElement, HTMLElement | null>>({} as never);\n\n\tconst addAnimationClasses = useCallbackRef(() => {\n\t\tif (!isArray(elementsInfoArray)) {\n\t\t\tconsole.error(\"elementsInfo is not an Array\");\n\t\t\treturn;\n\t\t}\n\n\t\tfor (const { animationClass, targetElement } of elementsInfoArray) {\n\t\t\tif (!elementsRef.current[targetElement]) {\n\t\t\t\tconsole.error(\"ElementError\", `\"${targetElement}\" element does not exist`);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\telementsRef.current[targetElement].classList.add(animationClass);\n\t\t}\n\t});\n\n\tconst removeAnimationClasses = useCallbackRef(() => {\n\t\tif (!isArray(elementsInfoArray)) {\n\t\t\tconsole.error(\"elementsInfo is not an Array\");\n\t\t\treturn;\n\t\t}\n\n\t\tfor (const { animationClass, targetElement } of elementsInfoArray) {\n\t\t\tif (!elementsRef.current[targetElement]) {\n\t\t\t\tconsole.error(\"ElementError\", `\"${targetElement}\" element does not exist`);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\ton(\n\t\t\t\t\"transitionend\",\n\t\t\t\telementsRef.current[targetElement],\n\t\t\t\tremoveClass(elementsRef.current[targetElement], animationClass)\n\t\t\t);\n\n\t\t\ton(\n\t\t\t\t\"animationend\",\n\t\t\t\telementsRef.current[targetElement],\n\t\t\t\tremoveClass(elementsRef.current[targetElement], animationClass)\n\t\t\t);\n\t\t}\n\t});\n\n\t// Add animation classes to elements and remove them after the animation ends\n\tconst handleElementsAnimation = useCallback(() => {\n\t\taddAnimationClasses();\n\n\t\tremoveAnimationClasses();\n\t}, [addAnimationClasses, removeAnimationClasses]);\n\n\treturn { animatedElements: elementsRef.current, handleElementsAnimation };\n};\n\nexport { useAnimateElementRefs };\n","import { useState } from \"react\";\n\nconst useConstant = <TResult>(initCallbackFn: () => TResult) => useState(initCallbackFn)[0];\n\nexport { useConstant };\n","import { type AnimationIntervalOptions, setAnimationInterval } from \"@zayne-labs/toolkit-core\";\nimport type { Prettify } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useEffect } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\ntype AnimationOptions = Prettify<\n\tAnimationIntervalOptions & {\n\t\tintervalDuration: number | null;\n\t\tonAnimation: () => void;\n\t}\n>;\n\nconst useAnimationInterval = (options: AnimationOptions) => {\n\tconst { intervalDuration, onAnimation, once } = options;\n\n\tconst latestCallback = useCallbackRef(onAnimation);\n\n\t// prettier-ignore\n\tconst { start, stop } = useConstant(() => setAnimationInterval(latestCallback, intervalDuration, { once }));\n\n\tuseEffect(() => {\n\t\tif (intervalDuration === null) return;\n\n\t\tstart();\n\n\t\treturn stop;\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- start and stop are stable\n\t}, [intervalDuration]);\n\n\treturn { start, stop };\n};\n\nexport { useAnimationInterval };\n","import { copyToClipboard } from \"@zayne-labs/toolkit-core\";\nimport { useState } from \"react\";\n\nconst useCopyToClipboard = () => {\n\tconst [state, setState] = useState(\"\");\n\n\tconst handleCopy = (value: string) => {\n\t\tsetState(value);\n\t\tvoid copyToClipboard(value);\n\t};\n\n\treturn { copiedValue: state, handleCopy };\n};\n\nexport { useCopyToClipboard };\n","import { debounce } from \"@zayne-labs/toolkit-core\";\nimport type { CallbackFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useState } from \"react\";\nimport { useUnmountEffect } from \"./effects/useUnMountEffect\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\nexport const useDebouncedFn = <TParams>(callBackFn: CallbackFn<TParams>, delay: number | undefined) => {\n\tconst latestCallback = useCallbackRef(callBackFn);\n\n\tconst debouncedFn = useConstant(() => debounce(latestCallback, delay));\n\n\tuseUnmountEffect(() => {\n\t\tdebouncedFn.cancel();\n\t\tdebouncedFn.cancelMaxWait();\n\t});\n\n\treturn debouncedFn;\n};\n\nexport const useDebouncedState = <TValue>(defaultValue: TValue, delay: number | undefined) => {\n\tconst [value, setValue] = useState(defaultValue);\n\n\tconst setDebouncedValue = useConstant(() => debounce(setValue, delay));\n\n\tuseUnmountEffect(() => {\n\t\tsetDebouncedValue.cancel();\n\t\tsetDebouncedValue.cancelMaxWait();\n\t});\n\n\treturn [value, setDebouncedValue, setValue] as const;\n};\n","import { useCallback, useState } from \"react\";\n\ntype InitialState = boolean | (() => boolean);\n\nconst useToggle = (initialValue: InitialState = false) => {\n\tconst [value, setValue] = useState(initialValue);\n\n\tconst toggle = useCallback(<TValue>(newValue?: TValue) => {\n\t\tif (typeof newValue === \"boolean\") {\n\t\t\tsetValue(newValue);\n\t\t\treturn;\n\t\t}\n\n\t\tsetValue((prev) => !prev);\n\t}, []);\n\n\treturn [value, toggle] as const;\n};\n\nexport { useToggle };\n","import { lockScroll } from \"@zayne-labs/toolkit-core\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useToggle } from \"./useToggle\";\n\ntype DisclosureOptions = {\n\thasScrollControl?: boolean;\n\tinitialState?: boolean | (() => boolean);\n};\n\nconst useDisclosure = (options: DisclosureOptions = {}) => {\n\tconst { hasScrollControl = false, initialState = false } = options;\n\tconst [isOpen, toggleIsOpen] = useToggle(initialState);\n\n\tconst handleScrollControl = useCallbackRef(\n\t\t(state: boolean) => hasScrollControl && lockScroll({ isActive: state })\n\t);\n\n\tconst onOpen = useCallbackRef(<TValue>(value?: TValue) => {\n\t\tconst booleanValue = typeof value === \"boolean\" && value ? value : true;\n\t\ttoggleIsOpen(booleanValue);\n\t\thandleScrollControl(booleanValue);\n\t});\n\n\tconst onClose = useCallbackRef(<TValue>(value?: TValue) => {\n\t\tconst booleanValue = typeof value === \"boolean\" && !value ? value : false;\n\n\t\ttoggleIsOpen(booleanValue);\n\t\thandleScrollControl(booleanValue);\n\t});\n\n\tconst onToggle = useCallbackRef(<TValue>(value?: TValue) => {\n\t\tif (typeof value === \"boolean\") {\n\t\t\tvalue ? onOpen(value) : onClose(value);\n\t\t\treturn;\n\t\t}\n\n\t\tisOpen ? onClose() : onOpen();\n\t});\n\n\treturn { isOpen, onClose, onOpen, onToggle };\n};\n\nexport { useDisclosure };\n","import { useSyncExternalStore } from \"react\";\n\nconst noopStore = {\n\tgetServerSnapshot: () => true,\n\tgetSnapshot: () => false,\n\t// eslint-disable-next-line unicorn/consistent-function-scoping -- It's fine\n\tsubscribe: () => () => {},\n};\n\n/**\n * @description Returns whether the component is currently being server side rendered or\n * hydrated on the client. Can be used to delay browser-specific rendering\n * until after hydration.\n */\nconst useIsServer = () => {\n\tconst isServer = useSyncExternalStore(\n\t\tnoopStore.subscribe,\n\t\tnoopStore.getSnapshot,\n\t\tnoopStore.getServerSnapshot\n\t);\n\n\treturn isServer;\n};\n\nexport { useIsServer };\n","import type { StoreApi } from \"@zayne-labs/toolkit-core\";\nimport type { SelectorFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useDebugValue, useSyncExternalStore } from \"react\";\n\nconst useStore = <TState, TSlice>(store: StoreApi<TState>, selector: SelectorFn<TState, TSlice>) => {\n\tconst slice = useSyncExternalStore(\n\t\tstore.subscribe,\n\t\t() => selector(store.getState()),\n\t\t() => selector(store.getInitialState())\n\t);\n\n\tuseDebugValue(slice);\n\n\treturn slice;\n};\n\nexport { useStore };\n","import {\n\ttype LocationInfo,\n\ttype LocationStoreOptions,\n\tcreateLocationStore,\n} from \"@zayne-labs/toolkit-core\";\nimport type { SelectorFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useConstant } from \"./useConstant\";\nimport { useStore } from \"./useStore\";\n\ntype LocationStore = ReturnType<typeof createLocationStore>;\n\ntype UseLocationResult<TSlice> = [\n\tstate: TSlice,\n\tsetState: {\n\t\tpush: LocationStore[\"push\"];\n\t\treplace: LocationStore[\"replace\"];\n\t\ttriggerPopstate: LocationStore[\"triggerPopstateEvent\"];\n\t},\n];\n\nconst useLocation = <TSlice = LocationInfo>(\n\tselector: SelectorFn<LocationInfo, TSlice>,\n\toptions?: LocationStoreOptions\n) => {\n\tconst locationStore = useConstant(() => createLocationStore(options));\n\n\tconst stateSlice = useStore(locationStore as never, selector);\n\n\treturn [\n\t\tstateSlice,\n\t\t{\n\t\t\tpush: locationStore.push,\n\t\t\treplace: locationStore.replace,\n\t\t\ttriggerPopstate: locationStore.triggerPopstateEvent,\n\t\t},\n\t] as UseLocationResult<TSlice>;\n};\n\nexport { useLocation };\n","import { on } from \"@zayne-labs/toolkit-core\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\nimport { useDebouncedState } from \"../useDebounce\";\nimport type { UseSpecificPresence } from \"./types\";\n\nconst useAnimationPresence: UseSpecificPresence = (options = {}) => {\n\tconst { defaultValue = true, duration, onExitComplete } = options;\n\n\tconst [isShown, setIsShown] = useState(defaultValue);\n\n\tconst [isMounted, setDebouncedIsMounted, setRegularIsMounted] = useDebouncedState(\n\t\tdefaultValue,\n\t\tduration\n\t);\n\tconst elementRef = useRef<HTMLElement>(null);\n\n\tconst stableOnExitComplete = useCallbackRef(onExitComplete);\n\n\tuseEffect(() => {\n\t\t!isMounted && stableOnExitComplete();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableOnExitComplete is stable\n\t}, [isMounted]);\n\n\tconst handleIsMountedWithoutRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetRegularIsMounted(true);\n\t\t\treturn;\n\t\t}\n\n\t\tsetDebouncedIsMounted(false);\n\t};\n\n\tconst handleIsMountedWithRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetRegularIsMounted(true);\n\t\t\treturn;\n\t\t}\n\n\t\ton(\"animationend\", elementRef.current, () => {\n\t\t\tsetDebouncedIsMounted.cancel();\n\t\t\tsetRegularIsMounted(false);\n\t\t});\n\t};\n\n\tconst toggleVisibility = useCallbackRef(<TValue>(newValue?: TValue) => {\n\t\tconst handleSetIsMounted = !duration ? handleIsMountedWithRef : handleIsMountedWithoutRef;\n\n\t\tif (typeof newValue === \"boolean\") {\n\t\t\tsetIsShown(newValue);\n\t\t\thandleSetIsMounted(newValue);\n\t\t\treturn;\n\t\t}\n\n\t\tsetIsShown(!isShown);\n\t\thandleSetIsMounted(!isShown);\n\t});\n\n\treturn {\n\t\tisPresent: isMounted,\n\t\tisVisible: isShown,\n\t\ttoggleVisibility,\n\t\t...(duration === undefined && { elementRef }),\n\t} as never;\n};\n\nexport { useAnimationPresence };\n","import { on } from \"@zayne-labs/toolkit-core\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\nimport { useDebouncedState } from \"../useDebounce\";\nimport type { UseSpecificPresence } from \"./types\";\n\nconst useTransitionPresence: UseSpecificPresence = (options = {}) => {\n\tconst { defaultValue = true, duration, onExitComplete } = options;\n\n\tconst [isShown, setIsShown] = useState(defaultValue);\n\n\tconst [isMounted, setDebouncedIsMounted, setRegularIsMounted] = useDebouncedState(\n\t\tdefaultValue,\n\t\tduration\n\t);\n\tconst elementRef = useRef<HTMLElement>(null);\n\tconst stableOnExitComplete = useCallbackRef(onExitComplete);\n\n\tconst handleIsMountedWithoutRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetDebouncedIsMounted(value, { $delay: 0 });\n\t\t\treturn;\n\t\t}\n\n\t\tsetDebouncedIsMounted(false);\n\t};\n\n\tconst handleIsMountedWithRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetDebouncedIsMounted(value, { $delay: 0 });\n\t\t\treturn;\n\t\t}\n\n\t\ton(\"transitionend\", elementRef.current, () => {\n\t\t\tsetDebouncedIsMounted.cancel();\n\t\t\tsetRegularIsMounted(false);\n\t\t});\n\t};\n\n\tconst toggleVisibility = useCallbackRef(<TValue>(newValue?: TValue) => {\n\t\tconst handleSetIsMounted = !duration ? handleIsMountedWithRef : handleIsMountedWithoutRef;\n\n\t\tif (typeof newValue === \"boolean\") {\n\t\t\tsetIsShown(newValue);\n\t\t\thandleSetIsMounted(newValue);\n\t\t\treturn;\n\t\t}\n\n\t\tsetIsShown(!isShown);\n\t\thandleSetIsMounted(!isShown);\n\t});\n\n\tuseEffect(() => {\n\t\t!isMounted && stableOnExitComplete();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableOnExitComplete is stable\n\t}, [isMounted]);\n\n\treturn {\n\t\tisPresent: isMounted || isShown,\n\t\tisVisible: isMounted && isShown,\n\t\ttoggleVisibility,\n\t\t...(duration === undefined && { elementRef }),\n\t} as never;\n};\n\nexport { useTransitionPresence };\n","import type { UsePresence } from \"./types\";\nimport { useAnimationPresence } from \"./useAnimationPresence\";\nimport { useTransitionPresence } from \"./useTransitionPresence\";\n\n/**\n * usePresence hook provides a way to animate an element, before removing it from the DOM.\n * @param defaultValue - The default value for the presence state. Defaults to `true`.\n * @param options - The options for the usePresence hook.\n * @returns A object containing the boolean that should be used to conditionally render the element (isPresent), another boolean used to toggle the animation classes, and a function to toggle the state.\n */\n\nconst usePresence: UsePresence = (options = {}) => {\n\tconst { type = \"transition\", ...restOfOptions } = options;\n\n\tconst useSpecificPresence = type === \"transition\" ? useTransitionPresence : useAnimationPresence;\n\n\treturn useSpecificPresence(restOfOptions);\n};\n\nexport { usePresence };\n","import { type ScrollObserverOptions, createScrollObserver } from \"@zayne-labs/toolkit-core\";\nimport { type RefCallback, useState } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\nconst useScrollObserver = <TElement extends HTMLElement>(options: ScrollObserverOptions = {}) => {\n\tconst { onIntersection, rootMargin = \"10px 0px 0px 0px\", ...restOfOptions } = options;\n\n\tconst [isScrolled, setIsScrolled] = useState(false);\n\n\tconst savedOnIntersection = useCallbackRef(onIntersection);\n\n\tconst { handleObservation } = useConstant(() => {\n\t\treturn createScrollObserver({\n\t\t\tonIntersection: (entry, observer) => {\n\t\t\t\tconst newIsScrolledState = !entry.isIntersecting;\n\n\t\t\t\tsetIsScrolled(newIsScrolledState);\n\n\t\t\t\t// eslint-disable-next-line no-param-reassign -- Mutation is fine here\n\t\t\t\t(entry.target as HTMLElement).dataset.scrolled = String(newIsScrolledState);\n\n\t\t\t\tsavedOnIntersection(entry, observer);\n\t\t\t},\n\t\t\trootMargin,\n\t\t\t...restOfOptions,\n\t\t});\n\t});\n\n\tconst observedElementRef: RefCallback<TElement> = useCallbackRef((element) => {\n\t\tconst cleanupFn = handleObservation(element);\n\n\t\t// == React 18 may not call the cleanup function so we need to call it manually on element unmount\n\t\tif (!element) {\n\t\t\tcleanupFn?.();\n\t\t\treturn;\n\t\t}\n\n\t\treturn cleanupFn;\n\t});\n\n\treturn { isScrolled, observedElementRef };\n};\n\nexport { useScrollObserver };\n","import { isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useState } from \"react\";\nimport { useAfterMountEffect } from \"./effects/useAfterMountEffect\";\nimport { useDebouncedFn } from \"./useDebounce\";\n\nconst isSerializable = (item: unknown): item is boolean | number | string =>\n\ttypeof item === \"string\" || typeof item === \"number\" || typeof item === \"boolean\";\n\nconst checkObjectPropsForQuery = (item: Record<string, unknown>, query: string): boolean => {\n\tfor (const value of Object.values(item)) {\n\t\tif (isSerializable(value) && value.toString().toLowerCase().includes(query)) {\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n};\n\nconst useSearch = <TData>(initialData: TData[], delay?: number) => {\n\tconst [searchQuery, setSearchQuery] = useState(\"\");\n\tconst [filteredData, setFilteredData] = useState(initialData);\n\tconst [isLoading, setIsLoading] = useState(false);\n\n\tconst handleDebouncedSearch = useDebouncedFn(() => {\n\t\tconst query = searchQuery.toLowerCase();\n\n\t\tconst filteredResults = initialData.filter((item) => {\n\t\t\tif (isSerializable(item)) {\n\t\t\t\treturn item.toString().toLowerCase().includes(query);\n\t\t\t}\n\n\t\t\tif (isPlainObject(item)) {\n\t\t\t\treturn checkObjectPropsForQuery(item, query);\n\t\t\t}\n\n\t\t\treturn false;\n\t\t});\n\n\t\tsetFilteredData(filteredResults);\n\t\tsetIsLoading(false);\n\t}, delay);\n\n\tuseAfterMountEffect(() => {\n\t\tsetIsLoading(true);\n\t\thandleDebouncedSearch();\n\t}, [searchQuery]);\n\n\treturn { data: filteredData, isLoading, query: searchQuery, setQuery: setSearchQuery };\n};\n\nexport { useSearch };\n","import {\n\ttype LocationStoreOptions,\n\ttype URLSearchParamsInit,\n\tcreateSearchParams,\n} from \"@zayne-labs/toolkit-core\";\nimport { isFunction } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useLocation } from \"./useLocation\";\n\ntype UseSearchParamsOptions = {\n\taction?: \"push\" | \"replace\";\n\tlocationOptions?: LocationStoreOptions;\n};\n\nexport const useSearchParams = <TSearchParams extends URLSearchParamsInit>(\n\toptions?: UseSearchParamsOptions\n) => {\n\tconst { action = \"push\", locationOptions } = options ?? {};\n\n\tconst [searchParams, setLocation] = useLocation((state) => state.search, locationOptions);\n\n\tconst setSearchParams = (\n\t\tnewQueryParams: TSearchParams | ((prev: URLSearchParams) => TSearchParams)\n\t) => {\n\t\tconst params = isFunction(newQueryParams) ? newQueryParams(searchParams) : newQueryParams;\n\n\t\tconst nextSearchParams = createSearchParams(params);\n\n\t\tif (Object.is(searchParams.toString(), nextSearchParams.toString())) return;\n\n\t\tsetLocation[action]({ search: nextSearchParams });\n\t};\n\n\tsetSearchParams.triggerPopstate = setLocation.triggerPopstate;\n\n\treturn [searchParams, setSearchParams] as const;\n};\n\nexport const useSearchParamsObject = <TSearchParams extends Record<string, string>>(\n\toptions?: UseSearchParamsOptions\n) => {\n\tconst [searchParams, setSearchParams] = useSearchParams(options);\n\n\tconst searchParamsObject = Object.fromEntries(searchParams) as TSearchParams;\n\n\tconst setSearchParamsObject = (\n\t\tnewQueryParams: TSearchParams | ((prev: TSearchParams) => TSearchParams)\n\t) => {\n\t\tconst params = isFunction(newQueryParams) ? newQueryParams(searchParamsObject) : newQueryParams;\n\n\t\tsetSearchParams(params);\n\t};\n\n\treturn [searchParamsObject, setSearchParamsObject] as const;\n};\n","import {\n\ttype SetStorageState,\n\ttype StorageOptions,\n\tcreateExternalStorageStore,\n} from \"@zayne-labs/toolkit-core\";\nimport { type SelectorFn, isString } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useConstant } from \"./useConstant\";\nimport { useStore } from \"./useStore\";\n\ntype UseStorageStateOptions<TValue, TSlice = TValue> = StorageOptions<TValue> & {\n\tselect?: SelectorFn<TValue, TSlice>;\n};\n\ntype StorageStoreApi<TValue> = ReturnType<typeof createExternalStorageStore<TValue>>;\n\ntype ParamsOne<TValue, TSlice> = [\n\tkey: string,\n\tinitialValue?: TValue,\n\toptions?: Omit<UseStorageStateOptions<TValue, TSlice>, \"initialValue\" | \"key\">,\n];\n\ntype ParamsTwo<TValue, TSlice> = [options: UseStorageStateOptions<TValue, TSlice>];\n\ntype UseStorageStateParams<TValue, TSlice> = ParamsOne<TValue, TSlice> | ParamsTwo<TValue, TSlice>;\n\n// TODO: Add createImpl that returns a hook for react later\nconst useStorageState = <TValue, TSlice = TValue>(...params: UseStorageStateParams<TValue, TSlice>) => {\n\tconst [keyOrOptions, $initialValue, options] = params;\n\n\tconst _key = isString(keyOrOptions) ? keyOrOptions : keyOrOptions.key;\n\tconst _initialValue = isString(keyOrOptions) ? $initialValue : keyOrOptions.initialValue;\n\n\tconst {\n\t\tinitialValue = _initialValue,\n\t\tkey = _key,\n\t\tselect = (value: TValue) => value,\n\t\t...restOfOptions\n\t} = isString(keyOrOptions)\n\t\t? ((options as UseStorageStateOptions<TValue, TSlice> | undefined) ?? {})\n\t\t: keyOrOptions;\n\n\tconst externalStore = useConstant(() =>\n\t\tcreateExternalStorageStore({ initialValue, key, ...restOfOptions })\n\t);\n\n\tconst stateInStorage = useStore(externalStore as never, select as never);\n\n\treturn [stateInStorage, externalStore.setState, externalStore] as [\n\t\tstate: TValue,\n\t\tsetState: SetStorageState<TValue>,\n\t\tstoreApi: StorageStoreApi<TValue>,\n\t];\n};\n\nexport { useStorageState };\n","import { throttleByFrame, throttleBySetTimeout, throttleByTime } from \"@zayne-labs/toolkit-core\";\nimport type { CallbackFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useUnmountEffect } from \"./effects\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\nexport const useThrottleBySetTimeout = <TParams>(callbackFn: CallbackFn<TParams>, delay: number) => {\n\tconst latestCallback = useCallbackRef(callbackFn);\n\n\tconst throttledCallback = useConstant(() => throttleBySetTimeout(latestCallback, delay));\n\n\tuseUnmountEffect(() => throttledCallback.cancelTimeout());\n\n\treturn throttledCallback;\n};\n\nexport const useThrottleByTimer = <TParams>(callbackFn: CallbackFn<TParams>, delay: number) => {\n\tconst latestCallback = useCallbackRef(callbackFn);\n\n\tconst throttledCallback = useConstant(() => throttleByTime(latestCallback, delay));\n\n\treturn throttledCallback;\n};\n\nexport const useThrottleByFrame = <TParams>(callbackFn: CallbackFn<TParams>) => {\n\tconst latestCallback = useCallbackRef(callbackFn);\n\n\tconst throttledCallback = useConstant(() => throttleByFrame(latestCallback));\n\n\tuseUnmountEffect(() => throttledCallback.cancelAnimation());\n\n\treturn throttledCallback;\n};\n","import { type UnknownObject, isFunction, isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\nimport { use } from \"react\";\n\nconst replacer = (_: unknown, value: unknown) => {\n\tif (!isPlainObject(value)) {\n\t\treturn value;\n\t}\n\n\tconst transformedObject = Object.keys(value)\n\t\t.sort()\n\t\t.reduce<UnknownObject>((accumulator, key) => {\n\t\t\taccumulator[key] = value[key];\n\n\t\t\treturn accumulator;\n\t\t}, {});\n\n\treturn transformedObject;\n};\n\ntype ResourceKey = readonly unknown[];\n\n/**\n * @description Default resource key hash function. Hashes the value into a stable hash.\n *\n * Copied from TanStack Query\n */\nconst hashResourceKey = (resourceKey: ResourceKey) => JSON.stringify(resourceKey, replacer);\n\ntype ResourceFnContext = {\n\tresourceKey: ResourceKey;\n};\n\ntype ResourceOptions<T> = {\n\t/**\n\t * Function that returns the resource\n\t */\n\tfn: (context: ResourceFnContext) => Promise<T>;\n\t/**\n\t * Optional custom hash function for the resource key\n\t */\n\thashFn?: (key: ResourceKey) => string;\n\t/**\n\t * Key that identifies the resource\n\t */\n\tkey?: ResourceKey | (() => ResourceKey);\n};\n\nconst $PromiseCache = new Map<string, Promise<unknown>>();\n\n/**\n * @description Hook that enables the consumption of a promise during render via the `use` api.\n */\nconst useResource = <TResource>(options: ResourceOptions<TResource>) => {\n\tconst { fn, hashFn = hashResourceKey, key = () => [fn.toString()] } = options;\n\n\tconst computedResourceKey = isFunction(key) ? key() : key;\n\n\tconst hashedKey = hashFn(computedResourceKey);\n\n\tconst fetchResourceAndSetCache = () => {\n\t\tconst promise = fn({ resourceKey: computedResourceKey }).catch(($error) => {\n\t\t\treturn $error;\n\t\t});\n\n\t\t$PromiseCache.set(hashedKey, promise);\n\t};\n\n\tif (!$PromiseCache.has(hashedKey)) {\n\t\tfetchResourceAndSetCache();\n\t}\n\n\t// eslint-disable-next-line ts-eslint/no-non-null-assertion -- It's fine\n\tconst cachedPromise = $PromiseCache.get(hashedKey)!;\n\n\tconst result = use(cachedPromise);\n\n\treturn { data: result as TResource, refetch: fetchResourceAndSetCache };\n};\n\nexport { useResource };\n"]}
@@ -3,7 +3,7 @@ import * as react from 'react';
3
3
  import { useEffect, RefCallback } from 'react';
4
4
  import { NonEmptyArray, Prettify, AnyFunction, CallbackFn, SelectorFn } from '@zayne-labs/toolkit-type-helpers';
5
5
  import * as _zayne_labs_toolkit_core from '@zayne-labs/toolkit-core';
6
- import { AnimationIntervalOptions, LocationInfo, LocationStoreOptions, createLocationStore, URLSearchParamsInit, SetStorageState, createExternalStorageStore, StorageOptions, StoreApi } from '@zayne-labs/toolkit-core';
6
+ import { AnimationIntervalOptions, LocationInfo, LocationStoreOptions, createLocationStore, ScrollObserverOptions, URLSearchParamsInit, StorageOptions, SetStorageState, createExternalStorageStore, StoreApi } from '@zayne-labs/toolkit-core';
7
7
 
8
8
  declare const useAfterMountEffect: typeof useEffect;
9
9
 
@@ -18,7 +18,7 @@ declare const useLifeCycle: ({ onMount, onUnmount }: LifeCycleOptions) => void;
18
18
 
19
19
  declare const useMountEffect: (callBackFn: () => void) => void;
20
20
 
21
- declare const useOnUnmountEffect: (cleanUpFn: Destructor) => void;
21
+ declare const useUnmountEffect: (cleanUpFn: Destructor) => void;
22
22
 
23
23
  type ElementsInfoArray<TTargetElement extends string> = NonEmptyArray<{
24
24
  animationClass: string;
@@ -141,7 +141,7 @@ type UsePresence = <TElement extends HTMLElement, TDuration extends number | und
141
141
  */
142
142
  declare const usePresence: UsePresence;
143
143
 
144
- declare const useScrollObserver: <TElement extends HTMLElement>(options?: IntersectionObserverInit) => {
144
+ declare const useScrollObserver: <TElement extends HTMLElement>(options?: ScrollObserverOptions) => {
145
145
  isScrolled: boolean;
146
146
  observedElementRef: RefCallback<TElement>;
147
147
  };
@@ -188,4 +188,30 @@ declare const useThrottleByFrame: <TParams>(callbackFn: CallbackFn<TParams>) =>
188
188
  cancelAnimation(): void;
189
189
  };
190
190
 
191
- export { useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useCallbackRef, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, useOnUnmountEffect, usePresence, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle };
191
+ type ResourceKey = readonly unknown[];
192
+ type ResourceFnContext = {
193
+ resourceKey: ResourceKey;
194
+ };
195
+ type ResourceOptions<T> = {
196
+ /**
197
+ * Function that returns the resource
198
+ */
199
+ fn: (context: ResourceFnContext) => Promise<T>;
200
+ /**
201
+ * Optional custom hash function for the resource key
202
+ */
203
+ hashFn?: (key: ResourceKey) => string;
204
+ /**
205
+ * Key that identifies the resource
206
+ */
207
+ key?: ResourceKey | (() => ResourceKey);
208
+ };
209
+ /**
210
+ * @description Hook that enables the consumption of a promise during render via the `use` api.
211
+ */
212
+ declare const useResource: <TResource>(options: ResourceOptions<TResource>) => {
213
+ data: TResource;
214
+ refetch: () => void;
215
+ };
216
+
217
+ export { useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useCallbackRef, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, usePresence, useResource, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle, useUnmountEffect };
@@ -1,3 +1,3 @@
1
- export { ContextError, createCustomContext, getErrorMessage, useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useCallbackRef, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, useOnUnmountEffect, usePresence, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle } from '../chunk-EGZYEI7N.js';
1
+ export { ContextError, createCustomContext, getErrorMessage, useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useCallbackRef, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, usePresence, useResource, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle, useUnmountEffect } from '../chunk-5Q4MKFW3.js';
2
2
  //# sourceMappingURL=index.js.map
3
3
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,5 @@
1
- import * as react from 'react';
2
1
  import { RefCallback } from 'react';
3
- import { AnyFunction, Prettify } from '@zayne-labs/toolkit-type-helpers';
2
+ import { AnyFunction, AnyObject, Prettify } from '@zayne-labs/toolkit-type-helpers';
4
3
 
5
4
  type PossibleRef<TRef> = React.Ref<TRef> | undefined;
6
5
  /**
@@ -26,7 +25,7 @@ type SlotOptions = {
26
25
  * @throws {AssertionError} When throwOnMultipleSlotMatch is true and multiple slots are found
27
26
  */
28
27
  declare const getSlotElement: <TProps = Record<string, unknown>>(children: React.ReactNode, SlotWrapper: FunctionalComponent<TProps>, options?: SlotOptions) => React.ReactElement<TProps> | undefined;
29
- declare const getOtherChildren: <TProps = Record<string, unknown>, TChildren extends React.ReactNode = react.ReactNode>(children: TChildren, SlotWrapperOrWrappers: Array<FunctionalComponent<TProps>> | FunctionalComponent<TProps>) => TChildren extends unknown[] ? TChildren : TChildren[];
28
+ declare const getOtherChildren: <TProps = Record<string, unknown>, TChildren extends React.ReactNode = React.ReactNode>(children: TChildren, SlotWrapperOrWrappers: Array<FunctionalComponent<TProps>> | FunctionalComponent<TProps>) => TChildren extends unknown[] ? TChildren : TChildren[];
30
29
 
31
30
  type UnknownProps$1 = Record<never, never>;
32
31
  declare const mergeTwoProps: <TProps extends UnknownProps$1>(slotProps: TProps | undefined, childProps: TProps | undefined) => TProps;
@@ -57,7 +56,7 @@ type AsProp<TElement extends React.ElementType> = {
57
56
  as?: TElement;
58
57
  };
59
58
  type InferRestOfProps<TElement extends React.ElementType, TProps> = Omit<React.ComponentPropsWithRef<TElement>, keyof TProps>;
60
- type MergedPropsWithAs<TElement extends React.ElementType, TProps> = Omit<AsProp<TElement>, keyof TProps> & TProps;
61
- type PolymorphicProps<TElement extends React.ElementType, TProps extends Record<keyof any, any>> = InferRestOfProps<TElement, TProps> & Prettify<MergedPropsWithAs<TElement, TProps>>;
59
+ type MergedPropsWithAs<TElement extends React.ElementType, TProps> = Prettify<Omit<AsProp<TElement>, keyof TProps> & TProps>;
60
+ type PolymorphicProps<TElement extends React.ElementType, TProps extends AnyObject = NonNullable<unknown>> = MergedPropsWithAs<TElement, TProps> & InferRestOfProps<TElement, TProps>;
62
61
 
63
62
  export { type AsProp, type DiscriminatedRenderProps, type ForwardedRefType, type InferProps, type MyCustomCss, type PolymorphicProps, type StateSetter, composeRefs, getOtherChildren, getSlotElement, isSlotElement, mergeProps, mergeTwoProps, setRef };
@@ -95,12 +95,12 @@ var handleMergePropsIntoResult = (mergedResult, propsObject) => {
95
95
  mergedResult[propName] = mergeFunctions(propsObjectValue, mergedResultValue);
96
96
  continue;
97
97
  }
98
- mergedResult[propName] = propsObjectValue !== undefined ? propsObjectValue : mergedResultValue;
98
+ mergedResult[propName] = propsObjectValue !== void 0 ? propsObjectValue : mergedResultValue;
99
99
  }
100
100
  };
101
101
  var addMissingPropsToResult = (mergedResult, propsObject) => {
102
102
  for (const propName of Object.keys(propsObject)) {
103
- if (mergedResult[propName] === undefined) {
103
+ if (mergedResult[propName] === void 0) {
104
104
  mergedResult[propName] = propsObject[propName];
105
105
  }
106
106
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/utils/composeRefs.ts","../../../src/utils/getSlotElement.ts","../../../src/utils/mergeTwoProps.ts","../../../src/utils/mergeProps.ts"],"names":["isFunction","mergeClassNames","isPlainObject","mergeFunctions"],"mappings":"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","file":"index.js","sourcesContent":["import { isFunction } from \"@zayne-labs/toolkit-type-helpers\";\nimport type { RefCallback } from \"react\";\n\ntype PossibleRef<TRef> = React.Ref<TRef> | undefined;\n\n/**\n * @description Set a given ref to a given value.\n *\n * This utility takes care of different types of refs: callback refs and RefObject(s)\n */\nexport const setRef = <TRef>(ref: PossibleRef<TRef>, node: TRef): ReturnType<RefCallback<TRef>> => {\n\tif (!ref) return;\n\n\tif (isFunction(ref)) {\n\t\treturn ref(node);\n\t}\n\n\t// eslint-disable-next-line no-param-reassign -- Mutation is needed here\n\tref.current = node;\n};\n\n/**\n * @description A utility to combine refs. Accepts callback refs and RefObject(s)\n */\nexport const composeRefs = <TRef>(refs: Array<PossibleRef<TRef>>): RefCallback<TRef> => {\n\tconst refCallBack: RefCallback<TRef> = (node) => {\n\t\tconst cleanupFnArray = refs.map((ref) => setRef(ref, node));\n\n\t\tconst cleanupFn = () => cleanupFnArray.forEach((cleanup) => cleanup?.());\n\n\t\t// == React 18 may not call the cleanup function so we need to call it manually on element unmount\n\t\tif (!node) {\n\t\t\tcleanupFn();\n\t\t\treturn;\n\t\t}\n\n\t\treturn cleanupFn;\n\t};\n\n\treturn refCallBack;\n};\n","import { toArray } from \"@zayne-labs/toolkit-core\";\nimport { type AnyFunction, AssertionError, isArray } from \"@zayne-labs/toolkit-type-helpers\";\nimport { isValidElement } from \"react\";\n\ntype Noop = () => void;\ntype WithSlot = { slot?: string };\n\ntype FunctionalComponent<TProps> = (\n\tprops: TProps\n\t// eslint-disable-next-line perfectionist/sort-union-types -- Lets keep the first one first\n) => ReturnType<React.FunctionComponent<TProps>> | AnyFunction<React.ReactNode>;\n\n// TODO - Add support for thing like <div slot=\"foo\"> OR <Slot name=\"foo\">\nexport const isSlotElement = <TProps>(\n\tchild: React.ReactNode,\n\tSlotWrapper: FunctionalComponent<TProps>\n) => {\n\tif (!isValidElement(child)) {\n\t\treturn false;\n\t}\n\n\tif ((child.type as WithSlot).slot === (SlotWrapper as WithSlot).slot) {\n\t\treturn true;\n\t}\n\n\tif ((child.type as Noop).name === (SlotWrapper as Noop).name) {\n\t\treturn true;\n\t}\n\n\tif (child.type === SlotWrapper) {\n\t\treturn true;\n\t}\n\n\treturn child.type.toString() === SlotWrapper.toString();\n};\n\ntype SlotOptions = {\n\terrorMessage?: string;\n\tthrowOnMultipleSlotMatch?: boolean;\n};\n\n/**\n * @description Retrieves a single slot element from a collection of React children that matches the provided SlotWrapper component.\n *\n * @throws {AssertionError} When throwOnMultipleSlotMatch is true and multiple slots are found\n */\nexport const getSlotElement = <TProps = Record<string, unknown>>(\n\tchildren: React.ReactNode,\n\tSlotWrapper: FunctionalComponent<TProps>,\n\toptions: SlotOptions = {}\n) => {\n\tconst {\n\t\terrorMessage = \"Only one instance of the SlotComponent is allowed\",\n\t\tthrowOnMultipleSlotMatch = false,\n\t} = options;\n\n\tconst childrenArray = toArray<React.ReactNode>(children);\n\n\tconst Slot = childrenArray.filter((child) => isSlotElement(child, SlotWrapper));\n\n\tif (throwOnMultipleSlotMatch && Slot.length > 1) {\n\t\tthrow new AssertionError(errorMessage);\n\t}\n\n\treturn Slot[0] as React.ReactElement<TProps> | undefined;\n};\n\nconst isSlotElementMultiple = <TProps>(\n\tchild: React.ReactNode,\n\tSlotWrapperArray: Array<FunctionalComponent<TProps>>\n) => SlotWrapperArray.some((slotWrapper) => isSlotElement(child, slotWrapper));\n\n// Check if the child is a Slot element by matching any in the SlotWrapperArray\nexport const getOtherChildren = <\n\tTProps = Record<string, unknown>,\n\tTChildren extends React.ReactNode = React.ReactNode,\n>(\n\tchildren: TChildren,\n\tSlotWrapperOrWrappers: Array<FunctionalComponent<TProps>> | FunctionalComponent<TProps>\n) => {\n\tconst childrenArray = toArray<TChildren>(children);\n\n\tconst otherChildren = isArray(SlotWrapperOrWrappers)\n\t\t? childrenArray.filter((child) => !isSlotElementMultiple(child, SlotWrapperOrWrappers))\n\t\t: childrenArray.filter((child) => !isSlotElement(child, SlotWrapperOrWrappers));\n\n\treturn otherChildren as TChildren extends unknown[] ? TChildren : TChildren[];\n};\n","import { mergeClassNames, mergeFunctions } from \"@zayne-labs/toolkit-core\";\nimport { isFunction, isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\n\ntype UnknownProps = Record<never, never>;\n\nconst mergeTwoProps = <TProps extends UnknownProps>(\n\tslotProps: TProps | undefined,\n\tchildProps: TProps | undefined\n): TProps => {\n\tif (!slotProps || !childProps) {\n\t\treturn childProps ?? slotProps ?? ({} as TProps);\n\t}\n\n\t// == all child props should override slotProps\n\tconst overrideProps = { ...childProps } as Record<string, unknown>;\n\n\tfor (const propName of Object.keys(slotProps)) {\n\t\tconst slotPropValue = (slotProps as Record<string, unknown>)[propName];\n\t\tconst childPropValue = (childProps as Record<string, unknown>)[propName];\n\n\t\t// == if it's `style`, we merge them\n\t\tif (propName === \"style\" && isPlainObject(slotPropValue) && isPlainObject(childPropValue)) {\n\t\t\toverrideProps[propName] = { ...slotPropValue, ...childPropValue };\n\t\t\tcontinue;\n\t\t}\n\n\t\t// == if it's `className` or `class`, we merge them\n\t\tif (propName === \"className\" || propName === \"class\") {\n\t\t\toverrideProps[propName] = mergeClassNames(slotPropValue as string, childPropValue as string);\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst isHandler = propName.startsWith(\"on\");\n\n\t\t// == if the handler exists on both, we compose them\n\t\tif (isHandler && isFunction(slotPropValue) && isFunction(childPropValue)) {\n\t\t\toverrideProps[propName] = mergeFunctions(childPropValue, slotPropValue);\n\t\t}\n\t}\n\n\treturn { ...slotProps, ...overrideProps };\n};\n\nexport { mergeTwoProps };\n","import { mergeClassNames, mergeFunctions } from \"@zayne-labs/toolkit-core\";\nimport { isFunction, isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\n\n// const CSS_REGEX = /((?:--)?(?:\\w+-?)+)\\s*:\\s*([^;]*)/g;\n\n// const serialize = (style: string): Record<string, string> => {\n// \tconst res: Record<string, string> = {};\n// \tlet match: RegExpExecArray | null;\n// \twhile ((match = CSS_REGEX.exec(style))) {\n// \t\tres[match[1]!] = match[2]!;\n// \t}\n// \treturn res;\n// };\n\n// const css = (\n// \ta: Record<string, string> | string | undefined,\n// \tb: Record<string, string> | string | undefined\n// ): Record<string, string> | string => {\n// \tif (isString(a)) {\n// \t\tif (isString(b)) return `${a};${b}`;\n// \t\ta = serialize(a);\n// \t} else if (isString(b)) {\n// \t\tb = serialize(b);\n// \t}\n// \treturn Object.assign({}, a ?? {}, b ?? {});\n// };\n\ntype UnionToIntersection<TUnion> = (TUnion extends unknown ? (param: TUnion) => void : \"\") extends (\n\tparam: infer TParam\n) => void\n\t? TParam\n\t: \"\";\n\n/* eslint-disable no-param-reassign -- Mutation is fine here since it's an internally managed object */\nconst handleMergePropsIntoResult = (\n\tmergedResult: Record<string, unknown>,\n\tpropsObject: Record<string, unknown>\n) => {\n\tfor (const propName of Object.keys(mergedResult)) {\n\t\tconst mergedResultValue = mergedResult[propName];\n\t\tconst propsObjectValue = propsObject[propName];\n\n\t\tif (propName === \"className\" || propName === \"class\") {\n\t\t\tmergedResult[propName] = mergeClassNames(mergedResultValue as string, propsObjectValue as string);\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (propName === \"style\" && isPlainObject(mergedResultValue) && isPlainObject(propsObjectValue)) {\n\t\t\t// mergedResult[propName] = css(mergedResultValue, propsObjectValue);\n\t\t\tmergedResult[propName] = { ...mergedResultValue, ...propsObjectValue };\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst isHandler = propName.startsWith(\"on\");\n\n\t\tif (isHandler && isFunction(mergedResultValue) && isFunction(propsObjectValue)) {\n\t\t\tmergedResult[propName] = mergeFunctions(propsObjectValue, mergedResultValue);\n\t\t\tcontinue;\n\t\t}\n\n\t\tmergedResult[propName] = propsObjectValue !== undefined ? propsObjectValue : mergedResultValue;\n\t}\n};\n\nconst addMissingPropsToResult = (\n\tmergedResult: Record<string, unknown>,\n\tpropsObject: Record<string, unknown>\n) => {\n\tfor (const propName of Object.keys(propsObject)) {\n\t\tif (mergedResult[propName] === undefined) {\n\t\t\tmergedResult[propName] = propsObject[propName];\n\t\t}\n\t}\n};\n/* eslint-enable no-param-reassign -- Mutation is fine here since it's an internally managed object */\n\ntype UnknownProps = Record<never, never>;\n\nconst mergeProps = <TProps extends UnknownProps>(\n\t...parameters: Array<TProps | undefined>\n): UnionToIntersection<TProps> => {\n\tconst mergedResult: Record<string, unknown> = {};\n\n\tfor (const propsObject of parameters) {\n\t\tif (!propsObject) continue;\n\n\t\thandleMergePropsIntoResult(mergedResult, propsObject);\n\n\t\t// == Add props from propsObject that are not in the mergedResult\n\t\taddMissingPropsToResult(mergedResult, propsObject);\n\t}\n\n\treturn mergedResult as never;\n};\n\nexport { mergeProps };\n"]}
1
+ {"version":3,"sources":["../../../src/utils/composeRefs.ts","../../../src/utils/getSlotElement.ts","../../../src/utils/mergeTwoProps.ts","../../../src/utils/mergeProps.ts"],"names":["isFunction","mergeClassNames","isPlainObject","mergeFunctions"],"mappings":"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","file":"index.js","sourcesContent":["import { isFunction } from \"@zayne-labs/toolkit-type-helpers\";\nimport type { RefCallback } from \"react\";\n\ntype PossibleRef<TRef> = React.Ref<TRef> | undefined;\n\n/**\n * @description Set a given ref to a given value.\n *\n * This utility takes care of different types of refs: callback refs and RefObject(s)\n */\nexport const setRef = <TRef>(ref: PossibleRef<TRef>, node: TRef): ReturnType<RefCallback<TRef>> => {\n\tif (!ref) return;\n\n\tif (isFunction(ref)) {\n\t\treturn ref(node);\n\t}\n\n\t// eslint-disable-next-line no-param-reassign -- Mutation is needed here\n\tref.current = node;\n};\n\n/**\n * @description A utility to combine refs. Accepts callback refs and RefObject(s)\n */\nexport const composeRefs = <TRef>(refs: Array<PossibleRef<TRef>>): RefCallback<TRef> => {\n\tconst refCallBack: RefCallback<TRef> = (node) => {\n\t\tconst cleanupFnArray = refs.map((ref) => setRef(ref, node));\n\n\t\tconst cleanupFn = () => cleanupFnArray.forEach((cleanup) => cleanup?.());\n\n\t\t// == React 18 may not call the cleanup function so we need to call it manually on element unmount\n\t\tif (!node) {\n\t\t\tcleanupFn();\n\t\t\treturn;\n\t\t}\n\n\t\treturn cleanupFn;\n\t};\n\n\treturn refCallBack;\n};\n","import { toArray } from \"@zayne-labs/toolkit-core\";\nimport { type AnyFunction, AssertionError, isArray } from \"@zayne-labs/toolkit-type-helpers\";\nimport { isValidElement } from \"react\";\n\ntype Noop = () => void;\ntype WithSlot = { slot?: string };\n\ntype FunctionalComponent<TProps> = (\n\tprops: TProps\n\t// eslint-disable-next-line perfectionist/sort-union-types -- Lets keep the first one first\n) => ReturnType<React.FunctionComponent<TProps>> | AnyFunction<React.ReactNode>;\n\n// TODO - Add support for thing like <div slot=\"foo\"> OR <Slot name=\"foo\">\nexport const isSlotElement = <TProps>(\n\tchild: React.ReactNode,\n\tSlotWrapper: FunctionalComponent<TProps>\n) => {\n\tif (!isValidElement(child)) {\n\t\treturn false;\n\t}\n\n\tif ((child.type as WithSlot).slot === (SlotWrapper as WithSlot).slot) {\n\t\treturn true;\n\t}\n\n\tif ((child.type as Noop).name === (SlotWrapper as Noop).name) {\n\t\treturn true;\n\t}\n\n\tif (child.type === SlotWrapper) {\n\t\treturn true;\n\t}\n\n\treturn child.type.toString() === SlotWrapper.toString();\n};\n\ntype SlotOptions = {\n\terrorMessage?: string;\n\tthrowOnMultipleSlotMatch?: boolean;\n};\n\n/**\n * @description Retrieves a single slot element from a collection of React children that matches the provided SlotWrapper component.\n *\n * @throws {AssertionError} When throwOnMultipleSlotMatch is true and multiple slots are found\n */\nexport const getSlotElement = <TProps = Record<string, unknown>>(\n\tchildren: React.ReactNode,\n\tSlotWrapper: FunctionalComponent<TProps>,\n\toptions: SlotOptions = {}\n) => {\n\tconst {\n\t\terrorMessage = \"Only one instance of the SlotComponent is allowed\",\n\t\tthrowOnMultipleSlotMatch = false,\n\t} = options;\n\n\tconst childrenArray = toArray<React.ReactNode>(children);\n\n\tconst Slot = childrenArray.filter((child) => isSlotElement(child, SlotWrapper));\n\n\tif (throwOnMultipleSlotMatch && Slot.length > 1) {\n\t\tthrow new AssertionError(errorMessage);\n\t}\n\n\treturn Slot[0] as React.ReactElement<TProps> | undefined;\n};\n\nconst isSlotElementMultiple = <TProps>(\n\tchild: React.ReactNode,\n\tSlotWrapperArray: Array<FunctionalComponent<TProps>>\n) => SlotWrapperArray.some((slotWrapper) => isSlotElement(child, slotWrapper));\n\n// Check if the child is a Slot element by matching any in the SlotWrapperArray\nexport const getOtherChildren = <\n\tTProps = Record<string, unknown>,\n\tTChildren extends React.ReactNode = React.ReactNode,\n>(\n\tchildren: TChildren,\n\tSlotWrapperOrWrappers: Array<FunctionalComponent<TProps>> | FunctionalComponent<TProps>\n) => {\n\tconst childrenArray = toArray<TChildren>(children);\n\n\tconst otherChildren = isArray(SlotWrapperOrWrappers)\n\t\t? childrenArray.filter((child) => !isSlotElementMultiple(child, SlotWrapperOrWrappers))\n\t\t: childrenArray.filter((child) => !isSlotElement(child, SlotWrapperOrWrappers));\n\n\treturn otherChildren as TChildren extends unknown[] ? TChildren : TChildren[];\n};\n","import { mergeClassNames, mergeFunctions } from \"@zayne-labs/toolkit-core\";\nimport { isFunction, isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\n\ntype UnknownProps = Record<never, never>;\n\nconst mergeTwoProps = <TProps extends UnknownProps>(\n\tslotProps: TProps | undefined,\n\tchildProps: TProps | undefined\n): TProps => {\n\tif (!slotProps || !childProps) {\n\t\treturn childProps ?? slotProps ?? ({} as TProps);\n\t}\n\n\t// == all child props should override slotProps\n\tconst overrideProps = { ...childProps } as Record<string, unknown>;\n\n\tfor (const propName of Object.keys(slotProps)) {\n\t\tconst slotPropValue = (slotProps as Record<string, unknown>)[propName];\n\t\tconst childPropValue = (childProps as Record<string, unknown>)[propName];\n\n\t\t// == if it's `style`, we merge them\n\t\tif (propName === \"style\" && isPlainObject(slotPropValue) && isPlainObject(childPropValue)) {\n\t\t\toverrideProps[propName] = { ...slotPropValue, ...childPropValue };\n\t\t\tcontinue;\n\t\t}\n\n\t\t// == if it's `className` or `class`, we merge them\n\t\tif (propName === \"className\" || propName === \"class\") {\n\t\t\toverrideProps[propName] = mergeClassNames(slotPropValue as string, childPropValue as string);\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst isHandler = propName.startsWith(\"on\");\n\n\t\t// == if the handler exists on both, we compose them\n\t\tif (isHandler && isFunction(slotPropValue) && isFunction(childPropValue)) {\n\t\t\toverrideProps[propName] = mergeFunctions(childPropValue, slotPropValue);\n\t\t}\n\t}\n\n\treturn { ...slotProps, ...overrideProps };\n};\n\nexport { mergeTwoProps };\n","import { mergeClassNames, mergeFunctions } from \"@zayne-labs/toolkit-core\";\nimport { isFunction, isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\n\n// const CSS_REGEX = /((?:--)?(?:\\w+-?)+)\\s*:\\s*([^;]*)/g;\n\n// const serialize = (style: string): Record<string, string> => {\n// \tconst res: Record<string, string> = {};\n// \tlet match: RegExpExecArray | null;\n// \twhile ((match = CSS_REGEX.exec(style))) {\n// \t\tres[match[1]!] = match[2]!;\n// \t}\n// \treturn res;\n// };\n\n// const css = (\n// \ta: Record<string, string> | string | undefined,\n// \tb: Record<string, string> | string | undefined\n// ): Record<string, string> | string => {\n// \tif (isString(a)) {\n// \t\tif (isString(b)) return `${a};${b}`;\n// \t\ta = serialize(a);\n// \t} else if (isString(b)) {\n// \t\tb = serialize(b);\n// \t}\n// \treturn Object.assign({}, a ?? {}, b ?? {});\n// };\n\ntype UnionToIntersection<TUnion> = (TUnion extends unknown ? (param: TUnion) => void : \"\") extends (\n\tparam: infer TParam\n) => void\n\t? TParam\n\t: \"\";\n\n/* eslint-disable no-param-reassign -- Mutation is fine here since it's an internally managed object */\nconst handleMergePropsIntoResult = (\n\tmergedResult: Record<string, unknown>,\n\tpropsObject: Record<string, unknown>\n) => {\n\tfor (const propName of Object.keys(mergedResult)) {\n\t\tconst mergedResultValue = mergedResult[propName];\n\t\tconst propsObjectValue = propsObject[propName];\n\n\t\tif (propName === \"className\" || propName === \"class\") {\n\t\t\tmergedResult[propName] = mergeClassNames(mergedResultValue as string, propsObjectValue as string);\n\t\t\tcontinue;\n\t\t}\n\n\t\tif (propName === \"style\" && isPlainObject(mergedResultValue) && isPlainObject(propsObjectValue)) {\n\t\t\t// mergedResult[propName] = css(mergedResultValue, propsObjectValue);\n\t\t\tmergedResult[propName] = { ...mergedResultValue, ...propsObjectValue };\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst isHandler = propName.startsWith(\"on\");\n\n\t\tif (isHandler && isFunction(mergedResultValue) && isFunction(propsObjectValue)) {\n\t\t\tmergedResult[propName] = mergeFunctions(propsObjectValue, mergedResultValue);\n\t\t\tcontinue;\n\t\t}\n\n\t\tmergedResult[propName] = propsObjectValue !== undefined ? propsObjectValue : mergedResultValue;\n\t}\n};\n\nconst addMissingPropsToResult = (\n\tmergedResult: Record<string, unknown>,\n\tpropsObject: Record<string, unknown>\n) => {\n\tfor (const propName of Object.keys(propsObject)) {\n\t\tif (mergedResult[propName] === undefined) {\n\t\t\tmergedResult[propName] = propsObject[propName];\n\t\t}\n\t}\n};\n/* eslint-enable no-param-reassign -- Mutation is fine here since it's an internally managed object */\n\ntype UnknownProps = Record<never, never>;\n\nconst mergeProps = <TProps extends UnknownProps>(\n\t...parameters: Array<TProps | undefined>\n): UnionToIntersection<TProps> => {\n\tconst mergedResult: Record<string, unknown> = {};\n\n\tfor (const propsObject of parameters) {\n\t\tif (!propsObject) continue;\n\n\t\thandleMergePropsIntoResult(mergedResult, propsObject);\n\n\t\t// == Add props from propsObject that are not in the mergedResult\n\t\taddMissingPropsToResult(mergedResult, propsObject);\n\t}\n\n\treturn mergedResult as never;\n};\n\nexport { mergeProps };\n"]}
@@ -14,7 +14,7 @@ declare const createZustandContext: <TState extends Record<string, unknown>, TUs
14
14
 
15
15
  type Combine = <TInitialState extends AnyObject, TExtraState extends AnyObject, Mps extends Array<[StoreMutatorIdentifier, unknown]> = [], Mcs extends Array<[StoreMutatorIdentifier, unknown]> = []>(initialState: TInitialState, additionalStateCreator: StateCreator<TInitialState, Mps, Mcs, TExtraState>) => StateCreator<TExtraState & TInitialState>;
16
16
  declare const combine: Combine;
17
- declare const createStoreWithCombine: <TInitialState extends AnyObject, TExtraState extends AnyObject>(initialState: TInitialState, additionalStateCreator: StateCreator<TInitialState, [], [], TExtraState>) => zustand.StoreApi<TExtraState & TInitialState>;
18
- declare const createWithCombine: <TInitialState extends AnyObject, TExtraState extends AnyObject>(initialState: TInitialState, additionalStateCreator: StateCreator<TInitialState, [], [], TExtraState>) => zustand.UseBoundStore<zustand.StoreApi<TExtraState & TInitialState>>;
17
+ declare const createStoreWithCombine: <TInitialState extends AnyObject, TExtraState extends AnyObject>(...params: Parameters<typeof combine<TInitialState, TExtraState>>) => zustand.StoreApi<TExtraState & TInitialState>;
18
+ declare const createWithCombine: <TInitialState extends AnyObject, TExtraState extends AnyObject>(...params: Parameters<typeof combine<TInitialState, TExtraState>>) => zustand.UseBoundStore<zustand.StoreApi<TExtraState & TInitialState>>;
19
19
 
20
20
  export { type Combine, combine, createStoreWithCombine, createWithCombine, createZustandContext };
@@ -1,4 +1,4 @@
1
- import { createCustomContext, useConstant } from '../chunk-EGZYEI7N.js';
1
+ import { createCustomContext, useConstant } from '../chunk-5Q4MKFW3.js';
2
2
  import { createElement } from 'react';
3
3
  import { createStore, create } from 'zustand';
4
4
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zayne-labs/toolkit-react",
3
3
  "type": "module",
4
- "version": "0.8.38",
4
+ "version": "0.8.45",
5
5
  "description": "A collection of utility functions, types and composables used by my other projects. Nothing too fancy but can be useful.",
6
6
  "author": "Ryan Zayne",
7
7
  "license": "MIT",
@@ -50,28 +50,28 @@
50
50
  }
51
51
  },
52
52
  "dependencies": {
53
- "@zayne-labs/toolkit-core": "0.8.38",
54
- "@zayne-labs/toolkit-type-helpers": "0.8.38"
53
+ "@zayne-labs/toolkit-core": "0.8.45",
54
+ "@zayne-labs/toolkit-type-helpers": "0.8.45"
55
55
  },
56
56
  "devDependencies": {
57
- "@arethetypeswrong/cli": "^0.17.3",
57
+ "@arethetypeswrong/cli": "^0.17.4",
58
58
  "@changesets/cli": "^2.28.1",
59
59
  "@size-limit/esbuild-why": "^11.2.0",
60
60
  "@size-limit/preset-small-lib": "^11.2.0",
61
61
  "@total-typescript/ts-reset": "^0.6.1",
62
- "@types/node": "^22.13.4",
62
+ "@types/node": "^22.13.6",
63
63
  "@types/react": "^19.0.10",
64
64
  "@types/react-dom": "^19.0.4",
65
65
  "@zayne-labs/tsconfig": "0.2.1",
66
66
  "concurrently": "^9.1.2",
67
67
  "cross-env": "^7.0.3",
68
- "publint": "^0.3.6",
68
+ "publint": "^0.3.7",
69
69
  "react": "^19.0.0",
70
70
  "react-dom": "^19.0.0",
71
71
  "size-limit": "^11.2.0",
72
72
  "terser": "^5.39.0",
73
- "tsup": "^8.3.6",
74
- "typescript": "5.7.3",
73
+ "tsup": "^8.4.0",
74
+ "typescript": "5.8.2",
75
75
  "zustand": "^5.0.3"
76
76
  },
77
77
  "publishConfig": {
@@ -97,11 +97,12 @@
97
97
  "build": "tsup",
98
98
  "build:dev": "cross-env NODE_ENV=development tsup",
99
99
  "build:test": "concurrently --prefix-colors \"yellow.bold,#7da4f8.bold,magenta\" --names PUBLINT,TSUP 'pnpm:lint:publint' 'pnpm:build:dev'",
100
+ "dev": "pnpm build:dev --watch",
100
101
  "lint:attw": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
101
- "lint:check-types": "tsc --pretty --incremental -p tsconfig.json",
102
102
  "lint:publint": "publint --strict .",
103
103
  "lint:size": "size-limit",
104
+ "lint:type-check": "tsc --pretty -p tsconfig.json",
104
105
  "release": "pnpm publish --no-git-checks",
105
- "test:release": "pnpx pkg-pr-new publish"
106
+ "release:test": "pnpx pkg-pr-new publish"
106
107
  }
107
108
  }
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/hooks/createCustomContext.ts","../../src/hooks/useCallbackRef.ts","../../src/hooks/effects/useAfterMountEffect.ts","../../src/hooks/effects/useEffectOnce.ts","../../src/hooks/effects/useLifeCycle.ts","../../src/hooks/effects/useOnMountEffect.ts","../../src/hooks/effects/useOnUnMountEffect.ts","../../src/hooks/useAnimateElementRefs.ts","../../src/hooks/useConstant.ts","../../src/hooks/useAnimationInterval.ts","../../src/hooks/useCopyToClipboard.ts","../../src/hooks/useDebounce.ts","../../src/hooks/useToggle.ts","../../src/hooks/useDisclosure.ts","../../src/hooks/useIsServer.ts","../../src/hooks/useStore.ts","../../src/hooks/useLocation.ts","../../src/hooks/usePresence/useAnimationPresence.ts","../../src/hooks/usePresence/useTransitionPresence.ts","../../src/hooks/usePresence/usePresence.ts","../../src/hooks/useScrollObserver.ts","../../src/hooks/useSearch.ts","../../src/hooks/useSearchParams.ts","../../src/hooks/useStorageState.ts","../../src/hooks/useThrottle.ts"],"names":["useRef","useEffect","useCallback","useState","useSyncExternalStore","on"],"mappings":"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","file":"chunk-EGZYEI7N.js","sourcesContent":["import { createContext, use } from \"react\";\n\nexport class ContextError extends Error {\n\toverride name = \"ContextError\";\n\n\tconstructor(...args: Parameters<typeof Error>) {\n\t\tsuper(...args);\n\n\t\tError.captureStackTrace(this, this.constructor);\n\t}\n}\n\nexport const getErrorMessage = (hook: string, provider: string) => {\n\treturn `${hook} returned \"null\". Did you forget to wrap the necessary components within ${provider}?`;\n};\n\nexport type CustomContextOptions<TDefaultContextValue, TStrict extends boolean> = {\n\tdefaultValue?: TDefaultContextValue | null;\n\terrorMessage?: string;\n\thookName?: string;\n\tname?: string;\n\tproviderName?: string;\n\tstrict?: TStrict;\n};\n\ntype UseCustomContextResult<TContextValue, TStrict extends boolean> = TStrict extends true\n\t? TContextValue\n\t: TContextValue | null;\n\nconst createCustomContext = <TContextValue, TStrict extends boolean = true>(\n\toptions: CustomContextOptions<TContextValue, TStrict> = {}\n) => {\n\tconst {\n\t\tdefaultValue = null,\n\t\terrorMessage,\n\t\thookName = \"Unnamed Context hook\",\n\t\tname = \"Unnamed Context\",\n\t\tproviderName = \"Unnamed Provider\",\n\t\tstrict = true,\n\t} = options;\n\n\tconst Context = createContext<TContextValue | null>(defaultValue);\n\n\tContext.displayName = name;\n\n\tconst useCustomContext = (): UseCustomContextResult<TContextValue, TStrict> => {\n\t\tconst contextValue = use(Context);\n\n\t\tif (strict && contextValue === null) {\n\t\t\tthrow new ContextError(errorMessage ?? getErrorMessage(hookName, providerName));\n\t\t}\n\n\t\treturn contextValue as UseCustomContextResult<TContextValue, TStrict>;\n\t};\n\n\treturn [Context.Provider, useCustomContext] as const;\n};\n\nexport { createCustomContext };\n","import type { AnyFunction } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useCallback, useLayoutEffect, useRef } from \"react\";\n\n/**\n * Returns a stable function that always points to the latest version of the callback function.\n * @param callbackFn - The function to reference\n * @returns a stable function that always points to the latest version of the callback function\n */\n\nconst useCallbackRef = <TCallback = AnyFunction>(callbackFn: TCallback | undefined) => {\n\tconst callbackRef = useRef(callbackFn);\n\n\tuseLayoutEffect(() => {\n\t\t// == Doing this instead updating it during render cuz according to Dan Abramov, render should be pure\n\t\tcallbackRef.current = callbackFn;\n\t}, [callbackFn]);\n\n\tconst savedCallback = useCallback(\n\t\t// eslint-disable-next-line ts-eslint/no-unnecessary-condition -- callbackRef.current can be null in some cases\n\t\t(...params: unknown[]) => (callbackRef.current as AnyFunction)?.(...params) as unknown,\n\t\t[]\n\t);\n\n\treturn savedCallback as TCallback;\n};\n\nexport { useCallbackRef };\n","import { useEffect, useRef } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nconst useAfterMountEffect: typeof useEffect = (callBackFn, deps) => {\n\tconst isFirstMount = useRef(true);\n\tconst stableCallback = useCallbackRef(callBackFn);\n\n\tuseEffect(() => {\n\t\tif (isFirstMount.current) {\n\t\t\tisFirstMount.current = false;\n\t\t\treturn;\n\t\t}\n\n\t\tstableCallback();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableCallback is stable\n\t}, deps);\n};\nexport { useAfterMountEffect };\n","import { useEffect, useRef } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nconst useEffectOnce = (callBackFn: React.EffectCallback) => {\n\tconst stableCallback = useCallbackRef(callBackFn);\n\n\tconst effectGuard = useRef(false);\n\n\t// == savedCallback is always stable so no worries about re-execution of this effect\n\tuseEffect(() => {\n\t\tif (effectGuard.current) return;\n\n\t\teffectGuard.current = true;\n\n\t\treturn stableCallback();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableCallback is stable\n\t}, []);\n};\n\nexport { useEffectOnce };\n","import { useEffect } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nexport type Destructor = ReturnType<React.EffectCallback>;\n\ntype LifeCycleOptions = {\n\tonMount?: () => void;\n\tonUnmount?: Destructor;\n};\n\nconst useLifeCycle = ({ onMount, onUnmount }: LifeCycleOptions) => {\n\tconst stableOnMount = useCallbackRef(onMount);\n\tconst stableOnUnmount = useCallbackRef(onUnmount);\n\n\tuseEffect(() => {\n\t\tstableOnMount();\n\n\t\treturn stableOnUnmount;\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableOnMount and stableOnUnmount are stable\n\t}, []);\n};\n\nexport { useLifeCycle };\n","import { useLifeCycle } from \"./useLifeCycle\";\n\nconst useMountEffect = (callBackFn: () => void) => {\n\tuseLifeCycle({ onMount: callBackFn });\n};\n\nexport { useMountEffect };\n","import { type Destructor, useLifeCycle } from \"./useLifeCycle\";\n\nconst useOnUnmountEffect = (cleanUpFn: Destructor) => useLifeCycle({ onUnmount: cleanUpFn });\n\nexport { useOnUnmountEffect };\n","import { on } from \"@zayne-labs/toolkit-core\";\nimport { type NonEmptyArray, isArray } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useCallback, useRef } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\n\ntype ElementsInfoArray<TTargetElement extends string> = NonEmptyArray<{\n\tanimationClass: string;\n\ttargetElement: TTargetElement;\n}>;\n\nconst removeClass = (target: HTMLElement, className: string) => () => target.classList.remove(className);\n\n/**\n * This is a custom React hook that adds and removes animation classes to specified HTML elements.\n * @param elementsInfoArray - An array of objects that contain information about the animation class and the target HTML element.\n * @returns - An object containing the refs of the animated elements and a function to handle the initiation and removal animation.\n */\n\nconst useAnimateElementRefs = <TTargetElement extends string>(\n\telementsInfoArray: ElementsInfoArray<TTargetElement>\n) => {\n\tconst elementsRef = useRef<Record<TTargetElement, HTMLElement | null>>({} as never);\n\n\tconst addAnimationClasses = useCallbackRef(() => {\n\t\tif (!isArray(elementsInfoArray)) {\n\t\t\tconsole.error(\"elementsInfo is not an Array\");\n\t\t\treturn;\n\t\t}\n\n\t\tfor (const { animationClass, targetElement } of elementsInfoArray) {\n\t\t\tif (!elementsRef.current[targetElement]) {\n\t\t\t\tconsole.error(\"ElementError\", `\"${targetElement}\" element does not exist`);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\telementsRef.current[targetElement].classList.add(animationClass);\n\t\t}\n\t});\n\n\tconst removeAnimationClasses = useCallbackRef(() => {\n\t\tif (!isArray(elementsInfoArray)) {\n\t\t\tconsole.error(\"elementsInfo is not an Array\");\n\t\t\treturn;\n\t\t}\n\n\t\tfor (const { animationClass, targetElement } of elementsInfoArray) {\n\t\t\tif (!elementsRef.current[targetElement]) {\n\t\t\t\tconsole.error(\"ElementError\", `\"${targetElement}\" element does not exist`);\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\ton(\n\t\t\t\t\"transitionend\",\n\t\t\t\telementsRef.current[targetElement],\n\t\t\t\tremoveClass(elementsRef.current[targetElement], animationClass)\n\t\t\t);\n\n\t\t\ton(\n\t\t\t\t\"animationend\",\n\t\t\t\telementsRef.current[targetElement],\n\t\t\t\tremoveClass(elementsRef.current[targetElement], animationClass)\n\t\t\t);\n\t\t}\n\t});\n\n\t// Add animation classes to elements and remove them after the animation ends\n\tconst handleElementsAnimation = useCallback(() => {\n\t\taddAnimationClasses();\n\n\t\tremoveAnimationClasses();\n\t}, [addAnimationClasses, removeAnimationClasses]);\n\n\treturn { animatedElements: elementsRef.current, handleElementsAnimation };\n};\n\nexport { useAnimateElementRefs };\n","import { useState } from \"react\";\n\nconst useConstant = <TResult>(initCallbackFn: () => TResult) => useState(initCallbackFn)[0];\n\nexport { useConstant };\n","import { type AnimationIntervalOptions, setAnimationInterval } from \"@zayne-labs/toolkit-core\";\nimport type { Prettify } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useEffect } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\ntype AnimationOptions = Prettify<\n\tAnimationIntervalOptions & {\n\t\tintervalDuration: number | null;\n\t\tonAnimation: () => void;\n\t}\n>;\n\nconst useAnimationInterval = (options: AnimationOptions) => {\n\tconst { intervalDuration, onAnimation, once } = options;\n\n\tconst latestCallback = useCallbackRef(onAnimation);\n\n\t// prettier-ignore\n\tconst { start, stop } = useConstant(() => setAnimationInterval(latestCallback, intervalDuration, { once }));\n\n\tuseEffect(() => {\n\t\tif (intervalDuration === null) return;\n\n\t\tstart();\n\n\t\treturn stop;\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- start and stop are stable\n\t}, [intervalDuration]);\n\n\treturn { start, stop };\n};\n\nexport { useAnimationInterval };\n","import { copyToClipboard } from \"@zayne-labs/toolkit-core\";\nimport { useState } from \"react\";\n\nconst useCopyToClipboard = () => {\n\tconst [state, setState] = useState(\"\");\n\n\tconst handleCopy = (value: string) => {\n\t\tsetState(value);\n\t\tvoid copyToClipboard(value);\n\t};\n\n\treturn { copiedValue: state, handleCopy };\n};\n\nexport { useCopyToClipboard };\n","import { debounce } from \"@zayne-labs/toolkit-core\";\nimport type { CallbackFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useState } from \"react\";\nimport { useOnUnmountEffect } from \"./effects/useOnUnMountEffect\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\nexport const useDebouncedFn = <TParams>(callBackFn: CallbackFn<TParams>, delay: number | undefined) => {\n\tconst latestCallback = useCallbackRef(callBackFn);\n\n\tconst debouncedFn = useConstant(() => debounce(latestCallback, delay));\n\n\tuseOnUnmountEffect(() => {\n\t\tdebouncedFn.cancel();\n\t\tdebouncedFn.cancelMaxWait();\n\t});\n\n\treturn debouncedFn;\n};\n\nexport const useDebouncedState = <TValue>(defaultValue: TValue, delay: number | undefined) => {\n\tconst [value, setValue] = useState(defaultValue);\n\n\tconst setDebouncedValue = useConstant(() => debounce(setValue, delay));\n\n\tuseOnUnmountEffect(() => {\n\t\tsetDebouncedValue.cancel();\n\t\tsetDebouncedValue.cancelMaxWait();\n\t});\n\n\treturn [value, setDebouncedValue, setValue] as const;\n};\n","import { useCallback, useState } from \"react\";\n\ntype InitialState = boolean | (() => boolean);\n\nconst useToggle = (initialValue: InitialState = false) => {\n\tconst [value, setValue] = useState(initialValue);\n\n\tconst toggle = useCallback(<TValue>(newValue?: TValue) => {\n\t\tif (typeof newValue === \"boolean\") {\n\t\t\tsetValue(newValue);\n\t\t\treturn;\n\t\t}\n\n\t\tsetValue((prev) => !prev);\n\t}, []);\n\n\treturn [value, toggle] as const;\n};\n\nexport { useToggle };\n","import { lockScroll } from \"@zayne-labs/toolkit-core\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useToggle } from \"./useToggle\";\n\ntype DisclosureOptions = {\n\thasScrollControl?: boolean;\n\tinitialState?: boolean | (() => boolean);\n};\n\nconst useDisclosure = (options: DisclosureOptions = {}) => {\n\tconst { hasScrollControl = false, initialState = false } = options;\n\tconst [isOpen, toggleIsOpen] = useToggle(initialState);\n\n\tconst handleScrollControl = useCallbackRef(\n\t\t(state: boolean) => hasScrollControl && lockScroll({ isActive: state })\n\t);\n\n\tconst onOpen = useCallbackRef(<TValue>(value?: TValue) => {\n\t\tconst booleanValue = typeof value === \"boolean\" && value ? value : true;\n\t\ttoggleIsOpen(booleanValue);\n\t\thandleScrollControl(booleanValue);\n\t});\n\n\tconst onClose = useCallbackRef(<TValue>(value?: TValue) => {\n\t\tconst booleanValue = typeof value === \"boolean\" && !value ? value : false;\n\n\t\ttoggleIsOpen(booleanValue);\n\t\thandleScrollControl(booleanValue);\n\t});\n\n\tconst onToggle = useCallbackRef(<TValue>(value?: TValue) => {\n\t\tif (typeof value === \"boolean\") {\n\t\t\tvalue ? onOpen(value) : onClose(value);\n\t\t\treturn;\n\t\t}\n\n\t\tisOpen ? onClose() : onOpen();\n\t});\n\n\treturn { isOpen, onClose, onOpen, onToggle };\n};\n\nexport { useDisclosure };\n","import { useSyncExternalStore } from \"react\";\n\nconst noopStore = {\n\tgetServerSnapshot: () => true,\n\tgetSnapshot: () => false,\n\t// eslint-disable-next-line unicorn/consistent-function-scoping -- It's fine\n\tsubscribe: () => () => {},\n};\n\n/**\n * @description Returns whether the component is currently being server side rendered or\n * hydrated on the client. Can be used to delay browser-specific rendering\n * until after hydration.\n */\nconst useIsServer = () => {\n\tconst isServer = useSyncExternalStore(\n\t\tnoopStore.subscribe,\n\t\tnoopStore.getSnapshot,\n\t\tnoopStore.getServerSnapshot\n\t);\n\n\treturn isServer;\n};\n\nexport { useIsServer };\n","import type { StoreApi } from \"@zayne-labs/toolkit-core\";\nimport type { SelectorFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useDebugValue, useSyncExternalStore } from \"react\";\n\nconst useStore = <TState, TSlice>(store: StoreApi<TState>, selector: SelectorFn<TState, TSlice>) => {\n\tconst slice = useSyncExternalStore(\n\t\tstore.subscribe,\n\t\t() => selector(store.getState()),\n\t\t() => selector(store.getInitialState())\n\t);\n\n\tuseDebugValue(slice);\n\n\treturn slice;\n};\n\nexport { useStore };\n","import {\n\ttype LocationInfo,\n\ttype LocationStoreOptions,\n\tcreateLocationStore,\n} from \"@zayne-labs/toolkit-core\";\nimport type { SelectorFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useConstant } from \"./useConstant\";\nimport { useStore } from \"./useStore\";\n\ntype LocationStore = ReturnType<typeof createLocationStore>;\n\ntype UseLocationResult<TSlice> = [\n\tstate: TSlice,\n\tsetState: {\n\t\tpush: LocationStore[\"push\"];\n\t\treplace: LocationStore[\"replace\"];\n\t\ttriggerPopstate: LocationStore[\"triggerPopstateEvent\"];\n\t},\n];\n\nconst useLocation = <TSlice = LocationInfo>(\n\tselector: SelectorFn<LocationInfo, TSlice>,\n\toptions?: LocationStoreOptions\n) => {\n\tconst locationStore = useConstant(() => createLocationStore(options));\n\n\tconst stateSlice = useStore(locationStore as never, selector);\n\n\treturn [\n\t\tstateSlice,\n\t\t{\n\t\t\tpush: locationStore.push,\n\t\t\treplace: locationStore.replace,\n\t\t\ttriggerPopstate: locationStore.triggerPopstateEvent,\n\t\t},\n\t] as UseLocationResult<TSlice>;\n};\n\nexport { useLocation };\n","import { on } from \"@zayne-labs/toolkit-core\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\nimport { useDebouncedState } from \"../useDebounce\";\nimport type { UseSpecificPresence } from \"./types\";\n\nconst useAnimationPresence: UseSpecificPresence = (options = {}) => {\n\tconst { defaultValue = true, duration, onExitComplete } = options;\n\n\tconst [isShown, setIsShown] = useState(defaultValue);\n\n\tconst [isMounted, setDebouncedIsMounted, setRegularIsMounted] = useDebouncedState(\n\t\tdefaultValue,\n\t\tduration\n\t);\n\tconst elementRef = useRef<HTMLElement>(null);\n\n\tconst stableOnExitComplete = useCallbackRef(onExitComplete);\n\n\tuseEffect(() => {\n\t\t!isMounted && stableOnExitComplete();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableOnExitComplete is stable\n\t}, [isMounted]);\n\n\tconst handleIsMountedWithoutRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetRegularIsMounted(true);\n\t\t\treturn;\n\t\t}\n\n\t\tsetDebouncedIsMounted(false);\n\t};\n\n\tconst handleIsMountedWithRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetRegularIsMounted(true);\n\t\t\treturn;\n\t\t}\n\n\t\ton(\"animationend\", elementRef.current, () => {\n\t\t\tsetDebouncedIsMounted.cancel();\n\t\t\tsetRegularIsMounted(false);\n\t\t});\n\t};\n\n\tconst toggleVisibility = useCallbackRef(<TValue>(newValue?: TValue) => {\n\t\tconst handleSetIsMounted = !duration ? handleIsMountedWithRef : handleIsMountedWithoutRef;\n\n\t\tif (typeof newValue === \"boolean\") {\n\t\t\tsetIsShown(newValue);\n\t\t\thandleSetIsMounted(newValue);\n\t\t\treturn;\n\t\t}\n\n\t\tsetIsShown(!isShown);\n\t\thandleSetIsMounted(!isShown);\n\t});\n\n\treturn {\n\t\tisPresent: isMounted,\n\t\tisVisible: isShown,\n\t\ttoggleVisibility,\n\t\t...(duration === undefined && { elementRef }),\n\t} as never;\n};\n\nexport { useAnimationPresence };\n","import { on } from \"@zayne-labs/toolkit-core\";\nimport { useEffect, useRef, useState } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\nimport { useDebouncedState } from \"../useDebounce\";\nimport type { UseSpecificPresence } from \"./types\";\n\nconst useTransitionPresence: UseSpecificPresence = (options = {}) => {\n\tconst { defaultValue = true, duration, onExitComplete } = options;\n\n\tconst [isShown, setIsShown] = useState(defaultValue);\n\n\tconst [isMounted, setDebouncedIsMounted, setRegularIsMounted] = useDebouncedState(\n\t\tdefaultValue,\n\t\tduration\n\t);\n\tconst elementRef = useRef<HTMLElement>(null);\n\tconst stableOnExitComplete = useCallbackRef(onExitComplete);\n\n\tconst handleIsMountedWithoutRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetDebouncedIsMounted(value, { $delay: 0 });\n\t\t\treturn;\n\t\t}\n\n\t\tsetDebouncedIsMounted(false);\n\t};\n\n\tconst handleIsMountedWithRef = (value: boolean) => {\n\t\tif (value) {\n\t\t\tsetDebouncedIsMounted(value, { $delay: 0 });\n\t\t\treturn;\n\t\t}\n\n\t\ton(\"transitionend\", elementRef.current, () => {\n\t\t\tsetDebouncedIsMounted.cancel();\n\t\t\tsetRegularIsMounted(false);\n\t\t});\n\t};\n\n\tconst toggleVisibility = useCallbackRef(<TValue>(newValue?: TValue) => {\n\t\tconst handleSetIsMounted = !duration ? handleIsMountedWithRef : handleIsMountedWithoutRef;\n\n\t\tif (typeof newValue === \"boolean\") {\n\t\t\tsetIsShown(newValue);\n\t\t\thandleSetIsMounted(newValue);\n\t\t\treturn;\n\t\t}\n\n\t\tsetIsShown(!isShown);\n\t\thandleSetIsMounted(!isShown);\n\t});\n\n\tuseEffect(() => {\n\t\t!isMounted && stableOnExitComplete();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableOnExitComplete is stable\n\t}, [isMounted]);\n\n\treturn {\n\t\tisPresent: isMounted || isShown,\n\t\tisVisible: isMounted && isShown,\n\t\ttoggleVisibility,\n\t\t...(duration === undefined && { elementRef }),\n\t} as never;\n};\n\nexport { useTransitionPresence };\n","import type { UsePresence } from \"./types\";\nimport { useAnimationPresence } from \"./useAnimationPresence\";\nimport { useTransitionPresence } from \"./useTransitionPresence\";\n\n/**\n * usePresence hook provides a way to animate an element, before removing it from the DOM.\n * @param defaultValue - The default value for the presence state. Defaults to `true`.\n * @param options - The options for the usePresence hook.\n * @returns A object containing the boolean that should be used to conditionally render the element (isPresent), another boolean used to toggle the animation classes, and a function to toggle the state.\n */\n\nconst usePresence: UsePresence = (options = {}) => {\n\tconst { type = \"transition\", ...restOfOptions } = options;\n\n\tconst useSpecificPresence = type === \"transition\" ? useTransitionPresence : useAnimationPresence;\n\n\treturn useSpecificPresence(restOfOptions);\n};\n\nexport { usePresence };\n","import { isBrowser } from \"@zayne-labs/toolkit-core\";\nimport { type RefCallback, useState } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\nconst useScrollObserver = <TElement extends HTMLElement>(options: IntersectionObserverInit = {}) => {\n\tconst { rootMargin = \"10px 0px 0px 0px\", ...restOfOptions } = options;\n\n\tconst [isScrolled, setIsScrolled] = useState(false);\n\n\tconst elementObserver = useConstant(() => {\n\t\tif (!isBrowser()) return;\n\n\t\treturn new IntersectionObserver(\n\t\t\t([entry]) => {\n\t\t\t\tif (!entry) return;\n\t\t\t\tsetIsScrolled(!entry.isIntersecting);\n\t\t\t},\n\t\t\t{ rootMargin, ...restOfOptions }\n\t\t);\n\t});\n\n\tconst observedElementRef: RefCallback<TElement> = useCallbackRef((element) => {\n\t\tconst scrollWatcher = document.createElement(\"span\");\n\t\tscrollWatcher.dataset.scrollWatcher = \"\";\n\n\t\telement?.before(scrollWatcher);\n\n\t\tif (!elementObserver) return;\n\n\t\telementObserver.observe(scrollWatcher);\n\n\t\tconst cleanupFn = () => {\n\t\t\tscrollWatcher.remove();\n\t\t\telementObserver.disconnect();\n\t\t};\n\n\t\t// React 18 may not call the cleanup function so we need to call it manually on element unmount\n\t\tif (!element) {\n\t\t\tcleanupFn();\n\t\t\treturn;\n\t\t}\n\n\t\treturn cleanupFn;\n\t});\n\n\treturn { isScrolled, observedElementRef };\n};\n\nexport { useScrollObserver };\n","import { isPlainObject } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useState } from \"react\";\nimport { useAfterMountEffect } from \"./effects/useAfterMountEffect\";\nimport { useDebouncedFn } from \"./useDebounce\";\n\nconst isSerializable = (item: unknown): item is boolean | number | string =>\n\ttypeof item === \"string\" || typeof item === \"number\" || typeof item === \"boolean\";\n\nconst checkObjectPropsForQuery = (item: Record<string, unknown>, query: string): boolean => {\n\tfor (const value of Object.values(item)) {\n\t\tif (isSerializable(value) && value.toString().toLowerCase().includes(query)) {\n\t\t\treturn true;\n\t\t}\n\t}\n\treturn false;\n};\n\nconst useSearch = <TData>(initialData: TData[], delay?: number) => {\n\tconst [searchQuery, setSearchQuery] = useState(\"\");\n\tconst [filteredData, setFilteredData] = useState(initialData);\n\tconst [isLoading, setIsLoading] = useState(false);\n\n\tconst handleDebouncedSearch = useDebouncedFn(() => {\n\t\tconst query = searchQuery.toLowerCase();\n\n\t\tconst filteredResults = initialData.filter((item) => {\n\t\t\tif (isSerializable(item)) {\n\t\t\t\treturn item.toString().toLowerCase().includes(query);\n\t\t\t}\n\n\t\t\tif (isPlainObject(item)) {\n\t\t\t\treturn checkObjectPropsForQuery(item, query);\n\t\t\t}\n\n\t\t\treturn false;\n\t\t});\n\n\t\tsetFilteredData(filteredResults);\n\t\tsetIsLoading(false);\n\t}, delay);\n\n\tuseAfterMountEffect(() => {\n\t\tsetIsLoading(true);\n\t\thandleDebouncedSearch();\n\t}, [searchQuery]);\n\n\treturn { data: filteredData, isLoading, query: searchQuery, setQuery: setSearchQuery };\n};\n\nexport { useSearch };\n","import {\n\ttype LocationStoreOptions,\n\ttype URLSearchParamsInit,\n\tcreateSearchParams,\n} from \"@zayne-labs/toolkit-core\";\nimport { isFunction } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useLocation } from \"./useLocation\";\n\ntype UseSearchParamsOptions = {\n\taction?: \"push\" | \"replace\";\n\tlocationOptions?: LocationStoreOptions;\n};\n\nexport const useSearchParams = <TSearchParams extends URLSearchParamsInit>(\n\toptions?: UseSearchParamsOptions\n) => {\n\tconst { action = \"push\", locationOptions } = options ?? {};\n\n\tconst [searchParams, setLocation] = useLocation((state) => state.search, locationOptions);\n\n\tconst setSearchParams = (\n\t\tnewQueryParams: TSearchParams | ((prev: URLSearchParams) => TSearchParams)\n\t) => {\n\t\tconst params = isFunction(newQueryParams) ? newQueryParams(searchParams) : newQueryParams;\n\n\t\tconst nextSearchParams = createSearchParams(params);\n\n\t\tif (Object.is(searchParams.toString(), nextSearchParams.toString())) return;\n\n\t\tsetLocation[action]({ search: nextSearchParams });\n\t};\n\n\tsetSearchParams.triggerPopstate = setLocation.triggerPopstate;\n\n\treturn [searchParams, setSearchParams] as const;\n};\n\nexport const useSearchParamsObject = <TSearchParams extends Record<string, string>>(\n\toptions?: UseSearchParamsOptions\n) => {\n\tconst [searchParams, setSearchParams] = useSearchParams(options);\n\n\tconst searchParamsObject = Object.fromEntries(searchParams) as TSearchParams;\n\n\tconst setSearchParamsObject = (\n\t\tnewQueryParams: TSearchParams | ((prev: TSearchParams) => TSearchParams)\n\t) => {\n\t\tconst params = isFunction(newQueryParams) ? newQueryParams(searchParamsObject) : newQueryParams;\n\n\t\tsetSearchParams(params);\n\t};\n\n\treturn [searchParamsObject, setSearchParamsObject] as const;\n};\n","import {\n\ttype SetStorageState,\n\ttype StorageOptions,\n\tcreateExternalStorageStore,\n} from \"@zayne-labs/toolkit-core\";\nimport { type SelectorFn, isString } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useConstant } from \"./useConstant\";\nimport { useStore } from \"./useStore\";\n\ntype UseStorageStateOptions<TValue, TSlice = TValue> = StorageOptions<TValue> & {\n\tselect?: SelectorFn<TValue, TSlice>;\n};\n\ntype StorageStoreApi<TValue> = ReturnType<typeof createExternalStorageStore<TValue>>;\n\ntype ParamsOne<TValue, TSlice> = [\n\tkey: string,\n\tinitialValue?: TValue,\n\toptions?: Omit<UseStorageStateOptions<TValue, TSlice>, \"initialValue\" | \"key\">,\n];\n\ntype ParamsTwo<TValue, TSlice> = [options: UseStorageStateOptions<TValue, TSlice>];\n\ntype UseStorageStateParams<TValue, TSlice> = ParamsOne<TValue, TSlice> | ParamsTwo<TValue, TSlice>;\n\n// TODO: Add createImpl that returns a hook for react later\nconst useStorageState = <TValue, TSlice = TValue>(...params: UseStorageStateParams<TValue, TSlice>) => {\n\tconst [keyOrOptions, $initialValue, options] = params;\n\n\tconst _key = isString(keyOrOptions) ? keyOrOptions : keyOrOptions.key;\n\tconst _initialValue = isString(keyOrOptions) ? $initialValue : keyOrOptions.initialValue;\n\n\tconst {\n\t\tinitialValue = _initialValue,\n\t\tkey = _key,\n\t\tselect = (value: TValue) => value,\n\t\t...restOfOptions\n\t} = isString(keyOrOptions)\n\t\t? ((options as UseStorageStateOptions<TValue, TSlice> | undefined) ?? {})\n\t\t: keyOrOptions;\n\n\tconst externalStore = useConstant(() =>\n\t\tcreateExternalStorageStore({ initialValue, key, ...restOfOptions })\n\t);\n\n\tconst stateInStorage = useStore(externalStore as never, select as never);\n\n\treturn [stateInStorage, externalStore.setState, externalStore] as [\n\t\tstate: TValue,\n\t\tsetState: SetStorageState<TValue>,\n\t\tstoreApi: StorageStoreApi<TValue>,\n\t];\n};\n\nexport { useStorageState };\n","import { throttleByFrame, throttleBySetTimeout, throttleByTime } from \"@zayne-labs/toolkit-core\";\nimport type { CallbackFn } from \"@zayne-labs/toolkit-type-helpers\";\nimport { useOnUnmountEffect } from \"./effects\";\nimport { useCallbackRef } from \"./useCallbackRef\";\nimport { useConstant } from \"./useConstant\";\n\nexport const useThrottleBySetTimeout = <TParams>(callbackFn: CallbackFn<TParams>, delay: number) => {\n\tconst latestCallback = useCallbackRef(callbackFn);\n\n\tconst throttledCallback = useConstant(() => throttleBySetTimeout(latestCallback, delay));\n\n\tuseOnUnmountEffect(() => throttledCallback.cancelTimeout());\n\n\treturn throttledCallback;\n};\n\nexport const useThrottleByTimer = <TParams>(callbackFn: CallbackFn<TParams>, delay: number) => {\n\tconst latestCallback = useCallbackRef(callbackFn);\n\n\tconst throttledCallback = useConstant(() => throttleByTime(latestCallback, delay));\n\n\treturn throttledCallback;\n};\n\nexport const useThrottleByFrame = <TParams>(callbackFn: CallbackFn<TParams>) => {\n\tconst latestCallback = useCallbackRef(callbackFn);\n\n\tconst throttledCallback = useConstant(() => throttleByFrame(latestCallback));\n\n\tuseOnUnmountEffect(() => throttledCallback.cancelAnimation());\n\n\treturn throttledCallback;\n};\n"]}