Skip to content

Commit 97bcf82

Browse files
committed
Allow variant prop to be set for pseudo-props component
1 parent fba1f9c commit 97bcf82

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

src/components/main/IconButton/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { IPressableProps } from '../Pressable/types';
44
import type { IIconProps } from '../Icon/types';
55

66
export interface IIconButtonProps extends Omit<IPressableProps, 'children' | 'size'>,
7-
Omit<IIconProps, 'hitSlop' | 'style'>,
7+
Omit<IIconProps, 'hitSlop' | 'style' | 'variant'>,
88
IHoverableComponent
99
{
1010
__icon?: ComponentBaseStyledProps<'Box'>

src/core/components/Components.ts

+7-4
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ export default class Components {
2121
{ variant, ...props }: PropsWithVariant,
2222
state: ComponentState = {}
2323
): ComponentStyledProps<C> {
24-
const defaultProps: ComponentStyledProps<C> = this
24+
const defaultProps = this
2525
.defaultPropsFor( componentName ) || {};
2626

27-
const variantProps: ComponentStyledProps<C> = (
27+
const variantProps = (
2828
variant ? this.variantPropsFor( componentName, variant ) : undefined
2929
) || {};
3030

3131
const resolvedProps: ComponentStyledProps<C> = merge(
32-
{}, defaultProps, variantProps, props
32+
{} as ComponentStyledProps<C>,
33+
defaultProps,
34+
variantProps,
35+
props
3336
);
3437

3538
return this.applyStateProps( resolvedProps, state );
@@ -44,7 +47,7 @@ export default class Components {
4447
variantPropsFor<C extends ComponentName>(
4548
componentName: C,
4649
variantName: VariantName
47-
): ComponentStyledProps<C> | undefined {
50+
): Omit<ComponentStyledProps<C>, 'variant'> | undefined {
4851
return this.configFor( componentName )?.variants?.[ variantName ];
4952
}
5053

src/core/components/types/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type { ComponentName, VariantName } from './common';
2424

2525
export type ComponentConfig<C extends ComponentName> = Partial<{
2626
defaultProps: ComponentStyledProps<C>,
27-
variants: Record<VariantName, ComponentStyledProps<C>>
27+
variants: Record<VariantName, Omit<ComponentStyledProps<C>, 'variant'>>
2828
sizes?: Record<string, string | number>
2929
}>;
3030

src/core/components/types/styledProps.ts

+5
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,17 @@ export type ComponentBaseStyledProps<C extends ComponentName> = {
3131
[K in (
3232
keyof StyledProps
3333
| keyof ComponentCustomProps<C>
34+
| 'variant'
3435
| 'size'
3536
)]?:
3637
K extends keyof StyledProps
3738
? StyledProps[K]
3839
: K extends keyof ComponentCustomProps<C>
3940
? ComponentCustomProps<C>[K]
41+
: K extends 'variant'
42+
? C extends keyof IThemeConfig['components']
43+
? VariantType<C>
44+
: any
4045
: K extends 'size'
4146
? C extends keyof IThemeConfig['components']
4247
? ComponentSizeType<C>

src/core/theme/Theme.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import type {
1111
} from '../typography/types';
1212
import type Components from '../components/Components';
1313
import type {
14-
ComponentName, ComponentState, PropsWithVariant, VariantName
14+
ComponentName, ComponentState, ComponentStyledProps, VariantName
1515
} from '../components/types';
1616
import type Layout from '../layout/Layout';
1717
import type {
@@ -128,7 +128,7 @@ export default class Theme {
128128

129129
resolvePropsFor(
130130
componentName: ComponentName,
131-
props: PropsWithVariant,
131+
props: ComponentStyledProps<ComponentName>,
132132
state?: ComponentState
133133
) {
134134
return this._components.resolvePropsFor( componentName, props, state );

src/hooks/useComponentPropsResolver.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { useMemo } from 'react';
22
import type {
3-
ComponentName, ComponentState, PropsWithVariant, ComponentStyledProps
3+
ComponentName, ComponentState, ComponentBaseStyledProps, ComponentStyledProps
44
} from '../core/components/types';
55
import { useTheme } from '../core/theme/hooks';
66

77
const useComponentPropsResolver = <C extends ComponentName>(
88
componentName: C,
9-
props: PropsWithVariant,
9+
props: ComponentBaseStyledProps<C>,
1010
state: ComponentState = {}
1111
): ComponentStyledProps<C> => {
1212
const theme = useTheme();

0 commit comments

Comments
 (0)