fa5a190416
CI Pipeline / test (20) (pull_request) Successful in 2m30s
CI Pipeline / test (18) (pull_request) Successful in 3m51s
CI Pipeline / e2e (firefox) (pull_request) Successful in 3m22s
CI Pipeline / e2e (webkit) (pull_request) Successful in 3m45s
CI Pipeline / e2e (chromium) (pull_request) Successful in 11m49s
CI Pipeline / visual-regression (pull_request) Successful in 6m48s
CI Pipeline / storybook (pull_request) Successful in 1m35s
CI Pipeline / lint (pull_request) Successful in 1m12s
CI Pipeline / build (pull_request) Successful in 1m54s
CI Pipeline / performance (pull_request) Successful in 4m6s
153 lines
3.7 KiB
JavaScript
153 lines
3.7 KiB
JavaScript
import React from "react";
|
|
import Checkbox from "../app/components/Checkbox";
|
|
import {
|
|
DefaultInteraction,
|
|
CheckedInteraction,
|
|
StandardInteraction,
|
|
InverseInteraction,
|
|
KeyboardInteraction,
|
|
AccessibilityInteraction,
|
|
FormIntegration,
|
|
} from "../tests/storybook/Checkbox.interactions.test";
|
|
|
|
export default {
|
|
title: "Forms/Checkbox",
|
|
component: Checkbox,
|
|
parameters: {
|
|
layout: "centered",
|
|
backgrounds: {
|
|
default: "dark",
|
|
values: [
|
|
{ name: "light", value: "#ffffff" },
|
|
{ name: "dark", value: "#000000" },
|
|
],
|
|
},
|
|
},
|
|
argTypes: {
|
|
checked: {
|
|
control: "boolean",
|
|
description: "Whether the checkbox is checked",
|
|
},
|
|
mode: {
|
|
control: "select",
|
|
options: ["standard", "inverse"],
|
|
description: "Visual mode of the checkbox",
|
|
},
|
|
state: {
|
|
control: "select",
|
|
options: ["default", "hover", "focus"],
|
|
description: "Interaction state for static display",
|
|
},
|
|
disabled: {
|
|
control: "boolean",
|
|
description: "Whether the checkbox is disabled",
|
|
},
|
|
label: {
|
|
control: "text",
|
|
description: "Label text for the checkbox",
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Default = {
|
|
args: {
|
|
checked: false,
|
|
mode: "standard",
|
|
state: "default",
|
|
disabled: false,
|
|
label: "Default checkbox",
|
|
},
|
|
play: DefaultInteraction.play,
|
|
render: (args) => {
|
|
const [checked, setChecked] = React.useState(args.checked);
|
|
return (
|
|
<Checkbox
|
|
{...args}
|
|
checked={checked}
|
|
onChange={({ checked: newChecked }) => setChecked(newChecked)}
|
|
/>
|
|
);
|
|
},
|
|
};
|
|
|
|
export const Checked = {
|
|
args: {
|
|
checked: true,
|
|
mode: "standard",
|
|
state: "default",
|
|
disabled: false,
|
|
label: "Checked checkbox",
|
|
},
|
|
play: CheckedInteraction.play,
|
|
render: (args) => {
|
|
const [checked, setChecked] = React.useState(args.checked);
|
|
return (
|
|
<Checkbox
|
|
{...args}
|
|
checked={checked}
|
|
onChange={({ checked: newChecked }) => setChecked(newChecked)}
|
|
/>
|
|
);
|
|
},
|
|
};
|
|
|
|
export const Standard = {
|
|
render: () => {
|
|
const [unchecked, setUnchecked] = React.useState(false);
|
|
const [checked, setChecked] = React.useState(true);
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="space-y-2">
|
|
<h3 className="text-white font-medium">Standard Mode</h3>
|
|
<div className="flex flex-col gap-2">
|
|
<Checkbox
|
|
label="Unchecked"
|
|
checked={unchecked}
|
|
mode="standard"
|
|
onChange={({ checked: newChecked }) => setUnchecked(newChecked)}
|
|
/>
|
|
<Checkbox
|
|
label="Checked"
|
|
checked={checked}
|
|
mode="standard"
|
|
onChange={({ checked: newChecked }) => setChecked(newChecked)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
},
|
|
play: StandardInteraction.play,
|
|
};
|
|
|
|
export const Inverse = {
|
|
render: () => {
|
|
const [unchecked, setUnchecked] = React.useState(false);
|
|
const [checked, setChecked] = React.useState(true);
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="space-y-2">
|
|
<h3 className="text-white font-medium">Inverse Mode</h3>
|
|
<div className="flex flex-col gap-2">
|
|
<Checkbox
|
|
label="Unchecked"
|
|
checked={unchecked}
|
|
mode="inverse"
|
|
onChange={({ checked: newChecked }) => setUnchecked(newChecked)}
|
|
/>
|
|
<Checkbox
|
|
label="Checked"
|
|
checked={checked}
|
|
mode="inverse"
|
|
onChange={({ checked: newChecked }) => setChecked(newChecked)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
},
|
|
play: InverseInteraction.play,
|
|
};
|