-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathformMachine.ts
More file actions
327 lines (299 loc) · 7.66 KB
/
formMachine.ts
File metadata and controls
327 lines (299 loc) · 7.66 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/**
* @file Multi-Step Form State Machine Example
* @description Demonstrates sequential flow, validation, and state accumulation
*
* This example shows a wizard-style form with:
* - Multiple steps with validation
* - Forward and backward navigation
* - Data accumulation across steps
* - Validation errors
* - Final submission
*/
import { MachineBase } from '../src/index';
import { transitionTo, guarded, describe, action } from '../src/primitives';
// =============================================================================
// CONTEXT TYPES
// =============================================================================
interface Step1Context {
step: 'personal';
name: string;
email: string;
}
interface Step2Context {
step: 'address';
name: string;
email: string;
street: string;
city: string;
zipCode: string;
}
interface Step3Context {
step: 'preferences';
name: string;
email: string;
street: string;
city: string;
zipCode: string;
newsletter: boolean;
notifications: boolean;
}
interface CompleteContext {
step: 'complete';
name: string;
email: string;
street: string;
city: string;
zipCode: string;
newsletter: boolean;
notifications: boolean;
submittedAt: number;
confirmationId: string;
}
interface ValidationErrorContext {
step: 'validationError';
errors: string[];
currentStep: 'personal' | 'address' | 'preferences';
partialData: Partial<Step3Context>;
}
// =============================================================================
// STATE MACHINE CLASSES
// =============================================================================
/**
* Step 1: Personal Information
*/
export class PersonalInfoMachine extends MachineBase<Step1Context> {
constructor(context: Step1Context = { step: 'personal', name: '', email: '' }) {
super(context);
}
/**
* Proceed to address step
*/
next = describe(
'Proceed to address information step',
guarded(
{
name: 'validatePersonalInfo',
description: 'Name and email must be valid',
},
transitionTo(AddressMachine, (name: string, email: string) => {
return new AddressMachine({
step: 'address',
name,
email,
street: '',
city: '',
zipCode: '',
});
})
)
);
/**
* Validation failed
*/
validationFailed = describe(
'Handle validation errors in personal info',
transitionTo(ValidationErrorMachine, (errors: string[]) => {
return new ValidationErrorMachine({
step: 'validationError',
errors,
currentStep: 'personal',
partialData: { step: 'personal', ...this.context },
});
})
);
}
/**
* Step 2: Address Information
*/
export class AddressMachine extends MachineBase<Step2Context> {
constructor(context: Step2Context) {
super(context);
}
/**
* Proceed to preferences step
*/
next = describe(
'Proceed to preferences step',
guarded(
{
name: 'validateAddress',
description: 'Address fields must be filled',
},
transitionTo(PreferencesMachine, (street: string, city: string, zipCode: string) => {
return new PreferencesMachine({
step: 'preferences',
...this.context,
street,
city,
zipCode,
newsletter: false,
notifications: true,
});
})
)
);
/**
* Go back to personal info
*/
back = describe(
'Return to personal information step',
transitionTo(PersonalInfoMachine, () => {
return new PersonalInfoMachine({
step: 'personal',
name: this.context.name,
email: this.context.email,
});
})
);
/**
* Validation failed
*/
validationFailed = describe(
'Handle validation errors in address',
transitionTo(ValidationErrorMachine, (errors: string[]) => {
return new ValidationErrorMachine({
step: 'validationError',
errors,
currentStep: 'address',
partialData: { ...this.context },
});
})
);
}
/**
* Step 3: Preferences
*/
export class PreferencesMachine extends MachineBase<Step3Context> {
constructor(context: Step3Context) {
super(context);
}
/**
* Submit the form
*/
submit = describe(
'Submit the complete form',
action(
{ name: 'submitForm', description: 'Send form data to server' },
transitionTo(CompleteMachine, (newsletter: boolean, notifications: boolean) => {
const confirmationId = `CONF-${Date.now()}-${Math.random().toString(36).substr(2, 9).toUpperCase()}`;
return new CompleteMachine({
step: 'complete',
...this.context,
newsletter,
notifications,
submittedAt: Date.now(),
confirmationId,
});
})
)
);
/**
* Go back to address
*/
back = describe(
'Return to address step',
transitionTo(AddressMachine, () => {
return new AddressMachine({
step: 'address',
name: this.context.name,
email: this.context.email,
street: this.context.street,
city: this.context.city,
zipCode: this.context.zipCode,
});
})
);
}
/**
* Complete state - form successfully submitted
*/
export class CompleteMachine extends MachineBase<CompleteContext> {
constructor(context: CompleteContext) {
super(context);
}
/**
* Start over with a new form
*/
startOver = describe(
'Reset and start a new form',
transitionTo(PersonalInfoMachine, () => {
return new PersonalInfoMachine({
step: 'personal',
name: '',
email: '',
});
})
);
/**
* Download confirmation
*/
downloadConfirmation = describe(
'Download form confirmation PDF',
action(
{ name: 'downloadPDF', description: 'Generate and download confirmation PDF' },
transitionTo(CompleteMachine, () => {
// Return same state, action is fire-and-forget
return new CompleteMachine(this.context);
})
)
);
}
/**
* Validation Error state
*/
export class ValidationErrorMachine extends MachineBase<ValidationErrorContext> {
constructor(context: ValidationErrorContext) {
super(context);
}
/**
* Return to the step that had validation errors
*/
retry = describe(
'Return to the form step to fix validation errors',
transitionTo(PersonalInfoMachine, () => {
// Simplified: always returns to PersonalInfo
// In real app, would route based on currentStep
const partial = this.context.partialData;
switch (this.context.currentStep) {
case 'personal':
return new PersonalInfoMachine({
step: 'personal',
name: (partial as any).name || '',
email: (partial as any).email || '',
}) as any;
case 'address':
return new AddressMachine(partial as any) as any;
case 'preferences':
return new PreferencesMachine(partial as any) as any;
default:
return new PersonalInfoMachine();
}
})
);
/**
* Cancel and start over
*/
cancel = describe(
'Cancel form and start over',
transitionTo(PersonalInfoMachine, () => {
return new PersonalInfoMachine({
step: 'personal',
name: '',
email: '',
});
})
);
}
// =============================================================================
// FACTORY FUNCTION
// =============================================================================
/**
* Create a new form machine starting at personal info step
*/
export function createFormMachine(): PersonalInfoMachine {
return new PersonalInfoMachine({
step: 'personal',
name: '',
email: '',
});
}