Campus Facilities Rating Survey

Campus facilities directly impact student satisfaction, safety, and academic success. This comprehensive survey collects feedback on all aspects of campus infrastructure - from classroom conditions to dining halls, libraries to recreational facilities. Use matrix questions to efficiently rate multiple facilities, and conditional logic to dive deeper into problem areas.

Education & Training

Try the Form

Help us create a better campus experience for all students.
Building & Classroom Ratings
Poor Fair Good Very Good Excellent
Classroom conditions*
Temperature control (HVAC)*
Lighting quality
Cleanliness*
Accessibility (ADA compliance)
Technology/AV equipment*
Seating comfort
Power outlets availability
 
 
Campus Safety
0/5
Poor Fair Good Very Good Excellent
Daytime safety*
Nighttime safety*
Outdoor lighting
Security presence
Parking lot safety
Emergency phone accessibility
Campus Services
 
 
Overall Campus Experience
Improvement Priorities
 
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
export function campusFacilitiesSurvey(form: FormTs) {
// Campus Facilities Rating Survey - Multi-page facility assessment
// Demonstrates: Pages (multi-page), MatrixQuestion, StarRating, EmojiRating, Slider, CheckboxList, conditional logic
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Campus Facilities Feedback',
computedValue: () => 'Help us create a better campus experience for all students.',
customStyles: {
background: 'linear-gradient(135deg, #059669 0%, #10b981 100%)',
color: 'white',
padding: '28px',
borderRadius: '16px',
textAlign: 'center',
fontSize: '15px'
}
});
});
 
// ============================================
// MULTI-PAGE WIZARD
// ============================================
const pages = form.addPages('facilityPages', {
heightMode: 'current-page'
});
 
// ============================================
// PAGE 1: General Information
// ============================================
const page1 = pages.addPage('general');
 
const generalSection = page1.addSubform('generalInfo', {
title: 'About Your Campus Usage'
});
 
generalSection.addRow(row => {
row.addRadioButton('studentType', {
label: 'What type of student are you?',
options: [
{ id: 'undergrad', name: 'Undergraduate' },
{ id: 'grad', name: 'Graduate/Professional' },
{ id: 'online', name: 'Primarily Online' },
{ id: 'parttime', name: 'Part-time/Evening' }
],
orientation: 'vertical',
isRequired: true
});
});
 
generalSection.addRow(row => {
row.addSlider('hoursOnCampus', {
label: 'How many hours per week do you spend on campus?',
min: 0,
max: 60,
step: 5,
showValue: true,
unit: ' hours',
defaultValue: 20
});
});
 
generalSection.addRow(row => {
row.addCheckboxList('facilitiesUsed', {
label: 'Which facilities do you regularly use? (Select all that apply)',
options: [
{ id: 'library', name: 'Library' },
{ id: 'dining', name: 'Dining halls/Cafeterias' },
{ id: 'gym', name: 'Gym/Recreation center' },
{ id: 'labs', name: 'Computer labs' },
{ id: 'study', name: 'Study rooms/Lounges' },
{ id: 'health', name: 'Health center' },
{ id: 'parking', name: 'Parking facilities' },
{ id: 'housing', name: 'On-campus housing' }
],
orientation: 'vertical',
isRequired: true
});
});
 
page1.addRow(row => {
row.addButton('nextToPage2', {
label: 'Next: Rate Buildings',
onClick: () => pages.goToPage('buildings')
});
});
 
// ============================================
// PAGE 2: Building Ratings
// ============================================
const page2 = pages.addPage('buildings');
 
const buildingsSection = page2.addSubform('buildingsRating', {
title: 'Building & Classroom Ratings',
customStyles: { backgroundColor: '#f0fdf4', padding: '20px', borderRadius: '12px' }
});
 
buildingsSection.addRow(row => {
row.addMatrixQuestion('buildingRatings', {
label: 'Rate the following aspects of campus buildings:',
rows: [
{ id: 'classrooms', label: 'Classroom conditions', isRequired: true },
{ id: 'temperature', label: 'Temperature control (HVAC)', isRequired: true },
{ id: 'lighting', label: 'Lighting quality', isRequired: false },
{ id: 'cleanliness', label: 'Cleanliness', isRequired: true },
{ id: 'accessibility', label: 'Accessibility (ADA compliance)', isRequired: false },
{ id: 'technology', label: 'Technology/AV equipment', isRequired: true },
{ id: 'seating', label: 'Seating comfort', isRequired: false },
{ id: 'outlets', label: 'Power outlets availability', isRequired: false }
],
columns: [
{ 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
});
});
 
buildingsSection.addSpacer({ height: '16px' });
 
buildingsSection.addRow(row => {
row.addTextarea('buildingIssues', {
label: 'Any specific building issues you\'ve experienced?',
placeholder: 'E.g., broken AC in Smith Hall, projector issues in Room 101...',
rows: 3,
autoExpand: true
});
});
 
page2.addRow(row => {
row.addButton('backToPage1', {
label: 'Back',
onClick: () => pages.goToPage('general')
}, '100px');
row.addEmpty('1fr');
row.addButton('nextToPage3', {
label: 'Next: Safety & Services',
onClick: () => pages.goToPage('safety')
});
});
 
// ============================================
// PAGE 3: Safety & Services
// ============================================
const page3 = pages.addPage('safety');
 
const safetySection = page3.addSubform('safetyRating', {
title: 'Campus Safety',
customStyles: { backgroundColor: '#fef2f2', padding: '20px', borderRadius: '12px' }
});
 
safetySection.addRow(row => {
row.addStarRating('overallSafety', {
label: 'How safe do you feel on campus overall?',
maxStars: 5,
size: 'lg',
showCounter: true,
alignment: 'center'
});
});
 
safetySection.addRow(row => {
row.addMatrixQuestion('safetyAspects', {
label: 'Rate safety aspects:',
rows: [
{ id: 'daytime', label: 'Daytime safety', isRequired: true },
{ id: 'nighttime', label: 'Nighttime safety', isRequired: true },
{ id: 'lighting', label: 'Outdoor lighting', isRequired: false },
{ id: 'security', label: 'Security presence', isRequired: false },
{ id: 'parking', label: 'Parking lot safety', isRequired: false },
{ id: 'emergency', label: 'Emergency phone accessibility', isRequired: false }
],
columns: [
{ 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
});
});
 
const servicesSection = page3.addSubform('servicesRating', {
title: 'Campus Services'
});
 
servicesSection.addRow(row => {
row.addStarRating('diningRating', {
label: 'Dining Services',
maxStars: 5,
size: 'md',
showCounter: true,
isVisible: () => {
const used = generalSection.checkboxList('facilitiesUsed')?.value() || [];
return used.includes('dining');
}
}, '1fr');
row.addStarRating('libraryRating', {
label: 'Library Services',
maxStars: 5,
size: 'md',
showCounter: true,
isVisible: () => {
const used = generalSection.checkboxList('facilitiesUsed')?.value() || [];
return used.includes('library');
}
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addStarRating('gymRating', {
label: 'Recreation/Gym',
maxStars: 5,
size: 'md',
showCounter: true,
isVisible: () => {
const used = generalSection.checkboxList('facilitiesUsed')?.value() || [];
return used.includes('gym');
}
}, '1fr');
row.addStarRating('healthRating', {
label: 'Health Center',
maxStars: 5,
size: 'md',
showCounter: true,
isVisible: () => {
const used = generalSection.checkboxList('facilitiesUsed')?.value() || [];
return used.includes('health');
}
}, '1fr');
});
 
page3.addRow(row => {
row.addButton('backToPage2', {
label: 'Back',
onClick: () => pages.goToPage('buildings')
}, '100px');
row.addEmpty('1fr');
row.addButton('nextToPage4', {
label: 'Next: Overall & Priorities',
onClick: () => pages.goToPage('overall')
});
});
 
// ============================================
// PAGE 4: Overall & Priorities
// ============================================
const page4 = pages.addPage('overall');
 
const overallSection = page4.addSubform('overallSection', {
title: 'Overall Campus Experience'
});
 
overallSection.addRow(row => {
row.addEmojiRating('overallSatisfaction', {
label: 'Overall, how satisfied are you with campus facilities?',
preset: 'satisfaction',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
overallSection.addRow(row => {
row.addThumbRating('wouldRecommend', {
label: 'Would you recommend this campus to prospective students based on facilities?',
size: 'lg',
showLabels: true,
upLabel: 'Yes, definitely',
downLabel: 'Probably not',
alignment: 'center'
});
});
 
const prioritiesSection = page4.addSubform('prioritiesSection', {
title: 'Improvement Priorities',
customStyles: { backgroundColor: '#fffbeb', padding: '20px', borderRadius: '12px' }
});
 
prioritiesSection.addRow(row => {
row.addSuggestionChips('topPriorities', {
label: 'What should be the TOP 3 priorities for improvement?',
suggestions: [
{ id: 'wifi', name: 'Better WiFi' },
{ id: 'hvac', name: 'Climate control' },
{ id: 'study-space', name: 'More study spaces' },
{ id: 'parking', name: 'Parking improvements' },
{ id: 'dining', name: 'Dining options' },
{ id: 'safety', name: 'Safety/Lighting' },
{ id: 'accessibility', name: 'Accessibility' },
{ id: 'cleanliness', name: 'Cleanliness' },
{ id: 'tech', name: 'Classroom technology' },
{ id: 'sustainability', name: 'Sustainability' }
],
min: 1,
max: 3,
alignment: 'center'
});
});
 
prioritiesSection.addSpacer({ height: '16px' });
 
prioritiesSection.addRow(row => {
row.addTextarea('additionalFeedback', {
label: 'Any additional feedback on campus facilities?',
placeholder: 'Share your suggestions, concerns, or positive experiences...',
rows: 4,
autoExpand: true
});
});
 
// ============================================
// SUMMARY (on page 4)
// ============================================
const summarySection = page4.addSubform('summary', {
title: 'Your Feedback Summary',
isVisible: () => overallSection.emojiRating('overallSatisfaction')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const studentType = generalSection.radioButton('studentType')?.value();
const hours = generalSection.slider('hoursOnCampus')?.value();
const facilities = generalSection.checkboxList('facilitiesUsed')?.value() || [];
const safety = safetySection.starRating('overallSafety')?.value();
const overall = overallSection.emojiRating('overallSatisfaction')?.value();
const recommend = overallSection.thumbRating('wouldRecommend')?.value();
const priorities = prioritiesSection.suggestionChips('topPriorities')?.value() || [];
 
const typeLabels: Record<string, string> = {
'undergrad': 'Undergraduate',
'grad': 'Graduate',
'online': 'Online',
'parttime': 'Part-time'
};
 
const satLabels: Record<string, string> = {
'very-bad': 'Very Dissatisfied',
'bad': 'Dissatisfied',
'neutral': 'Neutral',
'good': 'Satisfied',
'excellent': 'Very Satisfied'
};
 
let summary = '🎓 Campus Facilities Feedback\n';
summary += `${'═'.repeat(30)}\n\n`;
summary += `👤 Student Type: ${typeLabels[studentType || ''] || 'Not specified'}\n`;
summary += `⏰ Hours on Campus: ${hours || 0}/week\n`;
summary += `🏢 Facilities Used: ${facilities.length}\n`;
 
if (safety) {
summary += `\n🛡️ Safety Rating: ${safety}/5 stars`;
}
 
if (overall) {
summary += `\n😊 Overall Satisfaction: ${satLabels[overall] || overall}`;
}
 
if (recommend) {
summary += `\n👍 Would Recommend: ${recommend === 'up' ? 'Yes' : 'No'}`;
}
 
if (priorities.length > 0) {
summary += `\n\n🎯 Top Priorities: ${priorities.length} selected`;
}
 
return summary;
},
customStyles: () => {
const overall = overallSection.emojiRating('overallSatisfaction')?.value();
const baseStyles = {
padding: '20px',
borderRadius: '12px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (overall === 'excellent' || overall === 'good') {
return { ...baseStyles, backgroundColor: '#ecfdf5', borderLeft: '4px solid #10b981' };
} else if (overall === 'neutral') {
return { ...baseStyles, backgroundColor: '#fffbeb', borderLeft: '4px solid #f59e0b' };
} else {
return { ...baseStyles, backgroundColor: '#fef2f2', borderLeft: '4px solid #ef4444' };
}
}
});
});
 
page4.addRow(row => {
row.addButton('backToPage3', {
label: 'Back',
onClick: () => pages.goToPage('safety')
}, '100px');
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Campus Feedback',
isVisible: () => {
const currentPage = pages.currentPageIndex();
return currentPage === 3;
}
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Campus Feedback!',
message: 'Your input helps us prioritize improvements to create a better learning environment. We review all feedback and communicate updates on planned changes through student channels.'
});
}
 

Frequently Asked Questions

When should I survey students about campus facilities?

Conduct surveys at least once per semester, ideally mid-semester when students have fully experienced facilities. Avoid finals week. Consider pulse surveys after major renovations or new facility openings.

How can I improve survey response rates?

Offer incentives like dining credits, bookstore discounts, or entry into prize drawings. Keep surveys under 10 minutes, send reminders, and share how previous feedback led to improvements.

What safety aspects should I include?

Cover lighting, emergency phones, security presence, building access, parking safety, and personal safety perceptions. Include questions about awareness of safety resources and reporting procedures.

Should I ask about specific buildings?

Yes, but be strategic. Focus on high-traffic buildings and those scheduled for renovation. Use conditional logic to only show relevant building questions based on which facilities students actually use.

How do I handle negative facility feedback?

Acknowledge all feedback, prioritize safety concerns, and communicate planned improvements. Create action plans for commonly cited issues and follow up with students when changes are made.