2023-05-25 15:41:07 +02:00
|
|
|
import { Meta } from "@storybook/react";
|
2023-05-25 15:43:09 +02:00
|
|
|
import React from "react";
|
|
|
|
|
import { Input } from ":/components/Forms/Input";
|
|
|
|
|
import { Checkbox } from ":/components/Forms/Checkbox";
|
|
|
|
|
import { Button } from ":/components/Button";
|
|
|
|
|
import { Select } from ":/components/Forms/Select";
|
|
|
|
|
import { CunninghamProvider } from ":/components/Provider";
|
|
|
|
|
import { Switch } from ":/components/Forms/Switch";
|
|
|
|
|
import { Radio } from ":/components/Forms/Radio";
|
2023-05-25 15:41:07 +02:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
title: "Components/Forms/Examples",
|
|
|
|
|
} as Meta;
|
|
|
|
|
|
|
|
|
|
export const Login = () => {
|
2023-05-25 15:43:09 +02:00
|
|
|
return (
|
|
|
|
|
<form
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "1rem",
|
|
|
|
|
width: "400px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<h1
|
|
|
|
|
className="fs-h3 fw-bold clr-greyscale-900"
|
|
|
|
|
style={{ textAlign: "center" }}
|
|
|
|
|
>
|
|
|
|
|
Please log-in!
|
|
|
|
|
</h1>
|
|
|
|
|
<Input label="Email address" fullWidth={true} />
|
|
|
|
|
<Input
|
|
|
|
|
label="Password"
|
|
|
|
|
type="password"
|
|
|
|
|
text="Forgot your password ?"
|
|
|
|
|
fullWidth={true}
|
|
|
|
|
name="password"
|
|
|
|
|
required={true}
|
|
|
|
|
/>
|
|
|
|
|
<div>
|
|
|
|
|
<Checkbox label="Remember me" />
|
|
|
|
|
</div>
|
|
|
|
|
<Button fullWidth={true}>Log-in</Button>
|
|
|
|
|
</form>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const Application = () => {
|
|
|
|
|
return (
|
|
|
|
|
<CunninghamProvider>
|
|
|
|
|
<form
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "1rem",
|
|
|
|
|
width: "400px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<h1
|
|
|
|
|
className="fs-h3 fw-bold clr-greyscale-900"
|
|
|
|
|
style={{ textAlign: "center" }}
|
|
|
|
|
>
|
|
|
|
|
Application
|
|
|
|
|
</h1>
|
|
|
|
|
<Select
|
|
|
|
|
label="Context"
|
|
|
|
|
options={[
|
|
|
|
|
{
|
|
|
|
|
label: "Ask a document",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Download files",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Ask for help",
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
fullWidth={true}
|
|
|
|
|
/>
|
|
|
|
|
<div style={{ display: "flex", gap: "1rem" }}>
|
|
|
|
|
<Input label="First name" />
|
|
|
|
|
<Input label="Last name" />
|
|
|
|
|
</div>
|
|
|
|
|
<Input
|
|
|
|
|
label="Email address"
|
|
|
|
|
fullWidth={true}
|
|
|
|
|
text="Only @acme.com domain is authorized"
|
|
|
|
|
/>
|
|
|
|
|
<Input label="ZIP" fullWidth={true} />
|
|
|
|
|
<Input label="City" fullWidth={true} />
|
|
|
|
|
<div>
|
|
|
|
|
<Switch label="SMS Notification" fullWidth={true} />
|
|
|
|
|
<Switch label="Subscribe to newsletter" fullWidth={true} />
|
|
|
|
|
</div>
|
|
|
|
|
<Checkbox label="Agree to the terms and services" fullWidth={true} />
|
|
|
|
|
<Button fullWidth={true}>Apply</Button>
|
|
|
|
|
<Button fullWidth={true} color="secondary">
|
|
|
|
|
Need help ?
|
|
|
|
|
</Button>
|
|
|
|
|
</form>
|
|
|
|
|
</CunninghamProvider>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const Sports = () => {
|
|
|
|
|
return (
|
|
|
|
|
<CunninghamProvider>
|
|
|
|
|
<form
|
|
|
|
|
style={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
|
|
|
|
gap: "1rem",
|
|
|
|
|
width: "400px",
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<h1
|
|
|
|
|
className="fs-h3 fw-bold clr-greyscale-900"
|
|
|
|
|
style={{ textAlign: "center" }}
|
|
|
|
|
>
|
|
|
|
|
Register
|
|
|
|
|
</h1>
|
|
|
|
|
<div style={{ display: "flex", gap: "1rem" }}>
|
|
|
|
|
<Input label="First name" />
|
|
|
|
|
<Input label="Last name" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style={{ display: "flex", gap: "0.5rem" }}>
|
|
|
|
|
<Radio name="gender" label="Male" fullWidth={true} />
|
|
|
|
|
<Radio name="gender" label="Female" />
|
|
|
|
|
<Radio name="gender" label="Other" />
|
|
|
|
|
</div>
|
|
|
|
|
<Select
|
|
|
|
|
label="Competition"
|
|
|
|
|
options={[
|
|
|
|
|
{
|
|
|
|
|
label: "Athletics",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Swimming",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "Marathon",
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
fullWidth={true}
|
|
|
|
|
/>
|
|
|
|
|
<Button fullWidth={true}>Apply</Button>
|
|
|
|
|
<Button fullWidth={true} color="secondary">
|
|
|
|
|
Need help ?
|
|
|
|
|
</Button>
|
|
|
|
|
</form>
|
|
|
|
|
</CunninghamProvider>
|
|
|
|
|
);
|
2023-05-25 15:41:07 +02:00
|
|
|
};
|