Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | 2x 29x 29x 29x 29x 58x 2x 27x 27x 2x 14x 14x 14x 14x 13x 2x 14x 14x | import * as React from 'react';
import { Box as ReakitBox } from 'reakit';
import { useClassName, createComponent, createElement, createHook } from '../utils';
import { Box, BoxProps } from '../Box';
import { FieldWrapper, FieldWrapperProps } from '../FieldWrapper';
import { Set, SetProps } from '../Set';
import { Radio, RadioProps } from './Radio';
import * as styles from './styles';
export type LocalRadioGroupProps = {
/** Default value of the radio group */
defaultValue?: string;
/** Disables the radio group */
disabled?: boolean;
name: string;
/** Are the radio inputs layed out horizontally? */
orientation?: 'horizontal' | 'vertical';
/** Radio group options */
options: Array<RadioProps>;
spacing?: SetProps['spacing'];
/** State of the radio group. Can be any color in the palette. */
state?: string;
/** Controlled value of the radio group */
value?: string;
/** Function to invoke when radio group has changed */
onChange?: React.FormEventHandler<HTMLInputElement>;
};
export type RadioGroupProps = BoxProps & LocalRadioGroupProps;
const useProps = createHook<RadioGroupProps>(
(props, { themeKey, themeKeyOverride }) => {
const {
defaultValue,
disabled,
orientation,
onChange,
options,
overrides,
name,
spacing,
state,
value,
...restProps
} = props;
const boxProps = Box.useProps(restProps);
const className = useClassName({
style: styles.RadioGroup,
styleProps: props,
themeKey,
themeKeyOverride,
prevClassName: boxProps.className
});
return {
role: 'radiogroup',
...boxProps,
className,
children: (
<Set orientation={orientation} overrides={overrides} spacing={spacing}>
{options.map((option, i) => (
<Radio
key={i}
{...option}
checked={typeof value === 'undefined' ? undefined : option.value === value}
defaultChecked={typeof defaultValue === 'undefined' ? undefined : option.value === defaultValue}
name={name}
onChange={onChange}
overrides={overrides}
state={state || option.state}
disabled={disabled || option.disabled}
/>
))}
</Set>
)
};
},
{ defaultProps: { orientation: 'vertical', spacing: 'minor-2' }, themeKey: 'RadioGroup' }
);
export const RadioGroup = createComponent<RadioGroupProps>(
props => {
const textProps = useProps(props);
return createElement({ children: props.children, component: ReakitBox, use: props.use, htmlProps: textProps });
},
{
attach: {
useProps
},
themeKey: 'RadioGroup'
}
);
////////////////////////////////////////////////////////////////
export type LocalRadioGroupFieldProps = {
/** Additional props for the RadioGroup component */
radioGroupProps?: RadioGroupProps;
};
export type RadioGroupFieldProps = BoxProps & FieldWrapperProps & RadioGroupProps & LocalRadioGroupFieldProps;
const useRadioGroupFieldProps = createHook<RadioGroupFieldProps>(
(props, { themeKey, themeKeyOverride }) => {
const {
defaultChecked,
description,
disabled,
hint,
orientation,
isOptional,
isRequired,
label,
name,
options,
onChange,
overrides,
radioGroupProps,
state,
tooltip,
tooltipTriggerComponent,
value,
validationText,
...restProps
} = props;
const boxProps = Box.useProps({ ...restProps, overrides });
const className = useClassName({
style: styles.RadioGroupField,
styleProps: props,
themeKey,
themeKeyOverride,
prevClassName: boxProps.className
});
return {
...boxProps,
className,
children: (
<FieldWrapper
description={description}
hint={hint}
isOptional={isOptional}
isRequired={isRequired}
label={label}
labelType="legend"
overrides={overrides}
state={state}
tooltip={tooltip}
tooltipTriggerComponent={tooltipTriggerComponent}
validationText={validationText}
>
{({ elementProps }) => (
<RadioGroup
defaultChecked={defaultChecked}
disabled={disabled}
orientation={orientation}
name={name}
options={options}
onChange={onChange}
overrides={overrides}
state={state}
value={value}
{...elementProps}
{...radioGroupProps}
/>
)}
</FieldWrapper>
)
};
},
{ themeKey: 'RadioGroupField' }
);
export const RadioGroupField = createComponent<RadioGroupFieldProps>(
props => {
const radioGroupFieldProps = useRadioGroupFieldProps(props);
return createElement({
children: props.children,
component: ReakitBox,
use: props.use,
htmlProps: radioGroupFieldProps
});
},
{
attach: {
useProps
},
defaultProps: {
use: 'fieldset'
},
themeKey: 'RadioGroupField'
}
);
|