From a6ff5eee45215effb3344cb5d631a27a7c0369aa Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 22 Sep 2023 19:34:01 +0200 Subject: refactor(components): rewrite form components --- src/components/atoms/forms/fields/radio/index.ts | 1 + .../atoms/forms/fields/radio/radio.test.tsx | 28 ++++++++++++++++++++++ src/components/atoms/forms/fields/radio/radio.tsx | 13 ++++++++++ 3 files changed, 42 insertions(+) create mode 100644 src/components/atoms/forms/fields/radio/index.ts create mode 100644 src/components/atoms/forms/fields/radio/radio.test.tsx create mode 100644 src/components/atoms/forms/fields/radio/radio.tsx (limited to 'src/components/atoms/forms/fields/radio') diff --git a/src/components/atoms/forms/fields/radio/index.ts b/src/components/atoms/forms/fields/radio/index.ts new file mode 100644 index 0000000..1140e08 --- /dev/null +++ b/src/components/atoms/forms/fields/radio/index.ts @@ -0,0 +1 @@ +export * from './radio'; diff --git a/src/components/atoms/forms/fields/radio/radio.test.tsx b/src/components/atoms/forms/fields/radio/radio.test.tsx new file mode 100644 index 0000000..42df991 --- /dev/null +++ b/src/components/atoms/forms/fields/radio/radio.test.tsx @@ -0,0 +1,28 @@ +import { render, screen } from '../../../../../../tests/utils'; +import { Radio } from './radio'; + +const doNothing = () => { + // Do nothing +}; + +describe('Radio', () => { + it('renders an unchecked radio', () => { + render( + + ); + expect(screen.getByRole('radio')).not.toBeChecked(); + }); + + it('renders a checked radio', () => { + render( + + ); + expect(screen.getByRole('radio')).toBeChecked(); + }); +}); diff --git a/src/components/atoms/forms/fields/radio/radio.tsx b/src/components/atoms/forms/fields/radio/radio.tsx new file mode 100644 index 0000000..6430b4a --- /dev/null +++ b/src/components/atoms/forms/fields/radio/radio.tsx @@ -0,0 +1,13 @@ +import { FC } from 'react'; +import { BooleanField, BooleanFieldProps } from '../boolean-field'; + +export type RadioProps = Omit; + +/** + * Radio component + * + * Render a radio input type. + */ +export const Radio: FC = (props) => ( + +); -- cgit v1.2.3