@zayne-labs/toolkit-react 0.9.3 → 0.9.4

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,6 +1,6 @@
1
1
  import { defineEnum, isArray, isPlainObject, isString, isFunction } from '@zayne-labs/toolkit-type-helpers';
2
2
  import { createContext, useRef, useLayoutEffect, useCallback, useEffect, useState, useSyncExternalStore, useDebugValue, use } from 'react';
3
- import { on, setAnimationInterval, debounce, lockScroll, createLocationStore, createScrollObserver, createExternalStorageStore, throttleBySetTimeout, throttleByTime, throttleByFrame, copyToClipboard, createSearchParams } from '@zayne-labs/toolkit-core';
3
+ import { on, setAnimationInterval, toArray, onClickOutside, debounce, lockScroll, createLocationStore, createScrollObserver, createExternalStorageStore, throttleBySetTimeout, throttleByTime, throttleByFrame, copyToClipboard, createSearchParams } from '@zayne-labs/toolkit-core';
4
4
 
5
5
  // src/hooks/createCustomContext.ts
6
6
  var ContextError = class extends Error {
@@ -60,6 +60,18 @@ var useAfterMountEffect = (callBackFn, deps) => {
60
60
  stableCallback();
61
61
  }, deps);
62
62
  };
63
+ function useAsyncEffect(effect, deps) {
64
+ const stableEffectCallback = useCallbackRef(effect);
65
+ const [destroy, setDestroy] = useState();
66
+ useEffect(() => {
67
+ const e = stableEffectCallback();
68
+ async function execute() {
69
+ setDestroy(await e);
70
+ }
71
+ void execute();
72
+ return () => void destroy?.();
73
+ }, deps);
74
+ }
63
75
  var useEffectOnce = (callBackFn) => {
64
76
  const stableCallback = useCallbackRef(callBackFn);
65
77
  const effectGuard = useRef(false);
@@ -149,6 +161,19 @@ var useAnimationInterval = (options) => {
149
161
  }, [intervalDuration]);
150
162
  return { start, stop };
151
163
  };
164
+ var useClickOutside = (refOrRefArray, callback, options) => {
165
+ const { enabled = true } = options ?? {};
166
+ const savedCallback = useCallbackRef(callback);
167
+ useEffect(() => {
168
+ if (!enabled) return;
169
+ const controller = new AbortController();
170
+ const elementArray = toArray(refOrRefArray).map((ref) => ref.current);
171
+ onClickOutside(elementArray, savedCallback, { signal: controller.signal });
172
+ return () => {
173
+ controller.abort();
174
+ };
175
+ }, [enabled, refOrRefArray, savedCallback]);
176
+ };
152
177
  var useCopyToClipboard = () => {
153
178
  const [state, setState] = useState("");
154
179
  const handleCopy = (value) => {
@@ -463,36 +488,7 @@ var useThrottleByFrame = (callbackFn) => {
463
488
  useUnmountEffect(() => throttledCallback.cancelAnimation());
464
489
  return throttledCallback;
465
490
  };
466
- var replacer = (_, value) => {
467
- if (!isPlainObject(value)) {
468
- return value;
469
- }
470
- const transformedObject = Object.keys(value).sort().reduce((accumulator, key) => {
471
- accumulator[key] = value[key];
472
- return accumulator;
473
- }, {});
474
- return transformedObject;
475
- };
476
- var hashResourceKey = (resourceKey) => JSON.stringify(resourceKey, replacer);
477
- var $PromiseCache = /* @__PURE__ */ new Map();
478
- var useResource = (options) => {
479
- const { fn, hashFn = hashResourceKey, key = () => [fn.toString()] } = options;
480
- const computedResourceKey = isFunction(key) ? key() : key;
481
- const hashedKey = hashFn(computedResourceKey);
482
- const fetchResourceAndSetCache = () => {
483
- const promise = fn({ resourceKey: computedResourceKey }).catch(($error) => {
484
- return $error;
485
- });
486
- $PromiseCache.set(hashedKey, promise);
487
- };
488
- if (!$PromiseCache.has(hashedKey)) {
489
- fetchResourceAndSetCache();
490
- }
491
- const cachedPromise = $PromiseCache.get(hashedKey);
492
- const result = use(cachedPromise);
493
- return { data: result, refetch: fetchResourceAndSetCache };
494
- };
495
491
 
496
- 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 };
497
- //# sourceMappingURL=chunk-QRLMJCY7.js.map
498
- //# sourceMappingURL=chunk-QRLMJCY7.js.map
492
+ export { ContextError, createCustomContext, getErrorMessage, useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useAsyncEffect, useCallbackRef, useClickOutside, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, usePresence, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle, useUnmountEffect };
493
+ //# sourceMappingURL=chunk-EBM5P324.js.map
494
+ //# sourceMappingURL=chunk-EBM5P324.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/useAsyncEffect.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/useClickOutside.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-EBM5P324.js","sourcesContent":["import { defineEnum } from \"@zayne-labs/toolkit-type-helpers\";\nimport { 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<TContextValue, TStrict extends boolean> = {\n\tdefaultValue?: TContextValue | null;\n\terrorMessage?: string;\n\textension?: (contextValue: NoInfer<TContextValue> | null) => TContextValue | null;\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\textension,\n\t\thookName = \"useUnnamedContext\",\n\t\tproviderName = \"UnnamedContextProvider\",\n\t\tname = providerName.endsWith(\"Provider\") ? providerName.slice(0, -8) : \"UnnamedContext\",\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\tconst extendedContextValue = extension?.(contextValue) ?? contextValue;\n\n\t\tif (strict && extendedContextValue === null) {\n\t\t\tthrow new ContextError(errorMessage ?? getErrorMessage(hookName, providerName));\n\t\t}\n\n\t\treturn extendedContextValue as NonNullable<typeof extendedContextValue>;\n\t};\n\n\treturn defineEnum([Context.Provider, useCustomContext]);\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, useState } from \"react\";\nimport { useCallbackRef } from \"../useCallbackRef\";\n\nexport function useAsyncEffect(\n\teffect: () => Promise<ReturnType<React.EffectCallback>>,\n\tdeps?: React.DependencyList\n) {\n\tconst stableEffectCallback = useCallbackRef(effect);\n\tconst [destroy, setDestroy] = useState<ReturnType<React.EffectCallback>>();\n\n\tuseEffect(() => {\n\t\tconst e = stableEffectCallback();\n\n\t\tasync function execute() {\n\t\t\tsetDestroy(await e);\n\t\t}\n\n\t\tvoid execute();\n\n\t\treturn () => void destroy?.();\n\t\t// eslint-disable-next-line react-hooks/exhaustive-deps -- stableEffectCallback is stable\n\t}, deps);\n}\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 { useRef } from \"react\";\n\nconst useConstant = <TResult>(initCallbackFn: () => TResult) => {\n\tconst resultRef = useRef<TResult | null>(null);\n\n\t// eslint-disable-next-line ts-eslint/prefer-nullish-coalescing -- The current case is justified since it's optimizable by the react compiler\n\tif (resultRef.current === null) {\n\t\tresultRef.current = initCallbackFn();\n\t}\n\n\treturn resultRef.current;\n};\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 { onClickOutside, toArray } from \"@zayne-labs/toolkit-core\";\nimport { useEffect } from \"react\";\nimport { useCallbackRef } from \"./useCallbackRef\";\n\ntype UseClickOutsideOptions = {\n\tenabled?: boolean;\n};\n\nconst useClickOutside = <TElement extends HTMLElement>(\n\trefOrRefArray: Array<React.RefObject<TElement>> | React.RefObject<TElement>,\n\tcallback: (event: MouseEvent | TouchEvent) => void,\n\toptions?: UseClickOutsideOptions\n) => {\n\tconst { enabled = true } = options ?? {};\n\n\tconst savedCallback = useCallbackRef(callback);\n\n\tuseEffect(() => {\n\t\tif (!enabled) return;\n\n\t\tconst controller = new AbortController();\n\n\t\tconst elementArray = toArray(refOrRefArray).map((ref) => ref.current);\n\n\t\tonClickOutside(elementArray, savedCallback, { signal: controller.signal });\n\n\t\treturn () => {\n\t\t\tcontroller.abort();\n\t\t};\n\t}, [enabled, refOrRefArray, savedCallback]);\n};\n\nexport { useClickOutside };\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"]}
@@ -7,6 +7,8 @@ import { AnimationIntervalOptions, LocationInfo, LocationStoreOptions, createLoc
7
7
 
8
8
  declare const useAfterMountEffect: typeof useEffect;
9
9
 
10
+ declare function useAsyncEffect(effect: () => Promise<ReturnType<React.EffectCallback>>, deps?: React.DependencyList): void;
11
+
10
12
  declare const useEffectOnce: (callBackFn: React.EffectCallback) => void;
11
13
 
12
14
  type Destructor = ReturnType<React.EffectCallback>;
@@ -50,6 +52,11 @@ declare const useAnimationInterval: (options: AnimationOptions) => {
50
52
  */
51
53
  declare const useCallbackRef: <TCallback = AnyFunction>(callbackFn: TCallback | undefined) => TCallback;
52
54
 
55
+ type UseClickOutsideOptions = {
56
+ enabled?: boolean;
57
+ };
58
+ declare const useClickOutside: <TElement extends HTMLElement>(refOrRefArray: Array<React.RefObject<TElement>> | React.RefObject<TElement>, callback: (event: MouseEvent | TouchEvent) => void, options?: UseClickOutsideOptions) => void;
59
+
53
60
  declare const useConstant: <TResult>(initCallbackFn: () => TResult) => TResult;
54
61
 
55
62
  declare const useCopyToClipboard: () => {
@@ -188,30 +195,4 @@ declare const useThrottleByFrame: <TParams>(callbackFn: CallbackFn<TParams>) =>
188
195
  cancelAnimation(): void;
189
196
  };
190
197
 
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 };
198
+ export { useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useAsyncEffect, useCallbackRef, useClickOutside, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, usePresence, 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, usePresence, useResource, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle, useUnmountEffect } from '../chunk-QRLMJCY7.js';
1
+ export { ContextError, createCustomContext, getErrorMessage, useAfterMountEffect, useAnimateElementRefs, useAnimationInterval, useAsyncEffect, useCallbackRef, useClickOutside, useConstant, useCopyToClipboard, useDebouncedFn, useDebouncedState, useDisclosure, useEffectOnce, useIsServer, useLifeCycle, useLocation, useMountEffect, usePresence, useScrollObserver, useSearch, useSearchParams, useSearchParamsObject, useStorageState, useStore, useThrottleByFrame, useThrottleBySetTimeout, useThrottleByTimer, useToggle, useUnmountEffect } from '../chunk-EBM5P324.js';
2
2
  //# sourceMappingURL=index.js.map
3
3
  //# sourceMappingURL=index.js.map
@@ -37,8 +37,14 @@ type SlotOptions = {
37
37
  * @throws { AssertionError } when throwOnMultipleSlotMatch is true and multiple slots are found
38
38
  */
39
39
  declare const getSingleSlot: (children: React.ReactNode, SlotComponent: FunctionalComponent, options?: SlotOptions) => react.ReactNode;
40
- declare const getMultipleSlots: <const TSlotComponents extends FunctionalComponent[]>(children: React.ReactNode, SlotComponents: TSlotComponents, options?: SlotOptions) => {
41
- regularChildren: undefined[] | null[] | string[] | number[] | bigint[] | false[] | true[] | react.ReactElement<unknown, string | react.JSXElementConstructor<any>>[] | Iterable<react.ReactNode>[] | react.ReactPortal[] | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<react.ReactNode> | null | undefined>[];
40
+ type GetMultipleSlotsOptions = Omit<SlotOptions, "errorMessage"> & {
41
+ errorMessage?: string | string[];
42
+ };
43
+ /**
44
+ * @description The same as getSingleSlot, but for multiple slot components
45
+ */
46
+ declare const getMultipleSlots: <const TSlotComponents extends FunctionalComponent[]>(children: React.ReactNode, SlotComponents: TSlotComponents, options?: GetMultipleSlotsOptions) => {
47
+ regularChildren: string[] | undefined[] | null[] | number[] | bigint[] | false[] | true[] | react.ReactElement<unknown, string | react.JSXElementConstructor<any>>[] | Iterable<react.ReactNode>[] | react.ReactPortal[] | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<react.ReactNode> | null | undefined>[];
42
48
  slots: { [Key in keyof TSlotComponents]: ReturnType<TSlotComponents[Key]>; };
43
49
  };
44
50
  /**
@@ -1,4 +1,4 @@
1
- import { isFunction, isPlainObject, AssertionError } from '@zayne-labs/toolkit-type-helpers';
1
+ import { isFunction, isArray, isPlainObject, AssertionError } from '@zayne-labs/toolkit-type-helpers';
2
2
  import { toArray, mergeClassNames, mergeFunctions } from '@zayne-labs/toolkit-core';
3
3
  import { isValidElement } from 'react';
4
4
 
@@ -29,7 +29,7 @@ var matchesSlotComponent = (child, SlotComponent2) => {
29
29
  if (child.type === SlotComponent2) {
30
30
  return true;
31
31
  }
32
- if (child.type.slotSymbol === SlotComponent2.slotSymbol) {
32
+ if (child.type?.slotSymbol === SlotComponent2.slotSymbol) {
33
33
  return true;
34
34
  }
35
35
  if (child.type.name === SlotComponent2.name) {
@@ -63,8 +63,12 @@ var getSingleSlot = (children, SlotComponent2, options = {}) => {
63
63
  return slotElement;
64
64
  };
65
65
  var getMultipleSlots = (children, SlotComponents, options) => {
66
+ const { errorMessage, ...restOptions } = options ?? {};
66
67
  const slots = SlotComponents.map(
67
- (SlotComponent2) => getSingleSlot(children, SlotComponent2, options)
68
+ (SlotComponent2, index) => getSingleSlot(children, SlotComponent2, {
69
+ ...restOptions,
70
+ errorMessage: isArray(errorMessage) ? errorMessage[index] : errorMessage
71
+ })
68
72
  );
69
73
  const regularChildren = getRegularChildren(children, SlotComponents);
70
74
  return { regularChildren, slots };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/utils/composeRefs.ts","../../../src/utils/getSlotElement.ts","../../../src/utils/getSlotMap.ts","../../../src/utils/mergeProps.ts","../../../src/utils/mergeTwoProps.ts"],"names":["SlotComponent","toArray","isValidElement","isFunction","isPlainObject","mergeClassNames","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 extends HTMLElement>(\n\trefs: Array<PossibleRef<TRef>>\n): 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 { AssertionError, type UnknownObject } from \"@zayne-labs/toolkit-type-helpers\";\nimport { isValidElement } from \"react\";\n\nexport type FunctionalComponent<TProps extends UnknownObject = never> = React.FunctionComponent<TProps>;\n\n/**\n * @description Checks if a react child (within the children array) matches the provided SlotComponent using multiple matching strategies:\n * 1. Matches by direct component reference\n * 2. Matches by slot symbol property\n * 3. Matches by stringified component\n * 4. Matches by component name\n */\nexport const matchesSlotComponent = (child: React.ReactNode, SlotComponent: FunctionalComponent) => {\n\tif (!isValidElement(child)) {\n\t\treturn false;\n\t}\n\n\tif (child.type === SlotComponent) {\n\t\treturn true;\n\t}\n\n\ttype WithSlot = { readonly slotSymbol?: unique symbol };\n\n\tif ((child.type as WithSlot).slotSymbol === (SlotComponent as WithSlot).slotSymbol) {\n\t\treturn true;\n\t}\n\n\tif ((child.type as FunctionalComponent).name === SlotComponent.name) {\n\t\treturn true;\n\t}\n\n\treturn child.type.toString() === SlotComponent.toString();\n};\n\n/**\n * @description Checks if a react child (within the children array) matches any of the provided SlotComponents.\n */\nexport const matchesAnySlotComponent = (child: React.ReactNode, SlotComponents: FunctionalComponent[]) => {\n\tconst matchesSlot = SlotComponents.some((SlotComponent) => matchesSlotComponent(child, SlotComponent));\n\n\treturn matchesSlot;\n};\n\ntype SlotOptions = {\n\terrorMessage?: string;\n\tthrowOnMultipleSlotMatch?: boolean;\n};\n\n/**\n * @description Counts how many times a slot component appears in an array of children\n * @internal\n */\nconst calculateSlotOccurrences = (\n\tchildrenArray: React.ReactNode[],\n\tSlotComponent: FunctionalComponent\n) => {\n\tlet count = 0;\n\n\tfor (const child of childrenArray) {\n\t\tif (!matchesSlotComponent(child, SlotComponent)) continue;\n\n\t\tcount += 1;\n\t}\n\n\treturn count;\n};\n\n/**\n * @description Retrieves a single slot element from a collection of React children that matches the provided SlotComponent component.\n *\n * @throws { AssertionError } when throwOnMultipleSlotMatch is true and multiple slots are found\n */\nexport const getSingleSlot = (\n\tchildren: React.ReactNode,\n\tSlotComponent: FunctionalComponent,\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 shouldThrow =\n\t\tthrowOnMultipleSlotMatch && calculateSlotOccurrences(childrenArray, SlotComponent) > 1;\n\n\tif (shouldThrow) {\n\t\tthrow new AssertionError(errorMessage);\n\t}\n\n\tconst slotElement = childrenArray.find((child) => matchesSlotComponent(child, SlotComponent));\n\n\treturn slotElement;\n};\n\n// NOTE - You can imitate const type parameter by extending readonly[] | []\n\nexport const getMultipleSlots = <const TSlotComponents extends FunctionalComponent[]>(\n\tchildren: React.ReactNode,\n\tSlotComponents: TSlotComponents,\n\toptions?: SlotOptions\n) => {\n\ttype SlotsType = { [Key in keyof TSlotComponents]: ReturnType<TSlotComponents[Key]> };\n\n\tconst slots = SlotComponents.map((SlotComponent) =>\n\t\tgetSingleSlot(children, SlotComponent, options)\n\t) as SlotsType;\n\n\tconst regularChildren = getRegularChildren(children, SlotComponents);\n\n\treturn { regularChildren, slots };\n};\n\n/**\n * @description Returns all children that are not slot elements (i.e., don't match any of the provided slot components)\n */\nexport const getRegularChildren = <TChildren extends React.ReactNode>(\n\tchildren: TChildren,\n\tSlotComponentOrComponents: FunctionalComponent | FunctionalComponent[]\n) => {\n\tconst childrenArray = toArray<React.ReactNode>(children);\n\n\tconst regularChildren = childrenArray.filter(\n\t\t(child) => !matchesAnySlotComponent(child, toArray(SlotComponentOrComponents))\n\t);\n\n\treturn regularChildren as TChildren extends unknown[] ? TChildren : TChildren[];\n};\n","import { toArray } from \"@zayne-labs/toolkit-core\";\nimport type { AnyFunction, UnionToIntersection } from \"@zayne-labs/toolkit-type-helpers\";\nimport { isValidElement } from \"react\";\n\n/**\n * Possible children types that can be passed to a slot\n */\ntype PossibleSlotChildrenType =\n\t| AnyFunction<React.ReactNode | React.ReactNode[]>\n\t| React.ReactNode\n\t| React.ReactNode[];\n\n/**\n * Maps slot names to their corresponding children types\n */\ntype GetSlotMapResult<TSlotComponentProps extends GetSlotComponentProps> = UnionToIntersection<{\n\t[TName in keyof TSlotComponentProps as TSlotComponentProps[\"name\"]]: TSlotComponentProps[\"children\"];\n}>;\n\n/**\n * Symbol used to identify SlotComponent instances\n */\nexport const slotComponentSymbol = Symbol(\"SlotComponent\");\n\n/**\n * @description Creates a map of named slots from React children. Returns an object mapping slot names to their children,\n * with a default slot for unmatched children.\n *\n * @example\n * ```tsx\n * import { type GetSlotComponentProps, SlotComponent } from \"@zayne-labs/toolkit-react/utils\"\n *\n * type SlotProps = GetSlotComponentProps<\"header\" | \"footer\">;\n *\n * function Parent({ children }: { children: React.ReactNode }) {\n * const slots = getSlotMap<SlotProps>(children);\n *\n * return (\n * <div>\n * <header>{slots.header}</header>\n * <main>{slots.default}</main>\n * <footer>{slots.footer}</footer>\n * </div>\n * );\n * }\n * ```\n *\n * Usage:\n * ```tsx\n * <Parent>\n * <SlotComponent name=\"header\">Header Content</SlotComponent>\n * <div>Random stuff</div>\n * <SlotComponent name=\"footer\">Footer Content</SlotComponent>\n * </Parent>\n * ```\n */\nexport const getSlotMap = <TSlotComponentProps extends GetSlotComponentProps>(\n\tchildren: React.ReactNode\n) => {\n\tconst childrenArray = toArray<React.ReactNode>(children);\n\n\tconst slots: Record<string, PossibleSlotChildrenType> & { default: React.ReactNode[] } = {\n\t\tdefault: [],\n\t};\n\n\tfor (const child of childrenArray) {\n\t\ttype SlotElementProps = TSlotComponentProps & { \"data-slot-name\": never };\n\n\t\ttype RegularElementProps = Pick<TSlotComponentProps, \"children\"> & {\n\t\t\t\"data-slot-name\": string;\n\t\t\tname: never;\n\t\t};\n\n\t\tconst isSlotElementWithName =\n\t\t\tisValidElement<SlotElementProps>(child)\n\t\t\t&& (child.type as typeof SlotComponent).id === slotComponentSymbol\n\t\t\t&& child.props.name;\n\n\t\tconst isRegularElementWithSlotName =\n\t\t\tisValidElement<RegularElementProps>(child) && child.props[\"data-slot-name\"];\n\n\t\tif (!isSlotElementWithName && !isRegularElementWithSlotName) {\n\t\t\tslots.default.push(child);\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst slotName = isSlotElementWithName ? child.props.name : child.props[\"data-slot-name\"];\n\n\t\tslots[slotName] = child.props.children;\n\t}\n\n\treturn slots as GetSlotMapResult<TSlotComponentProps> & { default: React.ReactNode[] };\n};\n\n/**\n * @description Produce props for the SlotComponent\n */\nexport type GetSlotComponentProps<\n\tTName extends string = string,\n\tTChildren extends PossibleSlotChildrenType = PossibleSlotChildrenType,\n> = {\n\t/** Content to render in the slot */\n\tchildren: TChildren;\n\t/** Name of the slot where content should be rendered */\n\tname: TName;\n};\n\n/**\n * @description Function used to create a slot component that defines named slots in a parent component. This component created doesn't render anything,\n * it's used purely for slot definition.\n *\n * @example\n * ```tsx\n * import { type GetSlotComponentProps, createSlotComponent, SlotComponent } from \"@zayne-labs/toolkit-react/utils\"\n *\n * type SlotProps = GetSlotComponentProps<\"header\" | \"footer\">;\n *\n * function Parent({ children }: { children: React.ReactNode }) {\n * const slots = getSlotMap<SlotProps>(children);\n *\n * return (\n * <div>\n * <header>{slots.header}</header>\n * <main>{slots.default}</main>\n * <footer>{slots.footer}</footer>\n * </div>\n * );\n * }\n *\n * Parent.Slot = createSlotComponent<SlotProps>();\n * // OR\n * Parent.Slot = SlotComponent<SlotProps>\n * ```\n *\n *\n * @example\n * Usage:\n\t```tsx\n * function App() {\n * return (\n * <Parent>\n * <Parent.Slot name=\"header\">Header Content</Parent.Slot>\n * <div>Default Content</div>\n * <Parent.Slot name=\"footer\">Footer Content</Parent.Slot>\n * </Parent>\n * );\n * }\n * ```\n */\n\nexport const createSlotComponent = <TBaseSlotComponentProps extends GetSlotComponentProps>() => {\n\tfunction SlotComponent<TSlotComponentProps extends TBaseSlotComponentProps>(\n\t\t// eslint-disable-next-line ts-eslint/no-unused-vars -- The props here are just for type definition really, as this component doesn't need to render anything\n\t\tprops: TSlotComponentProps\n\t) {\n\t\treturn null as React.ReactNode;\n\t}\n\n\tSlotComponent.id = slotComponentSymbol;\n\n\treturn SlotComponent;\n};\n\n/**\n * @description Slot component created by createSlotComponent\n */\nexport const SlotComponent = createSlotComponent();\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","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"]}
1
+ {"version":3,"sources":["../../../src/utils/composeRefs.ts","../../../src/utils/getSlotElement.ts","../../../src/utils/getSlotMap.ts","../../../src/utils/mergeProps.ts","../../../src/utils/mergeTwoProps.ts"],"names":["SlotComponent","toArray","isValidElement","isFunction","isPlainObject","mergeClassNames","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 extends HTMLElement>(\n\trefs: Array<PossibleRef<TRef>>\n): 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 { AssertionError, type UnknownObject, isArray } from \"@zayne-labs/toolkit-type-helpers\";\nimport { isValidElement } from \"react\";\n\nexport type FunctionalComponent<TProps extends UnknownObject = never> = React.FunctionComponent<TProps>;\n\n/**\n * @description Checks if a react child (within the children array) matches the provided SlotComponent using multiple matching strategies:\n * 1. Matches by direct component reference\n * 2. Matches by slot symbol property\n * 3. Matches by stringified component\n * 4. Matches by component name\n */\nexport const matchesSlotComponent = (child: React.ReactNode, SlotComponent: FunctionalComponent) => {\n\tif (!isValidElement(child)) {\n\t\treturn false;\n\t}\n\n\tif (child.type === SlotComponent) {\n\t\treturn true;\n\t}\n\n\ttype WithSlot = { readonly slotSymbol?: unique symbol };\n\n\tif ((child.type as WithSlot | undefined)?.slotSymbol === (SlotComponent as WithSlot).slotSymbol) {\n\t\treturn true;\n\t}\n\n\tif ((child.type as FunctionalComponent).name === SlotComponent.name) {\n\t\treturn true;\n\t}\n\n\treturn child.type.toString() === SlotComponent.toString();\n};\n\n/**\n * @description Checks if a react child (within the children array) matches any of the provided SlotComponents.\n */\nexport const matchesAnySlotComponent = (child: React.ReactNode, SlotComponents: FunctionalComponent[]) => {\n\tconst matchesSlot = SlotComponents.some((SlotComponent) => matchesSlotComponent(child, SlotComponent));\n\n\treturn matchesSlot;\n};\n\ntype SlotOptions = {\n\terrorMessage?: string;\n\tthrowOnMultipleSlotMatch?: boolean;\n};\n\n/**\n * @description Counts how many times a slot component appears in an array of children\n * @internal\n */\nconst calculateSlotOccurrences = (\n\tchildrenArray: React.ReactNode[],\n\tSlotComponent: FunctionalComponent\n) => {\n\tlet count = 0;\n\n\tfor (const child of childrenArray) {\n\t\tif (!matchesSlotComponent(child, SlotComponent)) continue;\n\n\t\tcount += 1;\n\t}\n\n\treturn count;\n};\n\n/**\n * @description Retrieves a single slot element from a collection of React children that matches the provided SlotComponent component.\n *\n * @throws { AssertionError } when throwOnMultipleSlotMatch is true and multiple slots are found\n */\nexport const getSingleSlot = (\n\tchildren: React.ReactNode,\n\tSlotComponent: FunctionalComponent,\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 shouldThrow =\n\t\tthrowOnMultipleSlotMatch && calculateSlotOccurrences(childrenArray, SlotComponent) > 1;\n\n\tif (shouldThrow) {\n\t\tthrow new AssertionError(errorMessage);\n\t}\n\n\tconst slotElement = childrenArray.find((child) => matchesSlotComponent(child, SlotComponent));\n\n\treturn slotElement;\n};\n\n// NOTE - You can imitate const type parameter by extending readonly[] | []\n\ntype GetMultipleSlotsOptions = Omit<SlotOptions, \"errorMessage\"> & {\n\terrorMessage?: string | string[];\n};\n\n/**\n * @description The same as getSingleSlot, but for multiple slot components\n */\nexport const getMultipleSlots = <const TSlotComponents extends FunctionalComponent[]>(\n\tchildren: React.ReactNode,\n\tSlotComponents: TSlotComponents,\n\toptions?: GetMultipleSlotsOptions\n) => {\n\ttype SlotsType = { [Key in keyof TSlotComponents]: ReturnType<TSlotComponents[Key]> };\n\n\tconst { errorMessage, ...restOptions } = options ?? {};\n\n\tconst slots = SlotComponents.map((SlotComponent, index) =>\n\t\tgetSingleSlot(children, SlotComponent, {\n\t\t\t...restOptions,\n\t\t\terrorMessage: isArray(errorMessage) ? errorMessage[index] : errorMessage,\n\t\t})\n\t) as SlotsType;\n\n\tconst regularChildren = getRegularChildren(children, SlotComponents);\n\n\treturn { regularChildren, slots };\n};\n\n/**\n * @description Returns all children that are not slot elements (i.e., don't match any of the provided slot components)\n */\nexport const getRegularChildren = <TChildren extends React.ReactNode>(\n\tchildren: TChildren,\n\tSlotComponentOrComponents: FunctionalComponent | FunctionalComponent[]\n) => {\n\tconst childrenArray = toArray<React.ReactNode>(children);\n\n\tconst regularChildren = childrenArray.filter(\n\t\t(child) => !matchesAnySlotComponent(child, toArray(SlotComponentOrComponents))\n\t);\n\n\treturn regularChildren as TChildren extends unknown[] ? TChildren : TChildren[];\n};\n","import { toArray } from \"@zayne-labs/toolkit-core\";\nimport type { AnyFunction, UnionToIntersection } from \"@zayne-labs/toolkit-type-helpers\";\nimport { isValidElement } from \"react\";\n\n/**\n * Possible children types that can be passed to a slot\n */\ntype PossibleSlotChildrenType =\n\t| AnyFunction<React.ReactNode | React.ReactNode[]>\n\t| React.ReactNode\n\t| React.ReactNode[];\n\n/**\n * Maps slot names to their corresponding children types\n */\ntype GetSlotMapResult<TSlotComponentProps extends GetSlotComponentProps> = UnionToIntersection<{\n\t[TName in keyof TSlotComponentProps as TSlotComponentProps[\"name\"]]: TSlotComponentProps[\"children\"];\n}>;\n\n/**\n * Symbol used to identify SlotComponent instances\n */\nexport const slotComponentSymbol = Symbol(\"SlotComponent\");\n\n/**\n * @description Creates a map of named slots from React children. Returns an object mapping slot names to their children,\n * with a default slot for unmatched children.\n *\n * @example\n * ```tsx\n * import { type GetSlotComponentProps, SlotComponent } from \"@zayne-labs/toolkit-react/utils\"\n *\n * type SlotProps = GetSlotComponentProps<\"header\" | \"footer\">;\n *\n * function Parent({ children }: { children: React.ReactNode }) {\n * const slots = getSlotMap<SlotProps>(children);\n *\n * return (\n * <div>\n * <header>{slots.header}</header>\n * <main>{slots.default}</main>\n * <footer>{slots.footer}</footer>\n * </div>\n * );\n * }\n * ```\n *\n * Usage:\n * ```tsx\n * <Parent>\n * <SlotComponent name=\"header\">Header Content</SlotComponent>\n * <div>Random stuff</div>\n * <SlotComponent name=\"footer\">Footer Content</SlotComponent>\n * </Parent>\n * ```\n */\nexport const getSlotMap = <TSlotComponentProps extends GetSlotComponentProps>(\n\tchildren: React.ReactNode\n) => {\n\tconst childrenArray = toArray<React.ReactNode>(children);\n\n\tconst slots: Record<string, PossibleSlotChildrenType> & { default: React.ReactNode[] } = {\n\t\tdefault: [],\n\t};\n\n\tfor (const child of childrenArray) {\n\t\ttype SlotElementProps = TSlotComponentProps & { \"data-slot-name\": never };\n\n\t\ttype RegularElementProps = Pick<TSlotComponentProps, \"children\"> & {\n\t\t\t\"data-slot-name\": string;\n\t\t\tname: never;\n\t\t};\n\n\t\tconst isSlotElementWithName =\n\t\t\tisValidElement<SlotElementProps>(child)\n\t\t\t&& (child.type as typeof SlotComponent).id === slotComponentSymbol\n\t\t\t&& child.props.name;\n\n\t\tconst isRegularElementWithSlotName =\n\t\t\tisValidElement<RegularElementProps>(child) && child.props[\"data-slot-name\"];\n\n\t\tif (!isSlotElementWithName && !isRegularElementWithSlotName) {\n\t\t\tslots.default.push(child);\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst slotName = isSlotElementWithName ? child.props.name : child.props[\"data-slot-name\"];\n\n\t\tslots[slotName] = child.props.children;\n\t}\n\n\treturn slots as GetSlotMapResult<TSlotComponentProps> & { default: React.ReactNode[] };\n};\n\n/**\n * @description Produce props for the SlotComponent\n */\nexport type GetSlotComponentProps<\n\tTName extends string = string,\n\tTChildren extends PossibleSlotChildrenType = PossibleSlotChildrenType,\n> = {\n\t/** Content to render in the slot */\n\tchildren: TChildren;\n\t/** Name of the slot where content should be rendered */\n\tname: TName;\n};\n\n/**\n * @description Function used to create a slot component that defines named slots in a parent component. This component created doesn't render anything,\n * it's used purely for slot definition.\n *\n * @example\n * ```tsx\n * import { type GetSlotComponentProps, createSlotComponent, SlotComponent } from \"@zayne-labs/toolkit-react/utils\"\n *\n * type SlotProps = GetSlotComponentProps<\"header\" | \"footer\">;\n *\n * function Parent({ children }: { children: React.ReactNode }) {\n * const slots = getSlotMap<SlotProps>(children);\n *\n * return (\n * <div>\n * <header>{slots.header}</header>\n * <main>{slots.default}</main>\n * <footer>{slots.footer}</footer>\n * </div>\n * );\n * }\n *\n * Parent.Slot = createSlotComponent<SlotProps>();\n * // OR\n * Parent.Slot = SlotComponent<SlotProps>\n * ```\n *\n *\n * @example\n * Usage:\n\t```tsx\n * function App() {\n * return (\n * <Parent>\n * <Parent.Slot name=\"header\">Header Content</Parent.Slot>\n * <div>Default Content</div>\n * <Parent.Slot name=\"footer\">Footer Content</Parent.Slot>\n * </Parent>\n * );\n * }\n * ```\n */\n\nexport const createSlotComponent = <TBaseSlotComponentProps extends GetSlotComponentProps>() => {\n\tfunction SlotComponent<TSlotComponentProps extends TBaseSlotComponentProps>(\n\t\t// eslint-disable-next-line ts-eslint/no-unused-vars -- The props here are just for type definition really, as this component doesn't need to render anything\n\t\tprops: TSlotComponentProps\n\t) {\n\t\treturn null as React.ReactNode;\n\t}\n\n\tSlotComponent.id = slotComponentSymbol;\n\n\treturn SlotComponent;\n};\n\n/**\n * @description Slot component created by createSlotComponent\n */\nexport const SlotComponent = createSlotComponent();\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","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"]}
@@ -1,4 +1,4 @@
1
- import { createCustomContext, useConstant } from '../chunk-QRLMJCY7.js';
1
+ import { createCustomContext, useConstant } from '../chunk-EBM5P324.js';
2
2
  import { createElement } from 'react';
3
3
  import { createStore, create, useStore } 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.9.3",
4
+ "version": "0.9.4",
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,8 +50,8 @@
50
50
  }
51
51
  },
52
52
  "dependencies": {
53
- "@zayne-labs/toolkit-core": "0.9.3",
54
- "@zayne-labs/toolkit-type-helpers": "0.9.3"
53
+ "@zayne-labs/toolkit-core": "0.9.4",
54
+ "@zayne-labs/toolkit-type-helpers": "0.9.4"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@arethetypeswrong/cli": "^0.17.4",
@@ -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/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-QRLMJCY7.js","sourcesContent":["import { defineEnum } from \"@zayne-labs/toolkit-type-helpers\";\nimport { 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<TContextValue, TStrict extends boolean> = {\n\tdefaultValue?: TContextValue | null;\n\terrorMessage?: string;\n\textension?: (contextValue: NoInfer<TContextValue> | null) => TContextValue | null;\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\textension,\n\t\thookName = \"useUnnamedContext\",\n\t\tproviderName = \"UnnamedContextProvider\",\n\t\tname = providerName.endsWith(\"Provider\") ? providerName.slice(0, -8) : \"UnnamedContext\",\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\tconst extendedContextValue = extension?.(contextValue) ?? contextValue;\n\n\t\tif (strict && extendedContextValue === null) {\n\t\t\tthrow new ContextError(errorMessage ?? getErrorMessage(hookName, providerName));\n\t\t}\n\n\t\treturn extendedContextValue as NonNullable<typeof extendedContextValue>;\n\t};\n\n\treturn defineEnum([Context.Provider, useCustomContext]);\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 { useRef } from \"react\";\n\nconst useConstant = <TResult>(initCallbackFn: () => TResult) => {\n\tconst resultRef = useRef<TResult | null>(null);\n\n\t// eslint-disable-next-line ts-eslint/prefer-nullish-coalescing -- The current case is justified since it's optimizable by the react compiler\n\tif (resultRef.current === null) {\n\t\tresultRef.current = initCallbackFn();\n\t}\n\n\treturn resultRef.current;\n};\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"]}