-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
91 lines (83 loc) · 2.08 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import { FormEvent, useState } from 'react';
import { AccountForm } from './AccountForm';
import { AddressForm } from './AddressForm';
import { useMultistepForm } from './useMultistepForm';
import { UserForm } from './UserForm';
type FormData = {
firstName: string;
lastName: string;
age: string;
street: string;
city: string;
state: string;
zip: string;
email: string;
password: string;
};
const INITIAL_DATA: FormData = {
firstName: '',
lastName: '',
age: '',
street: '',
city: '',
state: '',
zip: '',
email: '',
password: '',
};
function App() {
const [data, setData] = useState(INITIAL_DATA);
function updateFields(fields: Partial<FormData>) {
setData((prev) => {
return { ...prev, ...fields };
});
}
const { steps, currentStepIndex, step, isFirstStep, isLastStep, back, next } =
useMultistepForm([
<UserForm {...data} updateFields={updateFields} />,
<AddressForm {...data} updateFields={updateFields} />,
<AccountForm {...data} updateFields={updateFields} />,
]);
function onSubmit(e: FormEvent) {
e.preventDefault();
if (!isLastStep) return next();
alert('Successful Account Creation');
}
return (
<div
style={{
position: 'relative',
background: 'white',
border: '1px solid black',
padding: '2rem',
margin: '1rem',
borderRadius: '.5rem',
fontFamily: 'Arial',
maxWidth: 'max-content',
}}
>
<form onSubmit={onSubmit}>
<div style={{ position: 'absolute', top: '.5rem', right: '.5rem' }}>
{currentStepIndex + 1} / {steps.length}
</div>
{step}
<div
style={{
margin: '1rem',
display: 'flex',
gap: '.5rem',
justifyContent: 'flex-end',
}}
>
{!isFirstStep && (
<button type="button" onClick={back}>
Back
</button>
)}
<button type="submit">{isLastStep ? 'Finish' : 'Next'}</button>
</div>
</form>
</div>
);
}
export default App;