CSA Member Feedback Form

This CSA (Community Supported Agriculture) member feedback form helps farms collect valuable input from subscribers about their weekly or bi-weekly farm boxes. The form captures ratings on produce freshness, variety, quantity, and value, along with preferences for future boxes. Use this feedback to improve box curation, adjust crop planning, and strengthen member retention.

Specialized

Try the Form

Your feedback helps us grow better food for your table.
This Week's Box
 
Overall Satisfaction
0/5
Produce Quality
Not in box Poor Fair Good Very Good Excellent
Leafy Greens
Lettuce, spinach, kale, etc.
Root Vegetables
Carrots, beets, potatoes, etc.
Fruits
Tomatoes, berries, melons, etc.
Herbs
Basil, cilantro, parsley, etc.
Other Items
Squash, peppers, etc.
0/5
0/5
Quantity & Value
 
Strongly Disagree
Strongly Agree
Favorites & Preferences
Recipes & Information
 
Additional Feedback
Feedback Summary
📝 FARM BOX FEEDBACK ═════════════════════════ Overall: ☆☆☆☆☆ (0/5)
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
export function csaMemberFeedback(form: FormTs) {
// CSA Member Feedback - Farm box subscription survey
// Demonstrates: StarRating, MatrixQuestion, SuggestionChips, Integer, Slider, Dropdown, EmojiRating, conditional sections
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Farm Box Feedback',
computedValue: () => 'Your feedback helps us grow better food for your table.',
customStyles: {
backgroundColor: '#15803d',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Box Information
// ============================================
const boxInfoSection = form.addSubform('boxInfoSection', {
title: 'This Week\'s Box',
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #bbf7d0' }
});
 
boxInfoSection.addRow(row => {
row.addDatepicker('boxDate', {
label: 'Box pickup/delivery date',
maxDate: () => new Date().toISOString(),
isRequired: true
}, '1fr');
row.addDropdown('boxSize', {
label: 'Your share size',
options: [
{ id: 'small', name: 'Small share' },
{ id: 'medium', name: 'Medium share' },
{ id: 'large', name: 'Large/Family share' },
{ id: 'half', name: 'Half share (bi-weekly)' }
],
placeholder: 'Select share size'
}, '1fr');
});
 
boxInfoSection.addRow(row => {
row.addDropdown('pickupMethod', {
label: 'How did you receive your box?',
options: [
{ id: 'farm-pickup', name: 'Farm pickup' },
{ id: 'market-pickup', name: 'Farmers market pickup' },
{ id: 'delivery-site', name: 'Delivery site pickup' },
{ id: 'home-delivery', name: 'Home delivery' }
],
placeholder: 'Select pickup method'
});
});
 
// ============================================
// SECTION 2: Overall Box Rating
// ============================================
const overallSection = form.addSubform('overallSection', {
title: 'Overall Satisfaction',
customStyles: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating !== null && rating !== undefined) {
if (rating >= 4) return { backgroundColor: '#dcfce7', padding: '16px', borderRadius: '8px', borderLeft: '4px solid #15803d' };
if (rating >= 3) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px', borderLeft: '4px solid #f59e0b' };
return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px', borderLeft: '4px solid #ef4444' };
}
return { padding: '16px', borderRadius: '8px', border: '1px dashed #86efac' };
}
});
 
overallSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'How would you rate this week\'s box overall?',
maxStars: 5,
size: 'xl',
alignment: 'center',
filledColor: '#15803d',
showConfettiOnMax: true
});
});
 
overallSection.addRow(row => {
row.addEmojiRating('boxMood', {
label: 'How did you feel when you opened your box?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Produce Quality Matrix
// ============================================
const qualitySection = form.addSubform('qualitySection', {
title: 'Produce Quality',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #bbf7d0' }
});
 
qualitySection.addRow(row => {
row.addMatrixQuestion('produceQuality', {
label: 'Rate the quality of produce categories in your box:',
rows: [
{ id: 'leafy', label: 'Leafy Greens', description: 'Lettuce, spinach, kale, etc.', isRequired: false },
{ id: 'root', label: 'Root Vegetables', description: 'Carrots, beets, potatoes, etc.', isRequired: false },
{ id: 'fruit', label: 'Fruits', description: 'Tomatoes, berries, melons, etc.', isRequired: false },
{ id: 'herbs', label: 'Herbs', description: 'Basil, cilantro, parsley, etc.', isRequired: false },
{ id: 'other', label: 'Other Items', description: 'Squash, peppers, etc.', isRequired: false }
],
columns: [
{ id: 'na', label: 'Not in box' },
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
striped: true,
fullWidth: true
});
});
 
qualitySection.addRow(row => {
row.addStarRating('freshnessRating', {
label: 'Freshness of produce',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#15803d'
}, '1fr');
row.addStarRating('varietyRating', {
label: 'Variety in this box',
maxStars: 5,
size: 'lg',
alignment: 'center',
filledColor: '#15803d'
}, '1fr');
});
 
// ============================================
// SECTION 4: Quantity & Value
// ============================================
const quantitySection = form.addSubform('quantitySection', {
title: 'Quantity & Value',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
quantitySection.addRow(row => {
row.addRadioButton('quantityFeeling', {
label: 'How do you feel about the amount of produce?',
options: [
{ id: 'too-little', name: 'Not enough - I wanted more' },
{ id: 'just-right', name: 'Just right - perfect amount' },
{ id: 'too-much', name: 'Too much - some went to waste' }
],
orientation: 'vertical'
});
});
 
// Conditional: Too much waste
const wasteSection = quantitySection.addSubform('wasteSection', {
isVisible: () => quantitySection.radioButton('quantityFeeling')?.value() === 'too-much',
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px', marginTop: '12px' }
});
 
wasteSection.addRow(row => {
row.addSlider('wastePercent', {
label: 'Approximately what percent went unused?',
min: 0,
max: 50,
step: 5,
showValue: true,
unit: '%',
defaultValue: 10
});
});
 
wasteSection.addRow(row => {
row.addSuggestionChips('wasteReasons', {
label: 'Why did produce go unused?',
suggestions: [
{ id: 'unfamiliar', name: 'Unfamiliar item' },
{ id: 'no-time', name: 'No time to cook' },
{ id: 'too-much', name: 'Quantity too large' },
{ id: 'spoiled', name: 'Spoiled too quickly' },
{ id: 'dislike', name: 'Don\'t like the item' },
{ id: 'forgot', name: 'Forgot about it' }
],
alignment: 'center'
});
});
 
quantitySection.addRow(row => {
row.addRatingScale('valueRating', {
preset: 'likert-5',
label: 'This box was good value for the price',
lowLabel: 'Strongly Disagree',
highLabel: 'Strongly Agree',
alignment: 'center'
});
});
 
// ============================================
// SECTION 5: Favorites & Requests
// ============================================
const preferencesSection = form.addSubform('preferencesSection', {
title: 'Favorites & Preferences',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null,
customStyles: { backgroundColor: '#dcfce7', padding: '16px', borderRadius: '8px' }
});
 
preferencesSection.addRow(row => {
row.addSuggestionChips('favorites', {
label: 'What were your favorite items this week? (select up to 3)',
suggestions: [
{ id: 'tomatoes', name: 'Tomatoes' },
{ id: 'greens', name: 'Salad greens' },
{ id: 'carrots', name: 'Carrots' },
{ id: 'peppers', name: 'Peppers' },
{ id: 'squash', name: 'Squash' },
{ id: 'herbs', name: 'Fresh herbs' },
{ id: 'berries', name: 'Berries' },
{ id: 'onions', name: 'Onions/Garlic' },
{ id: 'potatoes', name: 'Potatoes' },
{ id: 'beans', name: 'Green beans' }
],
max: 3,
alignment: 'center'
});
});
 
preferencesSection.addRow(row => {
row.addSuggestionChips('wantMore', {
label: 'What would you like to see more of?',
suggestions: [
{ id: 'tomatoes', name: 'Tomatoes' },
{ id: 'greens', name: 'Salad greens' },
{ id: 'fruit', name: 'Fresh fruit' },
{ id: 'herbs', name: 'Cooking herbs' },
{ id: 'roots', name: 'Root vegetables' },
{ id: 'specialty', name: 'Specialty items' },
{ id: 'cooking', name: 'Cooking vegetables' },
{ id: 'snacking', name: 'Snacking items' }
],
max: 3,
alignment: 'center'
});
});
 
preferencesSection.addRow(row => {
row.addTextarea('specificRequests', {
label: 'Any specific items you\'d love to see in future boxes?',
placeholder: 'e.g., more heirloom tomatoes, fresh basil, cherry tomatoes...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 6: Recipe & Storage Info
// ============================================
const supportSection = form.addSubform('supportSection', {
title: 'Recipes & Information',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
supportSection.addRow(row => {
row.addRadioButton('usedRecipes', {
label: 'Did you use any of the recipe suggestions we provided?',
options: [
{ id: 'yes', name: 'Yes, they were helpful' },
{ id: 'some', name: 'I read them but cooked my own way' },
{ id: 'no', name: 'No, I didn\'t look at them' },
{ id: 'na', name: 'I didn\'t receive recipes' }
],
orientation: 'vertical'
});
});
 
supportSection.addRow(row => {
row.addThumbRating('wantRecipes', {
label: 'Would you like more recipe ideas?',
showLabels: true,
upLabel: 'Yes please!',
downLabel: 'No thanks',
alignment: 'center',
size: 'lg'
}, '1fr');
row.addThumbRating('wantStorage', {
label: 'Would storage tips be helpful?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No need',
alignment: 'center',
size: 'lg'
}, '1fr');
});
 
// ============================================
// SECTION 7: Additional Comments
// ============================================
const commentsSection = form.addSubform('commentsSection', {
title: 'Additional Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
commentsSection.addSpacer();
 
commentsSection.addRow(row => {
row.addTextarea('comments', {
label: () => {
const rating = overallSection.starRating('overallRating')?.value();
if (rating !== null && rating !== undefined && rating >= 4) {
return 'What made this week\'s box great?';
}
return 'How can we improve your farm box experience?';
},
placeholder: 'Share your thoughts with us...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summary', {
computedValue: () => {
const overall = overallSection.starRating('overallRating')?.value();
const mood = overallSection.emojiRating('boxMood')?.value();
const freshness = qualitySection.starRating('freshnessRating')?.value();
const variety = qualitySection.starRating('varietyRating')?.value();
const quantity = quantitySection.radioButton('quantityFeeling')?.value();
const favorites = preferencesSection.suggestionChips('favorites')?.value() || [];
const wantMore = preferencesSection.suggestionChips('wantMore')?.value() || [];
 
if (overall === null || overall === undefined) return '';
 
const moodLabels: Record<string, string> = {
'very-bad': 'Disappointed',
'bad': 'Underwhelmed',
'neutral': 'Neutral',
'good': 'Happy',
'excellent': 'Delighted'
};
 
const quantityLabels: Record<string, string> = {
'too-little': 'Wanted more',
'just-right': 'Just right',
'too-much': 'Too much'
};
 
let emoji = '';
if (overall >= 4) emoji = '🥬';
else if (overall >= 3) emoji = '🌱';
else emoji = '📝';
 
let summary = `${emoji} FARM BOX FEEDBACK\n`;
summary += `${'═'.repeat(25)}\n\n`;
summary += `Overall: ${'★'.repeat(overall)}${'☆'.repeat(5 - overall)} (${overall}/5)\n`;
 
if (mood) {
summary += `Feeling: ${moodLabels[mood] || mood}\n`;
}
 
if (freshness) {
summary += `\nFreshness: ${'★'.repeat(freshness)}${'☆'.repeat(5 - freshness)}\n`;
}
if (variety) {
summary += `Variety: ${'★'.repeat(variety)}${'☆'.repeat(5 - variety)}\n`;
}
 
if (quantity) {
summary += `\nQuantity: ${quantityLabels[quantity]}`;
}
 
if (favorites.length > 0) {
summary += `\n\n🌟 Favorites: ${favorites.length} items`;
}
 
if (wantMore.length > 0) {
summary += `\n📋 Want more: ${wantMore.length} requests`;
}
 
return summary;
},
customStyles: () => {
const overall = overallSection.starRating('overallRating')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
if (overall !== null && overall !== undefined) {
if (overall >= 4) {
return { ...baseStyles, backgroundColor: '#dcfce7', borderLeft: '4px solid #15803d' };
} else if (overall >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
}
return { ...baseStyles, backgroundColor: '#f8fafc', borderLeft: '4px solid #15803d' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => overallSection.starRating('overallRating')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your input helps us grow the best produce for your table. We read every response and use your feedback to improve our farm shares. Happy cooking!'
});
}
 

Frequently Asked Questions

How often should I send feedback surveys to CSA members?

Consider sending a quick rating after each box during the first few weeks, then shift to bi-weekly or monthly surveys. A comprehensive mid-season and end-of-season survey helps with renewal and crop planning.

What should I do if members consistently rate certain produce poorly?

Use the feedback to identify issues. Is it quality, unfamiliarity, or preference? Consider including recipe cards for less common items, improving storage instructions, or adjusting the mix in future boxes.

How can I use this feedback for crop planning?

Track which items receive highest and lowest ratings across the season. Note member requests for specific items. Use aggregate data to inform planting decisions, adjust quantities, and plan for member favorites.

Can I customize this for different CSA models?

Yes! Adjust the form for weekly boxes, bi-weekly shares, market-style pickup where members choose items, or add-on options like eggs, flowers, or meat shares.

How do I encourage members to provide feedback regularly?

Keep surveys short, send them at consistent times, respond to feedback visibly (e.g., 'You asked, we planted!'), and consider small incentives like entry into a drawing for farm store credit.