Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better addon gif, new story #12

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified assets/addon.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 6 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@
"url": "git+https://github.com/igrlk/storybook-addon-test-codegen.git"
},
"packageManager": "[email protected]",
"keywords": [
"storybook-addons",
"interactions",
"test",
"codegen"
],
"keywords": ["storybook-addons", "interactions", "test", "codegen"],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -34,12 +29,7 @@
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"files": ["dist/**/*", "README.md", "*.js", "*.d.ts"],
"scripts": {
"build": "tsup",
"build:watch": "concurrently \"npm run build -- --watch\" \"npm run tailwind:watch\"",
Expand Down Expand Up @@ -108,15 +98,9 @@
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.tsx"
],
"previewEntries": [
"src/preview.ts"
]
"exportEntries": ["src/index.ts"],
"managerEntries": ["src/manager.tsx"],
"previewEntries": ["src/preview.ts"]
},
"storybook": {
"displayName": "Test Codegen",
Expand All @@ -134,8 +118,6 @@
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"lint-staged": {
"*": [
"pnpm check"
]
"*": ["pnpm check"]
}
}
150 changes: 150 additions & 0 deletions src/stories/MultiStepForm.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
'use client';
import type { Meta, StoryObj } from '@storybook/react';
import type React from 'react';
import { useState } from 'react';

function MultiStepForm() {
const [step, setStep] = useState(1);
const [formData, setFormData] = useState({
name: '',
email: '',
phone: '',
address: '',
});

const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const { name, value } = e.target;
setFormData((prevData) => ({
...prevData,
[name]: value,
}));
};

const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
setStep(step + 1);
};

return (
<div className="min-h-screen bg-gray-100 flex items-center justify-center">
<div className="bg-white p-8 rounded-lg shadow-md w-full max-w-md">
<h2 className="text-2xl font-bold mb-6 text-center">
{step === 1
? 'Personal Information'
: step === 2
? 'Contact Details'
: 'Thank you!'}
</h2>
<form onSubmit={handleSubmit}>
{step === 1 ? (
<>
<div className="mb-4">
<label
htmlFor="name"
className="block text-gray-700 text-sm font-bold mb-2"
>
Name
</label>
<input
type="text"
id="name"
name="name"
value={formData.name}
onChange={handleChange}
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
required
/>
</div>
<div className="mb-6">
<label
htmlFor="email"
className="block text-gray-700 text-sm font-bold mb-2"
>
Email
</label>
<input
type="email"
id="email"
name="email"
value={formData.email}
onChange={handleChange}
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
required
/>
</div>
</>
) : step === 2 ? (
<>
<div className="mb-4">
<label
htmlFor="phone"
className="block text-gray-700 text-sm font-bold mb-2"
>
Phone
</label>
<input
type="tel"
id="phone"
name="phone"
value={formData.phone}
onChange={handleChange}
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
required
/>
</div>
<div className="mb-6">
<label
htmlFor="address"
className="block text-gray-700 text-sm font-bold mb-2"
>
Address
</label>
<input
type="text"
id="address"
name="address"
value={formData.address}
onChange={handleChange}
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
required
/>
</div>
</>
) : (
<div className="text-center">
<p className="text-gray-600 mb-5">
Your form has been submitted successfully.
</p>

<div className="text-gray-600">The data you submitted is:</div>
{(['name', 'email', 'phone', 'address'] as const).map((key) => (
<div key={key} className="text-gray-600">
<span className="font-bold">{key}</span>: {formData[key]}
</div>
))}
</div>
)}
{step <= 2 && (
<div className="flex items-center justify-between">
<button
type="submit"
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline"
>
Submit
</button>
</div>
)}
</form>
</div>
</div>
);
}

const meta: Meta<typeof MultiStepForm> = {
component: MultiStepForm,
};

export default meta;
type Story = StoryObj<typeof MultiStepForm>;

export const Default: Story = {};