From 6263a99b9ab82a4c581aee4d75abf29c51c83d7b Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 14 Jun 2024 23:17:42 +0900 Subject: [PATCH] fix: remove any in library --- packages/react/lib.tsx | 65 ++++++++++++++++++++++++++---------------- 1 file changed, 41 insertions(+), 24 deletions(-) diff --git a/packages/react/lib.tsx b/packages/react/lib.tsx index 2f4d675..a3fad95 100644 --- a/packages/react/lib.tsx +++ b/packages/react/lib.tsx @@ -109,7 +109,7 @@ export function vcn(param: { /** * Any Props -> Variant Props, Other Props */ - >( + >( anyProps: AnyPropBeforeResolve, ) => [ Partial> & { @@ -139,7 +139,7 @@ export function vcn>(param: { /** * Any Props -> Variant Props, Other Props */ - >( + >( anyProps: AnyPropBeforeResolve, ) => [ Partial> & { @@ -223,7 +223,7 @@ export function vcn< * @param anyProps - Any props that have passed to the component. * @returns [variantProps, otherProps] */ - >( + >( anyProps: AnyPropBeforeResolve, ) => { const variantKeys = Object.keys(variants) as (keyof V)[]; @@ -268,7 +268,7 @@ export function vcn< * } * ``` */ -export type VariantProps string> = F extends ( +export type VariantProps string> = F extends ( props: infer P, ) => string ? P @@ -284,8 +284,8 @@ export type VariantProps string> = F extends ( * @returns The merged props. */ function mergeReactProps( - parentProps: Record, - childProps: Record, + parentProps: Record, + childProps: Record, ) { const overrideProps = { ...childProps }; @@ -295,7 +295,12 @@ function mergeReactProps( const isHandler = /^on[A-Z]/.test(propName); if (isHandler) { - if (childPropValue && parentPropValue) { + if ( + childPropValue && + parentPropValue && + typeof childPropValue === "function" && + typeof parentPropValue === "function" + ) { overrideProps[propName] = (...args: unknown[]) => { childPropValue?.(...args); parentPropValue?.(...args); @@ -303,9 +308,17 @@ function mergeReactProps( } else if (parentPropValue) { overrideProps[propName] = parentPropValue; } - } else if (propName === "style") { + } else if ( + propName === "style" && + typeof parentPropValue === "object" && + typeof childPropValue === "object" + ) { overrideProps[propName] = { ...parentPropValue, ...childPropValue }; - } else if (propName === "className") { + } else if ( + propName === "className" && + typeof parentPropValue === "string" && + typeof childPropValue === "string" + ) { overrideProps[propName] = twMerge(parentPropValue, childPropValue); } } @@ -324,7 +337,7 @@ function combinedRef(refs: React.Ref[]) { refs.forEach((ref) => { if (ref instanceof Function) { ref(instance); - } else if (!!ref) { + } else if (ref) { (ref as React.MutableRefObject).current = instance; } }); @@ -333,20 +346,24 @@ function combinedRef(refs: React.Ref[]) { interface SlotProps { children?: React.ReactNode; } -export const Slot = React.forwardRef>( - (props, ref) => { - const { children, ...slotProps } = props; - const { asChild: _1, ...safeSlotProps } = slotProps; - if (!React.isValidElement(children)) { - console.warn(`given children "${children}" is not valid for asChild`); - return null; - } - return React.cloneElement(children, { - ...mergeReactProps(safeSlotProps, children.props), - ref: combinedRef([ref, (children as any).ref]), - } as any); - }, -); +export const Slot = React.forwardRef< + HTMLElement, + SlotProps & Record +>((props, ref) => { + const { children, ...slotProps } = props; + const { asChild: _1, ...safeSlotProps } = slotProps; + if (!React.isValidElement(children)) { + console.warn(`given children "${children}" is not valid for asChild`); + return null; + } + return React.cloneElement(children, { + ...mergeReactProps(safeSlotProps, children.props), + ref: combinedRef([ + ref, + (children as unknown as { ref: React.Ref }).ref, + ]), + } as never); +}); export interface AsChild { asChild?: boolean;