feat: add resolveProps as vcn's second return

This commit is contained in:
p-sw 2024-05-19 12:33:54 +09:00
parent 23c96df0af
commit 5a3b5a258e

View File

@ -20,25 +20,51 @@ export function vcn<V extends Record<string, Record<string, string>>>({
defaults: {
[VariantKey in keyof V]: BooleanString<keyof V[VariantKey] & string>;
};
}): (variantProps: RawVariantProps<V> & { className?: string }) => string {
return ({ className, ...variantProps }) => {
return twMerge(
base,
...(
Object.entries(defaults) as [keyof V, keyof V[keyof V]][]
).map<string>(
([variantKey, defaultValue]) =>
variants[variantKey][
(variantProps as unknown as RawVariantProps<V>)[variantKey] ??
defaultValue
]
),
className
);
};
}): [
(variantProps: RawVariantProps<V> & { className?: string }) => string,
(
anyProps: Record<string, any>,
options?: {
includeClassName?: boolean;
}
) => [RawVariantProps<V> & { className?: string }, Record<string, any>],
] {
return [
({ className, ...variantProps }) => {
return twMerge(
base,
...(
Object.entries(defaults) as [keyof V, keyof V[keyof V]][]
).map<string>(
([variantKey, defaultValue]) =>
variants[variantKey][
(variantProps as unknown as RawVariantProps<V>)[variantKey] ??
defaultValue
]
),
className
);
},
(anyProps, options = {}) => {
const variantKeys = Object.keys(variants) as (keyof V)[];
return Object.entries(anyProps).reduce(
([variantProps, otherProps], [key, value]) => {
if (
variantKeys.includes(key) ||
(options.includeClassName && key === "className")
) {
return [{ ...variantProps, [key]: value }, otherProps];
}
return [variantProps, { ...otherProps, [key]: value }];
},
[{}, {}]
);
},
];
}
export type VariantProps<F extends ReturnType<typeof vcn>> = F extends (
export type VariantProps<F extends ReturnType<typeof vcn>[0]> = F extends (
props: infer P
) => string
? P