-
Notifications
You must be signed in to change notification settings - Fork 4
/
surveyjs-init.js
627 lines (625 loc) · 22.8 KB
/
surveyjs-init.js
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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
db = new Mongo().getDB("surveyjs");
db.createCollection('surveys');
db.surveys.insert([{
"id": "1",
"name": "Product Feedback Survey",
"json": {
"pages": [{
"elements": [{
"type": "matrix",
"name": "Quality",
"title": "Please indicate if you agree or disagree with the following statements",
"columns": [{
"value": 1,
"text": "Strongly disagree"
}, {
"value": 2,
"text": "Disagree"
}, {
"value": 3,
"text": "Neutral"
}, {
"value": 4,
"text": "Agree"
}, {
"value": 5,
"text": "Strongly agree"
}],
"rows": [{
"value": "affordable",
"text": "Product is affordable"
}, {
"value": "does what it claims",
"text": "Product does what it claims"
}, {
"value": "better then others",
"text": "Product is better than other products on the market"
}, {
"value": "easy to use",
"text": "Product is easy to use"
}]
}, {
"type": "rating",
"name": "satisfaction",
"title": "How satisfied are you with the product?",
"mininumRateDescription": "Not satisfied",
"maximumRateDescription": "Completely satisfied"
}, {
"type": "rating",
"name": "recommend friends",
"visibleIf": "{satisfaction} > 3",
"title": "How likely are you to recommend the product to a friend or colleague?",
"mininumRateDescription": "Won't recommend",
"maximumRateDescription": "Will recommend"
}, {
"type": "comment",
"name": "suggestions",
"title": "What would make you more satisfied with the product?"
}]
}, {
"elements": [{
"type": "radiogroup",
"name": "price to competitors",
"title": "Compared to our competitors, do you feel the product is",
"choices": [
"Less expensive",
"Priced about the same",
"More expensive",
"Not sure"
]
}, {
"type": "radiogroup",
"name": "price",
"title": "Do you feel our current price is merited by our product?",
"choices": [
"correct|Yes, the price is about right",
"low|No, the price is too low",
"high|No, the price is too high"
]
}, {
"type": "multipletext",
"name": "pricelimit",
"title": "What is the... ",
"items": [{
"name": "mostamount",
"title": "Most amount you would pay for a product like ours"
}, {
"name": "leastamount",
"title": "The least amount you would feel comfortable paying"
}]
}]
}, {
"elements": [{
"type": "text",
"name": "email",
"title": 'Thank you for taking our survey. Please enter your email address and press the "Submit" button.'
}]
}]
}
}, {
"id": "2",
"name": "Customer and their partner income survey",
"json": {
"completeText": "Finish",
"pageNextText": "Continue",
"pagePrevText": "Previous",
"pages": [{
"elements": [{
"type": "panel",
"elements": [{
"type": "html",
"name": "income_intro",
"html":
"Income. In this section, you will be asked about your current employment status and other ways you and your partner receive income. It will be handy to have the following in front of you: payslip (for employment details), latest statement from any payments (from Centrelink or other authority), a current Centrelink Schedule for any account-based pension from super, annuities, or other income stream products that you may own. If you don't have a current one, you can get these schedules by contacting your income stream provider."
}],
"name": "panel1"
}],
"name": "page0"
}, {
"elements": [{
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [
"Married",
"In a registered relationship",
"Living with my partner",
"Widowed",
"Single"
],
"name": "maritalstatus_c",
"title": " "
}],
"name": "panel13",
"title": "What is your marital status?"
}],
"name": "page1"
}, {
"elements": [{
"type": "panel",
"elements": [{
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [{
"value": "1",
"text": "Yes"
}, {
"value": "0",
"text": "No"
}],
"colCount": 2,
"isRequired": true,
"name": "member_receives_income_from_employment",
"title": " "
}, {
"type": "checkbox",
"name": "member_type_of_employment",
"visible": false,
"visibleIf": "{member_receives_income_from_employment} =1",
"title": " ",
"isRequired": true,
"choices": [
"Self-employed",
"Other types of employment"
]
}],
"name": "panel2",
"title": "You"
}, {
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [{
"value": "1",
"text": "Yes"
}, {
"value": "0",
"text": "No"
}],
"colCount": 2,
"isRequired": true,
"name": "partner_receives_income_from_employment",
"title": " "
}, {
"type": "checkbox",
"name": "partner_type_of_employment",
"visible": false,
"visibleIf": "{partner_receives_income_from_employment} =1",
"title": " ",
"isRequired": true,
"choices": [
"Self-employed",
"Other types of employment"
]
}],
"name": "panel1",
"startWithNewLine": false,
"title": "Your Partner",
"visibleIf":
"{maritalstatus_c} = 'Married' or {maritalstatus_c} = 'In a registered relationship' or {maritalstatus_c} = 'Living with my partner'"
}],
"name": "panel5",
"title": "Do you and/or your partner currently receive income from employment?"
}],
"name": "page2"
}, {
"elements": [{
"type": "panel",
"elements": [{
"type": "panel",
"elements": [{
"type": "paneldynamic",
"minPanelCount": 1,
"name": "member_array_employer_names",
"valueName": "member_array_employer",
"title": "Enter information about your employers",
"panelAddText": "Add another employer",
"panelCount": 1,
"templateElements": [{
"type": "text",
"name": "member_employer_name",
"valueName": "name",
"title": "Employer name"
}]
}],
"name": "panel2",
"title": "You",
"visible": false,
"visibleIf": "{member_type_of_employment} contains 'Other types of employment'"
}, {
"type": "panel",
"elements": [{
"type": "paneldynamic",
"minPanelCount": 1,
"name": "partner_array_employer_names",
"valueName": "partner_array_employer",
"title": "Enter information about employers of your partner",
"panelAddText": "Add another employer",
"panelCount": 1,
"templateElements": [{
"type": "text",
"name": "partner_employer_name",
"valueName": "name",
"title": "Employer name"
}]
}],
"name": "panel8",
"startWithNewLine": false,
"title": "Your Partner",
"visible": false,
"visibleIf":
"{partner_type_of_employment} contains 'Other types of employment'"
}],
"name": "panel6",
"title": "Employers"
}],
"name": "page3.1",
"visible": false,
"visibleIf":
"{member_type_of_employment} contains 'Other types of employment' or {partner_type_of_employment} contains 'Other types of employment'"
}, {
"elements": [{
"type": "panel",
"elements": [{
"type": "panel",
"elements": [{
"type": "paneldynamic",
"renderMode": "progressTop",
"allowAddPanel": false,
"allowRemovePanel": false,
"name": "member_array_employer_info",
"title": "Your employers",
"valueName": "member_array_employer",
"panelCount": 1,
"templateElements": [{
"type": "panel",
"name": "panel_member_employer_address",
"title": "Contacts",
"elements": [{
"type": "text",
"name": "member_employer_address",
"valueName": "address",
"title": "Address:"
}, {
"type": "text",
"name": "member_employer_phone",
"valueName": "phone",
"title": "Phone number:"
}, {
"type": "text",
"name": "member_employer_abn",
"valueName": "abn",
"title": "ABN:"
}]
}, {
"type": "panel",
"name": "panel_member_employer_role",
"title": "Are you a full time worker?",
"elements": [{
"type": "radiogroup",
"choices": [
"Full-time",
"Part-time",
"Casual",
"Seasonal"
],
"name": "member_employer_role",
"title": " ",
"valueName": "role"
}]
}, {
"type": "panel",
"name": "panel_member_employer_hours_work",
"title": "How many hours do you work?",
"elements": [{
"type": "text",
"inputType": "number",
"name": "member_employer_hours_worked",
"valueName": "hours_worked",
"title": "Hours:"
}, {
"type": "dropdown",
"name": "member_employer_hours_worked_frequency",
"title": "Work frequency:",
"valueName": "hours_worked_frequency",
"startWithNewLine": false,
"defaultValue": "Day",
"choices": [
"Day",
"Week",
"Fortnight",
"Month",
"Year"
]
}]
}, {
"type": "panel",
"name": "panel_member_employer_income",
"title": "What is your income?",
"elements": [{
"type": "text",
"inputType": "number",
"name": "member_employer_income",
"valueName": "income",
"title": "Income:"
}, {
"type": "dropdown",
"name": "member_employer_income_frequency",
"title": "Income frequency:",
"valueName": "income_frequency",
"startWithNewLine": false,
"defaultValue": "Month",
"choices": [
"Day",
"Week",
"Fortnight",
"Month",
"Year"
]
}]
}],
"templateTitle": "Employer name: {panel.name}"
}],
"name": "panel17",
"title": "You",
"visibleIf": "{member_type_of_employment} contains 'Other types of employment'"
}, {
"type": "panel",
"elements": [{
"type": "paneldynamic",
"renderMode": "progressTop",
"allowAddPanel": false,
"allowRemovePanel": false,
"name": "partner_array_employer_info",
"title": "Employers",
"valueName": "partner_array_employer",
"panelCount": 1,
"templateElements": [{
"type": "panel",
"name": "panel_partner_employer_address",
"title": "Contacts",
"elements": [{
"type": "text",
"name": "partner_employer_address",
"valueName": "address",
"title": "Address:"
}, {
"type": "text",
"name": "partner_employer_phone",
"valueName": "phone",
"title": "Phone number:"
}, {
"type": "text",
"name": "partner_employer_abn",
"valueName": "abn",
"title": "ABN:"
}]
}, {
"type": "panel",
"name": "panel_partner_employer_role",
"title": "Are you a full time worker?",
"elements": [{
"type": "radiogroup",
"choices": [
"Full-time",
"Part-time",
"Casual",
"Seasonal"
],
"name": "partner_employer_role",
"title": "Your role",
"valueName": "role"
}]
}, {
"type": "panel",
"name": "panel_partner_employer_hours_work",
"title": "How many hours do you work?",
"elements": [{
"type": "text",
"inputType": "number",
"name": "partner_employer_hours_worked",
"valueName": "hours_worked",
"title": "Hours:"
}, {
"type": "dropdown",
"name": "partner_employer_hours_worked_frequency",
"valueName": "hours_worked_frequency",
"title": "Work frequency:",
"startWithNewLine": false,
"defaultValue": "Day",
"choices": [
"Day",
"Week",
"Fortnight",
"Month",
"Year"
]
}]
}, {
"type": "panel",
"name": "panel_partner_employer_income",
"title": "What is your income?",
"elements": [{
"type": "text",
"inputType": "number",
"name": "partner_employer_income",
"valueName": "income",
"title": "Income:"
}, {
"type": "dropdown",
"name": "partner_employer_income_frequency",
"valueName": "income_frequency",
"title": "Income frequency:",
"startWithNewLine": false,
"defaultValue": "Month",
"choices": [
"Day",
"Week",
"Fortnight",
"Month",
"Year"
]
}]
}],
"templateTitle": "Employer name: {panel.name}"
}],
"name": "panel18",
"startWithNewLine": false,
"title": "You partner",
"visibleIf": "{partner_type_of_employment} contains 'Other types of employment'"
}],
"name": "panel16",
"title": "Enter information about your employers"
}],
"name": "page3.2",
"visibleIf":
"{member_type_of_employment} contains 'Other types of employment' or {partner_type_of_employment} contains 'Other types of employment'"
}, {
"elements": [{
"type": "panel",
"elements": [{
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [{
"value": "1",
"text": "Yes"
}, {
"value": "0",
"text": "No"
}],
"colCount": 2,
"isRequired": true,
"name": "member_receive_fringe_benefits",
"title": " "
}, {
"type": "panel",
"elements": [{
"type": "text",
"name": "member_fringe_benefits_type"
}, {
"type": "text",
"name": "member_fringe_benefits_value"
}, {
"type": "radiogroup",
"choices": ["Grossed up", "Not grossed up"],
"name": "member_fringe_benefits_grossing"
}],
"name": "panel11",
"visible": false,
"visibleIf": "{member_receive_fringe_benefits} = 1"
}],
"name": "panel2",
"title": "You",
"visible": false,
"visibleIf": "{member_type_of_employment} contains 'Other types of employment'"
}, {
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [{
"value": "1",
"text": "Yes"
}, {
"value": "0",
"text": "No"
}],
"colCount": 2,
"isRequired": true,
"name": "partner_receive_fringe_benefits",
"title": " "
}, {
"type": "panel",
"elements": [{
"type": "text",
"name": "partner_fringe_benefits_type"
}, {
"type": "text",
"name": "partner_fringe_benefits_value"
}, {
"type": "radiogroup",
"choices": ["Grossed up", "Not grossed up"],
"name": "partner_fringe_benefits_grossing"
}],
"name": "panel12",
"visible": false,
"visibleIf": "{partner_receive_fringe_benefits} = 1"
}],
"name": "panel1",
"startWithNewLine": false,
"title": "Your Partner",
"visible": false,
"visibleIf": "{partner_type_of_employment} contains 'Other types of employment'"
}],
"name": "panel9",
"title": "Do any of your employers provide you with fringe benefits?"
}],
"name": "page4",
"visible": false,
"visibleIf":
"{member_type_of_employment} contains 'Other types of employment' or {partner_type_of_employment} contains 'Other types of employment'"
}, {
"elements": [{
"type": "panel",
"elements": [{
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [{
"value": "1",
"text": "Yes"
}, {
"value": "0",
"text": "No"
}],
"colCount": 2,
"isRequired": true,
"name": "member_seasonal_intermittent_or_contract_work",
"title": " "
}],
"name": "panel2",
"title": "You",
"visible": false,
"visibleIf": "{member_receives_income_from_employment} = 1"
}, {
"type": "panel",
"elements": [{
"type": "radiogroup",
"choices": [{
"value": "1",
"text": "Yes"
}, {
"value": "0",
"text": "No"
}],
"colCount": 2,
"isRequired": true,
"name": "partner_seasonal_intermittent_or_contract_work",
"title": " "
}],
"name": "panel1",
"startWithNewLine": false,
"title": "Your Partner",
"visible": false,
"visibleIf": "{partner_receives_income_from_employment} =1 "
}],
"name": "panel10",
"title": "In the last 6 months, have you done any seasonal, intermittent or contract work?"
}],
"name": "page5",
"visible": false,
"visibleIf": "{member_receives_income_from_employment} = 1 or {partner_receives_income_from_employment} =1 "
}],
"requiredText": "",
"showQuestionNumbers": "off",
"storeOthersAsComment": false
}
}]);
db.createCollection('results');
db.results.insert([
{ id: 1, postid: "1", json: { "Quality": { "affordable": "5", "better then others": "5", "does what it claims": "5", "easy to use": "5" }, "satisfaction": 5, "recommend friends": 5, "suggestions": "I am happy!", "price to competitors": "Not sure", "price": "low", "pricelimit": { "mostamount": "100", "leastamount": "100" } } },
{ id: 2, postid: "1", json: { "Quality": { "affordable": "3", "does what it claims": "2", "better then others": "2", "easy to use": "3" }, "satisfaction": 3, "suggestions": "better support", "price to competitors": "Not sure", "price": "high", "pricelimit": { "mostamount": "60", "leastamount": "10" } } },
{ id: 3, postid: "2", json: { "member_array_employer": [{}], "partner_array_employer": [{}], "maritalstatus_c": "Married", "member_receives_income_from_employment": "0", "partner_receives_income_from_employment": "0" } },
{ id: 4, postid: "2", json: { "member_array_employer": [{}], "partner_array_employer": [{}], "maritalstatus_c": "Single", "member_receives_income_from_employment": "1", "member_type_of_employment": ["Self-employed"], "member_seasonal_intermittent_or_contract_work": "0" } },
]);