feat: add resolveProps as vcn's second return
This commit is contained in:
parent
23c96df0af
commit
5a3b5a258e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user