aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/checkbox.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-30 19:27:21 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-31 23:15:07 +0200
commit782cc0a31a866519fb7c3e18a523b347d3e40238 (patch)
tree34fb984e8dc356cd013e5e0d6f203a8c8907b9fe /src/components/atoms/forms/checkbox.stories.tsx
parent519b1439dce3f25dd38cd0d0f82fecd10f28dcc8 (diff)
chore: replace Checkbox component with a BooleanField component
Checkbox and radio buttons are working the same way so I decided to group them in a same component.
Diffstat (limited to 'src/components/atoms/forms/checkbox.stories.tsx')
-rw-r--r--src/components/atoms/forms/checkbox.stories.tsx102
1 files changed, 0 insertions, 102 deletions
diff --git a/src/components/atoms/forms/checkbox.stories.tsx b/src/components/atoms/forms/checkbox.stories.tsx
deleted file mode 100644
index 588fdcc..0000000
--- a/src/components/atoms/forms/checkbox.stories.tsx
+++ /dev/null
@@ -1,102 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { useState } from 'react';
-import CheckboxComponent from './checkbox';
-
-/**
- * Checkbox - Storybook Meta
- */
-export default {
- title: 'Atoms/Forms',
- component: CheckboxComponent,
- argTypes: {
- 'aria-labelledby': {
- control: {
- type: 'text',
- },
- description: 'One or more ids that refers to the checkbox name.',
- table: {
- category: 'Accessibility',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- className: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the checkbox.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- id: {
- control: {
- type: 'text',
- },
- description: 'The checkbox id.',
- type: {
- name: 'string',
- required: true,
- },
- },
- name: {
- control: {
- type: 'text',
- },
- description: 'The checkbox name.',
- type: {
- name: 'string',
- required: true,
- },
- },
- setValue: {
- control: {
- type: null,
- },
- description: 'A callback function to handle checkbox state.',
- type: {
- name: 'function',
- required: true,
- },
- },
- value: {
- control: {
- type: null,
- },
- description:
- 'The checkbox state: either checked (true) or unchecked (false).',
- type: {
- name: 'boolean',
- required: true,
- },
- },
- },
-} as ComponentMeta<typeof CheckboxComponent>;
-
-const Template: ComponentStory<typeof CheckboxComponent> = ({
- value,
- setValue: _setValue,
- ...args
-}) => {
- const [isChecked, setIsChecked] = useState<boolean>(value);
-
- return (
- <CheckboxComponent value={isChecked} setValue={setIsChecked} {...args} />
- );
-};
-
-/**
- * Checkbox Story
- */
-export const Checkbox = Template.bind({});
-Checkbox.args = {
- id: 'storybook-checkbox',
- name: 'storybook-checkbox',
- value: false,
-};