@glowgreen/gg-questionnaire-v2 0.0.11 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/bundles/glowgreen-gg-questionnaire-v2.umd.js +1186 -1130
  2. package/bundles/glowgreen-gg-questionnaire-v2.umd.js.map +1 -1
  3. package/bundles/glowgreen-gg-questionnaire-v2.umd.min.js +1 -1
  4. package/bundles/glowgreen-gg-questionnaire-v2.umd.min.js.map +1 -1
  5. package/esm2015/glowgreen-gg-questionnaire-v2.js +1 -1
  6. package/esm2015/lib/enums/condition-relationship.enum.js +1 -1
  7. package/esm2015/lib/enums/condition-type.enum.js +1 -1
  8. package/esm2015/lib/enums/input-type.enum.js +1 -1
  9. package/esm2015/lib/enums/question-type.enum.js +1 -1
  10. package/esm2015/lib/enums/repeater-question-type.enum.js +1 -1
  11. package/esm2015/lib/enums/validation-type.enum.js +1 -1
  12. package/esm2015/lib/gg-questionnaire-v2.module.js +1 -1
  13. package/esm2015/lib/interfaces/attachment.js +1 -1
  14. package/esm2015/lib/interfaces/checklist-item.js +1 -1
  15. package/esm2015/lib/interfaces/condition-group.js +1 -1
  16. package/esm2015/lib/interfaces/condition.js +1 -1
  17. package/esm2015/lib/interfaces/question.js +1 -1
  18. package/esm2015/lib/interfaces/questionnaire-options.js +1 -1
  19. package/esm2015/lib/interfaces/questionnaire.js +1 -1
  20. package/esm2015/lib/interfaces/repeater-question.js +1 -1
  21. package/esm2015/lib/interfaces/section.js +1 -1
  22. package/esm2015/lib/interfaces/select-option.js +1 -1
  23. package/esm2015/lib/interfaces/validator.js +1 -1
  24. package/esm2015/lib/services/filter.service.js +35 -33
  25. package/esm2015/lib/services/form-constructor.service.js +5 -6
  26. package/esm2015/lib/services/questionnaire.service.js +3 -3
  27. package/esm2015/public_api.js +1 -1
  28. package/esm5/glowgreen-gg-questionnaire-v2.js +1 -1
  29. package/esm5/lib/enums/condition-relationship.enum.js +1 -1
  30. package/esm5/lib/enums/condition-type.enum.js +1 -1
  31. package/esm5/lib/enums/input-type.enum.js +1 -1
  32. package/esm5/lib/enums/question-type.enum.js +1 -1
  33. package/esm5/lib/enums/repeater-question-type.enum.js +1 -1
  34. package/esm5/lib/enums/validation-type.enum.js +1 -1
  35. package/esm5/lib/gg-questionnaire-v2.module.js +1 -1
  36. package/esm5/lib/interfaces/attachment.js +1 -1
  37. package/esm5/lib/interfaces/checklist-item.js +1 -1
  38. package/esm5/lib/interfaces/condition-group.js +1 -1
  39. package/esm5/lib/interfaces/condition.js +1 -1
  40. package/esm5/lib/interfaces/question.js +1 -1
  41. package/esm5/lib/interfaces/questionnaire-options.js +1 -1
  42. package/esm5/lib/interfaces/questionnaire.js +1 -1
  43. package/esm5/lib/interfaces/repeater-question.js +1 -1
  44. package/esm5/lib/interfaces/section.js +1 -1
  45. package/esm5/lib/interfaces/select-option.js +1 -1
  46. package/esm5/lib/interfaces/validator.js +1 -1
  47. package/esm5/lib/services/filter.service.js +52 -50
  48. package/esm5/lib/services/form-constructor.service.js +7 -8
  49. package/esm5/lib/services/questionnaire.service.js +11 -10
  50. package/esm5/public_api.js +1 -1
  51. package/fesm2015/glowgreen-gg-questionnaire-v2.js +125 -50
  52. package/fesm2015/glowgreen-gg-questionnaire-v2.js.map +1 -1
  53. package/fesm5/glowgreen-gg-questionnaire-v2.js +151 -75
  54. package/fesm5/glowgreen-gg-questionnaire-v2.js.map +1 -1
  55. package/lib/services/questionnaire.service.d.ts +8 -8
  56. package/package.json +3 -3
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @fileoverview added by tsickle
3
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
3
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
4
4
  */
5
5
  // Services
6
6
  export { QuestionnaireService } from './lib/services/questionnaire.service';
@@ -1,11 +1,11 @@
1
1
  import { __awaiter } from 'tslib';
2
+ import { Injectable, ɵɵdefineInjectable, ɵɵinject, EventEmitter, Inject, NgModule } from '@angular/core';
3
+ import { Validators, FormBuilder, FormArray, FormsModule, ReactiveFormsModule } from '@angular/forms';
2
4
  import { get, keys, cloneDeep } from 'lodash';
3
- import { Injectable, NgModule, defineInjectable, inject, EventEmitter, Inject } from '@angular/core';
4
- import { FormBuilder, Validators, FormsModule, ReactiveFormsModule, FormArray } from '@angular/forms';
5
5
 
6
6
  /**
7
7
  * @fileoverview added by tsickle
8
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
8
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
9
9
  */
10
10
  /** @enum {string} */
11
11
  const QuestionType = {
@@ -21,7 +21,7 @@ const QuestionType = {
21
21
 
22
22
  /**
23
23
  * @fileoverview added by tsickle
24
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
24
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
25
25
  */
26
26
  /** @enum {string} */
27
27
  const ConditionType = {
@@ -35,7 +35,7 @@ const ConditionType = {
35
35
 
36
36
  /**
37
37
  * @fileoverview added by tsickle
38
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
38
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
39
39
  */
40
40
  /** @enum {string} */
41
41
  const ConditionRelationship = {
@@ -45,7 +45,7 @@ const ConditionRelationship = {
45
45
 
46
46
  /**
47
47
  * @fileoverview added by tsickle
48
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
48
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
49
49
  */
50
50
  class FilterService {
51
51
  constructor() { }
@@ -61,36 +61,42 @@ class FilterService {
61
61
  /** @type {?} */
62
62
  const filteredSections = [];
63
63
  for (const section of sections) {
64
- if (this.meetsConditionGroups(section.conditionGroups, currentQuestionnaireForm, additionalData)) {
65
- /** @type {?} */
66
- const filteredQuestions = [];
67
- for (const question of section.questions) {
68
- if (this.meetsConditionGroups(question.conditionGroups, currentQuestionnaireForm, additionalData)) {
69
- if (question.repeaterQuestions) {
70
- for (const repeaterQuestion of question.repeaterQuestions) {
71
- if (this.meetsConditionGroups(repeaterQuestion.conditionGroups, currentQuestionnaireForm, additionalData)) ;
72
- }
73
- }
74
- if (question.fetchPath) {
75
- /** @type {?} */
76
- let options = additionalData[question.fetchPath];
77
- if (question.fetchSelectors && question.fetchSelectors.length > 0) {
78
- /** @type {?} */
79
- const values = this.getValuesForArray(question.fetchSelectors, currentQuestionnaireForm, additionalData);
80
- options = get(additionalData[question.fetchPath], values);
81
- }
82
- options = this.getFinalFetchArray(options);
83
- if (!question.selectOptions) {
84
- question.selectOptions = [];
85
- }
86
- question.selectOptions = question.selectOptions.concat(options);
64
+ if (!this.meetsConditionGroups(section.conditionGroups, currentQuestionnaireForm, additionalData)) {
65
+ continue;
66
+ }
67
+ /** @type {?} */
68
+ const filteredQuestions = [];
69
+ for (const question of section.questions) {
70
+ if (!this.meetsConditionGroups(question.conditionGroups, currentQuestionnaireForm, additionalData)) {
71
+ continue;
72
+ }
73
+ if (question.repeaterQuestions) {
74
+ /** @type {?} */
75
+ const filteredRepeaterQuestions = [];
76
+ for (const repeaterQuestion of question.repeaterQuestions) {
77
+ if (this.meetsConditionGroups(repeaterQuestion.conditionGroups, currentQuestionnaireForm, additionalData)) {
78
+ filteredRepeaterQuestions.push(repeaterQuestion);
87
79
  }
88
- filteredQuestions.push(question);
89
80
  }
90
81
  }
91
- section.questions = filteredQuestions;
92
- filteredSections.push(section);
82
+ if (question.fetchPath) {
83
+ /** @type {?} */
84
+ let options = additionalData[question.fetchPath];
85
+ if (question.fetchSelectors && question.fetchSelectors.length > 0) {
86
+ /** @type {?} */
87
+ const values = this.getValuesForArray(question.fetchSelectors, currentQuestionnaireForm, additionalData);
88
+ options = get(additionalData[question.fetchPath], values);
89
+ }
90
+ options = this.getFinalFetchArray(options);
91
+ if (!question.selectOptions) {
92
+ question.selectOptions = [];
93
+ }
94
+ question.selectOptions = question.selectOptions.concat(options);
95
+ }
96
+ filteredQuestions.push(question);
93
97
  }
98
+ section.questions = filteredQuestions;
99
+ filteredSections.push(section);
94
100
  }
95
101
  return filteredSections;
96
102
  }
@@ -353,11 +359,11 @@ FilterService.decorators = [
353
359
  ];
354
360
  /** @nocollapse */
355
361
  FilterService.ctorParameters = () => [];
356
- /** @nocollapse */ FilterService.ngInjectableDef = defineInjectable({ factory: function FilterService_Factory() { return new FilterService(); }, token: FilterService, providedIn: "root" });
362
+ /** @nocollapse */ FilterService.ngInjectableDef = ɵɵdefineInjectable({ factory: function FilterService_Factory() { return new FilterService(); }, token: FilterService, providedIn: "root" });
357
363
 
358
364
  /**
359
365
  * @fileoverview added by tsickle
360
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
366
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
361
367
  */
362
368
  /** @enum {string} */
363
369
  const ValidationType = {
@@ -371,7 +377,7 @@ const ValidationType = {
371
377
 
372
378
  /**
373
379
  * @fileoverview added by tsickle
374
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
380
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
375
381
  */
376
382
  class FormConstructorService {
377
383
  /**
@@ -452,9 +458,7 @@ class FormConstructorService {
452
458
  case QuestionType.Repeater:
453
459
  /** @type {?} */
454
460
  const currentArray = currentQuestionnaireForm ? ((/** @type {?} */ (currentQuestionnaireForm.get([section.name, question.name])))) : false;
455
- /** @type {?} */
456
- const newArray = currentArray ? currentArray.controls : [];
457
- return this.fb.array(newArray, convertedValidators);
461
+ return currentArray ? currentArray : this.fb.array([], convertedValidators);
458
462
  case QuestionType.Checklist:
459
463
  return this.generateGroupForChecklist(question, convertedValidators);
460
464
  default:
@@ -574,6 +578,7 @@ class FormConstructorService {
574
578
  if (repeaterFormArray.controls.length === repeaterArray.length) {
575
579
  continue;
576
580
  }
581
+ // For each item that used to be there push a new empty template there to be populated.
577
582
  for (const repeaterItem of repeaterArray) {
578
583
  /** @type {?} */
579
584
  const repeaterItemTemplate = this.generateFormsForRepeater(question);
@@ -593,11 +598,23 @@ FormConstructorService.ctorParameters = () => [
593
598
  { type: FormBuilder },
594
599
  { type: FilterService }
595
600
  ];
596
- /** @nocollapse */ FormConstructorService.ngInjectableDef = defineInjectable({ factory: function FormConstructorService_Factory() { return new FormConstructorService(inject(FormBuilder), inject(FilterService)); }, token: FormConstructorService, providedIn: "root" });
601
+ /** @nocollapse */ FormConstructorService.ngInjectableDef = ɵɵdefineInjectable({ factory: function FormConstructorService_Factory() { return new FormConstructorService(ɵɵinject(FormBuilder), ɵɵinject(FilterService)); }, token: FormConstructorService, providedIn: "root" });
602
+ if (false) {
603
+ /**
604
+ * @type {?}
605
+ * @private
606
+ */
607
+ FormConstructorService.prototype.fb;
608
+ /**
609
+ * @type {?}
610
+ * @private
611
+ */
612
+ FormConstructorService.prototype.filterService;
613
+ }
597
614
 
598
615
  /**
599
616
  * @fileoverview added by tsickle
600
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
617
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
601
618
  */
602
619
  class QuestionnaireService {
603
620
  /**
@@ -619,7 +636,7 @@ class QuestionnaireService {
619
636
  * @return {?} null
620
637
  */
621
638
  loadQuestionnaire(questionnaire, savedState, additionalData) {
622
- return __awaiter(this, void 0, void 0, function* () {
639
+ return __awaiter(this, void 0, void 0, /** @this {!QuestionnaireService} */ function* () {
623
640
  this.originalQuestionnaire = cloneDeep(questionnaire);
624
641
  this.currentQuestionnaire = cloneDeep(questionnaire);
625
642
  this.additionalData = additionalData;
@@ -1178,11 +1195,70 @@ QuestionnaireService.ctorParameters = () => [
1178
1195
  { type: FormConstructorService },
1179
1196
  { type: undefined, decorators: [{ type: Inject, args: ['options',] }] }
1180
1197
  ];
1181
- /** @nocollapse */ QuestionnaireService.ngInjectableDef = defineInjectable({ factory: function QuestionnaireService_Factory() { return new QuestionnaireService(inject(FormConstructorService), inject("options")); }, token: QuestionnaireService, providedIn: "root" });
1198
+ /** @nocollapse */ QuestionnaireService.ngInjectableDef = ɵɵdefineInjectable({ factory: function QuestionnaireService_Factory() { return new QuestionnaireService(ɵɵinject(FormConstructorService), ɵɵinject("options")); }, token: QuestionnaireService, providedIn: "root" });
1199
+ if (false) {
1200
+ /** @type {?} */
1201
+ QuestionnaireService.prototype.dataChangedEvent;
1202
+ /**
1203
+ * @type {?}
1204
+ * @private
1205
+ */
1206
+ QuestionnaireService.prototype.originalQuestionnaire;
1207
+ /**
1208
+ * @type {?}
1209
+ * @private
1210
+ */
1211
+ QuestionnaireService.prototype.currentQuestionnaire;
1212
+ /**
1213
+ * @type {?}
1214
+ * @private
1215
+ */
1216
+ QuestionnaireService.prototype.currentQuestionnaireForm;
1217
+ /**
1218
+ * @type {?}
1219
+ * @private
1220
+ */
1221
+ QuestionnaireService.prototype.currentSectionName;
1222
+ /**
1223
+ * @type {?}
1224
+ * @private
1225
+ */
1226
+ QuestionnaireService.prototype.currentQuestionName;
1227
+ /**
1228
+ * @type {?}
1229
+ * @private
1230
+ */
1231
+ QuestionnaireService.prototype.questionnaireValueChangeSubscription;
1232
+ /**
1233
+ * @type {?}
1234
+ * @private
1235
+ */
1236
+ QuestionnaireService.prototype.questionValueChangeSubscription;
1237
+ /**
1238
+ * @type {?}
1239
+ * @private
1240
+ */
1241
+ QuestionnaireService.prototype.additionalData;
1242
+ /**
1243
+ * @type {?}
1244
+ * @private
1245
+ */
1246
+ QuestionnaireService.prototype.skippable;
1247
+ /**
1248
+ * @type {?}
1249
+ * @private
1250
+ */
1251
+ QuestionnaireService.prototype.formConstuctor;
1252
+ /**
1253
+ * @type {?}
1254
+ * @private
1255
+ */
1256
+ QuestionnaireService.prototype.options;
1257
+ }
1182
1258
 
1183
1259
  /**
1184
1260
  * @fileoverview added by tsickle
1185
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1261
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1186
1262
  */
1187
1263
  class GgQuestionnaireV2Module {
1188
1264
  /**
@@ -1218,7 +1294,7 @@ GgQuestionnaireV2Module.decorators = [
1218
1294
 
1219
1295
  /**
1220
1296
  * @fileoverview added by tsickle
1221
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1297
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1222
1298
  */
1223
1299
  /** @enum {string} */
1224
1300
  const InputType = {
@@ -1237,7 +1313,7 @@ const InputType = {
1237
1313
 
1238
1314
  /**
1239
1315
  * @fileoverview added by tsickle
1240
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1316
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1241
1317
  */
1242
1318
  /** @enum {string} */
1243
1319
  const RepeaterQuestionType = {
@@ -1247,14 +1323,13 @@ const RepeaterQuestionType = {
1247
1323
 
1248
1324
  /**
1249
1325
  * @fileoverview added by tsickle
1250
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1326
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1251
1327
  */
1252
1328
 
1253
1329
  /**
1254
1330
  * @fileoverview added by tsickle
1255
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1331
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1256
1332
  */
1257
1333
 
1258
- export { QuestionnaireService, GgQuestionnaireV2Module, ConditionRelationship, ConditionType, QuestionType, ValidationType, InputType, RepeaterQuestionType, FilterService as ɵb, FormConstructorService as ɵa };
1259
-
1260
- //# sourceMappingURL=glowgreen-gg-questionnaire-v2.js.map
1334
+ export { ConditionRelationship, ConditionType, GgQuestionnaireV2Module, InputType, QuestionType, QuestionnaireService, RepeaterQuestionType, ValidationType, FormConstructorService as ɵa, FilterService as ɵb };
1335
+ //# sourceMappingURL=glowgreen-gg-questionnaire-v2.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"glowgreen-gg-questionnaire-v2.js.map","sources":["ng://@glowgreen/gg-questionnaire-v2/lib/enums/question-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/condition-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/condition-relationship.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/services/filter.service.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/validation-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/services/form-constructor.service.ts","ng://@glowgreen/gg-questionnaire-v2/lib/services/questionnaire.service.ts","ng://@glowgreen/gg-questionnaire-v2/lib/gg-questionnaire-v2.module.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/input-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/repeater-question-type.enum.ts"],"sourcesContent":["export enum QuestionType {\n Input = 'input',\n Select = 'select',\n Textarea = 'textarea',\n Repeater = 'repeater',\n Checklist = 'checklist',\n Attachment = 'attachment',\n Upload = 'upload',\n Signature = 'signature',\n}\n","export enum ConditionType {\n EqualTo = 'equalTo',\n NotEqualTo = 'notEqualTo',\n LessThan = 'lessThan',\n GreaterThan = 'greaterThan',\n Includes = 'includes',\n Excludes = 'excludes'\n}\n","export enum ConditionRelationship {\n Every = 'every',\n Any = 'any',\n}\n","import { Injectable } from '@angular/core';\nimport { Section } from '../interfaces/section';\nimport { FormGroup } from '@angular/forms';\nimport { Condition } from '../interfaces/condition';\nimport { ConditionGroup } from '../interfaces/condition-group';\nimport { ConditionType } from '../enums/condition-type.enum';\nimport { ConditionRelationship } from '../enums/condition-relationship.enum';\nimport * as _ from 'lodash';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class FilterService {\n\n constructor() { }\n\n /**\n * Filters an array of sections based on their condition groups.\n * @param sections The array of sections to filter.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns An array of filtered sections with their filtered questions.\n * @author Will Poulson\n */\n public filterSections(sections: Array<Section>, currentQuestionnaireForm: FormGroup | null, additionalData?: Object): Array<Section> {\n const filteredSections = [];\n for (const section of sections) {\n if (this.meetsConditionGroups(section.conditionGroups, currentQuestionnaireForm, additionalData)) {\n const filteredQuestions = [];\n for (const question of section.questions) {\n if (this.meetsConditionGroups(question.conditionGroups, currentQuestionnaireForm, additionalData)) {\n\n if (question.repeaterQuestions) {\n const filteredRepeaterQuestions = [];\n for (const repeaterQuestion of question.repeaterQuestions) {\n if (this.meetsConditionGroups(repeaterQuestion.conditionGroups, currentQuestionnaireForm, additionalData)) {\n filteredRepeaterQuestions.push(repeaterQuestion);\n }\n }\n }\n\n if (question.fetchPath) {\n let options = additionalData[question.fetchPath];\n if (question.fetchSelectors && question.fetchSelectors.length > 0) {\n const values = this.getValuesForArray(question.fetchSelectors, currentQuestionnaireForm, additionalData);\n options = _.get(additionalData[question.fetchPath], values);\n }\n options = this.getFinalFetchArray(options);\n\n if (!question.selectOptions) {\n question.selectOptions = [];\n }\n\n question.selectOptions = question.selectOptions.concat(options);\n }\n\n filteredQuestions.push(question);\n }\n }\n section.questions = filteredQuestions;\n filteredSections.push(section);\n }\n }\n return filteredSections;\n }\n\n private getFinalFetchArray(items: any): Array<Object> {\n if (!items) {\n return null;\n }\n if (!Array.isArray(items)) {\n items = _.keys(items);\n }\n if (items.length <= 0) {\n return null;\n }\n const convertedArray: Array<Object> = [];\n for (const item of items) {\n if (item) {\n if (item instanceof Object && item.value && item.label) {\n convertedArray.push(item);\n } else {\n convertedArray.push({label: this.uppercase(item), value: item});\n }\n }\n }\n return convertedArray;\n }\n\n private uppercase(item: any) {\n return item.charAt(0).toUpperCase() + item.slice(1);\n }\n\n\n /**\n * Checks if each condition groups conditions have been met.\n * @param conditionGroups The array of condition groups.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A boolean stating if the condition groups conditions has been met.\n * @author Will Poulson\n */\n private meetsConditionGroups(\n conditionGroups: Array<ConditionGroup>,\n currentQuestionnaireForm: FormGroup | null,\n additionalData?: Object\n ): boolean {\n if (!conditionGroups || conditionGroups.length === 0) {\n return true;\n }\n return conditionGroups.every((x) => {\n return this.meetsConditionGroup(x, currentQuestionnaireForm, additionalData) === true;\n });\n }\n\n /**\n * Checks if a condition groups conditions have been met.\n * @param conditionGroup The condition group to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A boolean stating if the condition group conditions has been met.\n * @author Will Poulson\n */\n private meetsConditionGroup(\n conditionGroup: ConditionGroup,\n currentQuestionnaireForm: FormGroup | null,\n additionalData?: Object\n ): boolean {\n if (!conditionGroup.conditions || conditionGroup.conditions.length === 0) {\n return true;\n }\n\n const results = [];\n\n for (const condition of conditionGroup.conditions) {\n results.push(this.meetsCondition(condition, currentQuestionnaireForm, additionalData));\n }\n\n switch (conditionGroup.relationship) {\n case ConditionRelationship.Every:\n return results.every((x) => {\n return x === true;\n });\n case ConditionRelationship.Any:\n return !!results.find((x) => {\n return x === true;\n });\n default:\n return true;\n }\n }\n\n /**\n * Checks if a condition has been met.\n * @param condition The condition to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A boolean stating if the condition group conditions has been met.\n * @author Will Poulson\n */\n private meetsCondition(condition: Condition, currentQuestionnaireForm: FormGroup, additionalData?: Object): boolean {\n const v1s: Array<any> = this.getValuesForArray(condition.v1s, currentQuestionnaireForm, additionalData);\n const v2s: Array<any> = this.getValuesForArray(condition.v2s, currentQuestionnaireForm, additionalData);\n\n let result = false;\n\n switch (condition.type) {\n case ConditionType.Excludes:\n result = v1s.filter((v1) => {\n return v2s.indexOf(v1) > -1;\n }).length === 0;\n break;\n case ConditionType.Includes:\n result = v1s.filter((v1) => {\n return v2s.indexOf(v1) > -1;\n }).length !== 0;\n break;\n default:\n for (let v2 of v2s) {\n for (let v1 of v1s) {\n switch (condition.type) {\n case ConditionType.EqualTo:\n v1 = this.getStringForValue(v1);\n v2 = this.getStringForValue(v2);\n if (v1 === v2) { result = true; }\n break;\n case ConditionType.NotEqualTo:\n v1 = this.getStringForValue(v1);\n v2 = this.getStringForValue(v2);\n if (v1 !== v2) { result = true; }\n break;\n case ConditionType.GreaterThan:\n v1 = parseFloat(v1);\n v2 = parseFloat(v2);\n if (v1 >= v2) { result = true; }\n break;\n case ConditionType.LessThan:\n v1 = parseFloat(v1);\n v2 = parseFloat(v2);\n if (v1 <= v2) { result = true; }\n break;\n }\n }\n }\n }\n\n return result;\n }\n\n private getStringForValue(value) {\n switch (value) {\n case null:\n return 'null';\n default:\n return value.toString();\n }\n }\n\n /**\n * Gets the current values for an array of strings.\n * @param paths The array of strings to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns An array of strings/values\n * @author Will Poulson\n */\n private getValuesForArray(paths: Array<string>, currentQuestionnaireForm: FormGroup, additionalData?: Object): Array<any> {\n if (currentQuestionnaireForm) {\n const values = [];\n for (const path of paths) {\n const value = this.getValueForString(path, currentQuestionnaireForm, additionalData);\n values.push(value);\n }\n return values;\n } else {\n return paths;\n }\n }\n\n /**\n * Gets a current value for a string.\n * @param path The string value to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A string/value.\n * @author Will Poulson\n */\n private getValueForString(path: string, currentQuestionnaireForm: FormGroup, additionalData?: Object) {\n if (currentQuestionnaireForm) {\n if (!additionalData) {\n additionalData = {};\n }\n const control = currentQuestionnaireForm.get(path);\n const value = control ? control.value : this.convertStringToValue(path);\n return _.get(additionalData, path, value);\n } else {\n return this.convertStringToValue(path);\n }\n }\n\n /**\n * Converts a string to a value.\n * Eg. true/false.\n * @param path The string value to check for conversion;\n * @returns Either a string or the converted value.\n * @author Will Poulson\n */\n private convertStringToValue(path: string) {\n switch (path) {\n case 'true':\n return true;\n case 'false':\n return false;\n case 'null':\n return null;\n default:\n return path;\n }\n }\n}\n","export enum ValidationType {\n Required = 'required',\n Boolean = 'boolean',\n Number = 'number',\n String = 'string',\n Email = 'email',\n Telephone = 'telephone',\n}\n","import { Injectable } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl, AbstractControl, ValidatorFn, Validators, FormArray } from '@angular/forms';\nimport { Section } from '../interfaces/section';\nimport { Question } from '../interfaces/question';\nimport { Questionnaire } from '../interfaces/questionnaire';\nimport { QuestionType } from '../enums/question-type.enum';\nimport { FilterService } from './filter.service';\nimport { Validator } from '../interfaces/validator';\nimport { ValidationType } from '../enums/validation-type.enum';\nimport * as _ from 'lodash';\nimport { RepeaterQuestion } from '../interfaces/repeater-question';\nimport { ChecklistItem } from '../interfaces/checklist-item';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class FormConstructorService {\n\n constructor(\n private fb: FormBuilder,\n private filterService: FilterService\n ) { }\n\n /**\n * Constructs a form group based on the questionnaire data.\n * This form group has been filtered down based on the conditions of the sections and questions.\n * @param questionnaire The questionnaire data to build the form group on.\n * @returns A filted form group.\n * @author Will Poulson\n */\n public generateFormsForQuestionnaire(\n questionnaire: Questionnaire,\n currentQuestionnaireForm: FormGroup,\n additionalData?: Object,\n skipFilter?: boolean\n ): {sections: Array<Section>; forms: FormGroup} {\n const sections = skipFilter ?\n questionnaire.sections :\n this.filterService.filterSections(questionnaire.sections, currentQuestionnaireForm, additionalData);\n const questionnaireForms = this.generateFormsForSections(sections, currentQuestionnaireForm);\n return {sections: sections, forms: questionnaireForms};\n }\n\n private generateFormsForSections(sections: Array<Section>, currentQuestionnaireForm: FormGroup) {\n const questionnaireForms: FormGroup = this.fb.group({});\n for (const section of sections) {\n const sectionForms = this.generateFormsForSection(section, currentQuestionnaireForm);\n questionnaireForms.addControl(section.name, sectionForms);\n }\n return questionnaireForms;\n }\n\n /**\n * Constructs a form group based on the section data.\n * This form group has been filtered down based on the conditions of the questions.\n * @param section The section data to build the form group on.\n * @returns A filtered form group.\n * @author Will Poulson\n */\n private generateFormsForSection(section: Section, currentQuestionnaireForm: FormGroup): FormGroup {\n const sectionForms: FormGroup = this.fb.group({});\n for (const question of section.questions) {\n const questionControl = this.generateControlForQuestion(question, section, currentQuestionnaireForm);\n sectionForms.addControl(question.name, questionControl);\n }\n return sectionForms;\n }\n\n /**\n * Constructs an astract form control based on the question data.\n * @param question The question data to build the abstract control on.\n * @returns An abstract control.\n * @author Will Poulson\n */\n private generateControlForQuestion(question: Question, section: Section, currentQuestionnaireForm: FormGroup): AbstractControl {\n const convertedValidators = this.convertValidators(question.validators);\n switch (question.type) {\n case QuestionType.Repeater:\n const currentArray = currentQuestionnaireForm ? (currentQuestionnaireForm.get([section.name, question.name]) as FormArray) : false;\n const newArray = currentArray ? currentArray.controls : [];\n return this.fb.array(newArray, convertedValidators);\n case QuestionType.Checklist:\n return this.generateGroupForChecklist(question, convertedValidators);\n default:\n return this.fb.control(null, { validators: convertedValidators, updateOn: 'blur' });\n }\n }\n\n /**\n * Generates the form group for a checklist question.\n * @param question The question. Must be of type checklist or else null is returned.\n * @returns A form group.\n * @author Will Poulson\n */\n private generateGroupForChecklist(question: Question, convertedValidators) {\n if (question.type !== QuestionType.Checklist || question.checklistItems.length === 0) {\n return null;\n }\n\n const checklistForms: FormGroup = this.fb.group({});\n for (const checklistItem of question.checklistItems) {\n const checklistItemControl = this.fb.control(null, convertedValidators);\n checklistForms.addControl(checklistItem.name, checklistItemControl);\n }\n return checklistForms;\n }\n\n\n /**\n * Generates the form template for a repeater question.\n * @param question The question. Must be of type repeater or else null is returned.\n * @returns A form group.\n * @author Will Poulson\n */\n public generateFormsForRepeater(question: Question): FormGroup {\n if (question.type !== QuestionType.Repeater || question.repeaterQuestions.length === 0) {\n console.log('Question isnt a repeater or has no questions, returning null');\n return null;\n }\n\n const repeaterForms: FormGroup = this.fb.group({});\n for (const repeaterQuestion of question.repeaterQuestions) {\n const repeaterQuestionControl = this.generateControlForRepeaterQuestion(repeaterQuestion);\n repeaterForms.addControl(repeaterQuestion.name, repeaterQuestionControl);\n }\n return repeaterForms;\n }\n\n /**\n * Generates a control for a repeaters question.\n * @param repeaterQuestion A repeater question.\n * @returns An abstract control.\n * @author Will Poulson\n */\n private generateControlForRepeaterQuestion(repeaterQuestion: RepeaterQuestion): AbstractControl {\n const convertedValidators = this.convertValidators(repeaterQuestion.validators);\n return this.fb.control(null, { validators: convertedValidators, updateOn: 'blur' });\n }\n\n /**\n * Converts an array of validators into form validators.\n * @param validators The uncoverted array of validators.\n * @returns A convered array of form validators.\n * @author Will Poulson\n */\n private convertValidators(validators: Array<Validator>): Array<ValidatorFn> {\n if (!validators || validators.length === 0) {\n return [];\n }\n const convertedValidators: Array<ValidatorFn> = [];\n for (const validator of validators) {\n const convertedValidator = this.convertValidator(validator);\n if (convertedValidator) {\n convertedValidators.push(convertedValidator);\n }\n }\n return convertedValidators;\n }\n\n /**\n * Converts a single validator into a form validator.\n * @param validator The unconverted validator.\n * @returns A converted form validator.\n * @author Will Poulson\n */\n private convertValidator(validator: Validator): ValidatorFn | null {\n switch (validator.type) {\n case ValidationType.Required:\n return Validators.required;\n default:\n return null;\n }\n }\n\n /**\n * Constructs the forms for repeaters from saved state.\n * @param savedState The saved state to load.\n * @param sections The sections already generated by the form constructor.\n */\n public constructRepeaterFromsFromState(savedState: any, sections: Array<Section>, currentQuestionnaireForm: FormGroup) {\n for (const section of sections) {\n for (const question of section.questions) {\n if (question.type !== QuestionType.Repeater) {\n continue;\n }\n\n const repeaterArray = savedState[section.name][question.name];\n if (!repeaterArray || repeaterArray.length === 0) {\n continue;\n }\n\n const repeaterFormArray = currentQuestionnaireForm.get([section.name, question.name]) as FormArray;\n\n if (repeaterFormArray.controls.length === repeaterArray.length) {\n continue;\n }\n\n for (const repeaterItem of repeaterArray) {\n const repeaterItemTemplate = this.generateFormsForRepeater(question);\n repeaterFormArray.push(repeaterItemTemplate);\n }\n }\n }\n }\n}\n","import { Injectable, Inject, EventEmitter } from '@angular/core';\nimport { FormConstructorService } from './form-constructor.service';\nimport { Questionnaire } from '../interfaces/questionnaire';\nimport { FormGroup, AbstractControl, FormArray, FormBuilder } from '@angular/forms';\nimport { Section } from '../interfaces/section';\nimport { Question } from '../interfaces/question';\nimport { Subscription } from 'rxjs';\nimport * as _ from 'lodash';\nimport { QuestionnaireOptions } from '../interfaces/questionnaire-options';\nimport { QuestionType } from '../enums/question-type.enum';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class QuestionnaireService {\n public dataChangedEvent: EventEmitter<any> = new EventEmitter<any>();\n\n private originalQuestionnaire: Questionnaire;\n\n private currentQuestionnaire: Questionnaire;\n private currentQuestionnaireForm: FormGroup;\n\n private currentSectionName: string;\n private currentQuestionName: string;\n\n private questionnaireValueChangeSubscription: Subscription;\n private questionValueChangeSubscription: Subscription;\n\n private additionalData: Object;\n\n private skippable = false;\n\n constructor(\n private formConstuctor: FormConstructorService,\n @Inject('options') private options: QuestionnaireOptions\n ) { }\n\n /**\n * Loads a questionnaire from data.\n * @param questionnaire The questionnaire data to load, often parsed JSON from the editor.\n * @param savedState The saved state of the questionnaire, often from localstorage.\n * @returns null\n * @author Will Poulson\n */\n public async loadQuestionnaire(questionnaire: Questionnaire, savedState?: Object, additionalData?: Object): Promise<any> {\n this.originalQuestionnaire = _.cloneDeep(questionnaire);\n this.currentQuestionnaire = _.cloneDeep(questionnaire);\n\n this.additionalData = additionalData;\n\n if (savedState && Object.keys(savedState).length > 0) {\n const newData = this.formConstuctor.generateFormsForQuestionnaire(\n _.cloneDeep(this.originalQuestionnaire),\n this.currentQuestionnaireForm,\n this.additionalData,\n true\n );\n this.formConstuctor.constructRepeaterFromsFromState(savedState, newData.sections, newData.forms);\n this.currentQuestionnaireForm = newData.forms;\n this.currentQuestionnaireForm.patchValue(savedState);\n }\n\n await this.updateQuestionnaire(savedState);\n\n for (const section of this.currentQuestionnaire.sections) {\n for (const question of section.questions) {\n const control = this.currentQuestionnaireForm.get([section.name, question.name]);\n if (!control.value && question.defaultValue) {\n control.setValue(question.defaultValue);\n }\n }\n }\n\n if (this.options.skipToFirstSection) {\n this.currentSectionName = Object.keys(this.currentQuestionnaireForm.controls)[0];\n }\n\n if (this.options.skipToFirstQuestion) {\n this.currentQuestionName = Object.keys(this.currentSection.formGroup.controls)[0];\n }\n\n return;\n }\n\n /**\n * Updates the current questionnaire, used when a value is updated to check conditions.\n * @param savedState The saved state of the questionnaire, often from localstorage.\n * @returns null\n * @author Will Poulson\n */\n public updateQuestionnaire(savedState?: Object): Promise<any> {\n const newData = this.formConstuctor.generateFormsForQuestionnaire(\n _.cloneDeep(this.originalQuestionnaire),\n this.currentQuestionnaireForm,\n this.additionalData\n );\n this.currentQuestionnaireForm = newData.forms;\n this.currentQuestionnaire.sections = newData.sections;\n\n if (savedState && Object.keys(savedState).length > 0) {\n this.currentQuestionnaireForm.patchValue(savedState);\n }\n\n if (this.questionnaireValueChangeSubscription) {\n this.questionnaireValueChangeSubscription.unsubscribe();\n }\n\n if (this.questionValueChangeSubscription) {\n this.questionValueChangeSubscription.unsubscribe();\n }\n\n this.questionnaireValueChangeSubscription = this.currentQuestionnaireForm.valueChanges.subscribe(() => {\n this.dataChangedEvent.emit();\n this.updateQuestionnaire(this.currentQuestionnaireForm.getRawValue());\n });\n\n if (this.currentQuestion) {\n this.questionValueChangeSubscription = this.currentQuestion.formControl.valueChanges.subscribe(() => {\n this.clearFields(this.currentQuestion.data.clearfields);\n });\n }\n\n return;\n }\n\n public get isValid() {\n return this.currentQuestionnaireForm.valid;\n }\n\n public sectionValid(name: string) {\n return this.currentQuestionnaireForm.get(name).valid;\n }\n\n /**\n * Clears all the fields parsed\n * @param clearfields An array of strings, paths to clear.\n * @author Will Poulson\n */\n private clearFields(clearfields: Array<string>) {\n if (!clearfields || clearfields.length === 0) {\n return;\n }\n\n for (const clearfield of clearfields) {\n const control = this.currentQuestionnaireForm.get(clearfield);\n\n if (control) {\n control.reset(undefined);\n }\n }\n }\n\n /**\n * Unloads the current questionnaire.\n * Useful when exiting a questionnaire page or completing a questionnaire.\n * @author Will Poulson\n */\n public unloadQuestionnaire() {\n this.originalQuestionnaire = undefined;\n this.currentQuestionnaireForm = undefined;\n this.currentQuestionnaire = undefined;\n this.currentSectionName = undefined;\n this.currentQuestionName = undefined;\n this.additionalData = undefined;\n }\n\n /**\n * Gets the current selected section.\n * @returns An object containing the section data and the related form group.\n * @author Will Poulson\n */\n public get currentSection(): { data: Section; formGroup: FormGroup; } | null {\n if (!this.currentSectionName) {\n return null;\n }\n\n const data = this.currentQuestionnaire.sections.find((x) => {\n return x.name === this.currentSectionName;\n });\n\n if (!data) {\n return null;\n }\n\n return {\n data: data,\n formGroup: this.currentQuestionnaireForm.get(data.name) as FormGroup\n };\n }\n\n /**\n * Gets all the avaialble sections.\n * @returns An array of all avaialble sections.\n * @author Will Poulson\n */\n public get availableSections(): Array<Section> {\n if (!this.currentQuestionnaire || !this.currentQuestionnaire.sections) {\n return [];\n }\n return this.currentQuestionnaire.sections;\n }\n\n /**\n * Gets the current data for the entire questionnaire.\n * @returns An object of data.\n * @author Will Poulson\n */\n public get currentData() {\n return this.currentQuestionnaireForm.getRawValue();\n }\n\n\n /**\n * Gets the current selected question.\n * @returns An object containing the question data and the related form control.\n * @author Will Poulson\n */\n public get currentQuestion(): { data: Question; formControl: AbstractControl; } | null {\n if (!this.currentQuestionName) {\n return null;\n }\n\n const data = this.currentSection.data.questions.find((x) => {\n return x.name === this.currentQuestionName;\n });\n\n if (!data) {\n return null;\n }\n\n return {\n data: data,\n formControl: this.currentSection.formGroup.get(data.name) as AbstractControl\n };\n }\n\n /**\n * Navigates to the next question.\n * If there is no question to navigate to it will reject with a out of bounds exception.\n * If allowSkipRequiredField is false then it will reject if the current question is invalid.\n * If emitSectionFinishEvent is true then it will emit an event if it's navigating past the length of questions.\n * @returns A promise which will resolve when the question has been navigated to.\n * @author Will Poulson\n */\n public nextQuestion() {\n return new Promise((resolve, reject) => {\n if (!this.options.allowSkipRequiredField) {\n if (!this.currentQuestion.formControl.valid) {\n return reject('Current question is invalid');\n }\n }\n\n this.getCurrentQuestionIndex().then((currentIndex) => {\n const newIndex = currentIndex + 1;\n\n this.navigateToQuestion(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Navigates to the previous question.\n * If there is no question to navigate to it will reject with a out of bounds exception.\n * If allowNavigateBackwards is false then it will reject.\n * @returns A promise which will resolve when the question has been navigated to.\n * @author Will Poulson\n */\n public prevQuestion() {\n return new Promise((resolve, reject) => {\n if (!this.options.allowNavigateBackwards) {\n return reject('This questionnaire does not allow for backwards navigation');\n }\n\n this.getCurrentQuestionIndex().then((currentIndex) => {\n const newIndex = currentIndex - 1;\n\n this.navigateToQuestion(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Gets the current questions index.\n * @returns A promise which resolves a number.\n * @author Will Poulson\n */\n private getCurrentQuestionIndex(): Promise<number> {\n return new Promise((resolve, reject) => {\n const currentIndex = this.currentSection.data.questions.indexOf(this.currentQuestion.data);\n\n if (currentIndex === -1) {\n return reject('Could not find current question');\n }\n\n return resolve(currentIndex);\n });\n }\n\n /**\n * Checks a question is in bounds then navigates to it.\n * @param index The index to navigate to.\n * @returns A promise which will resolve when the question has been navigated to.\n * @author Will Poulson\n */\n public navigateToQuestion(index: number) {\n return new Promise((resolve, reject) => {\n if (this.currentSection.data.questions.length - 1 < index || index < 0) {\n return reject('Out of bounds exception');\n }\n\n this.currentQuestionName = this.currentSection.data.questions[index].name;\n return resolve();\n });\n }\n\n /**\n * Navigates to the next section.\n * @returns A promise which will resolve when the section has been navigated to.\n * @author Will Poulson\n */\n public nextSection() {\n return new Promise((resolve, reject) => {\n this.getCurrentSectionIndex().then((currentIndex) => {\n const newIndex = currentIndex + 1;\n this.navigateToSection(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Navigates to the previous section.\n * @returns A promise which will resolve when the section has been navigated to.\n * @author Will Poulson\n */\n public prevSection() {\n return new Promise((resolve, reject) => {\n this.getCurrentSectionIndex().then((currentIndex) => {\n const newIndex = currentIndex - 1;\n this.navigateToQuestion(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Gets the current section index.\n * @returns A promise which resolves a number.\n * @author Will Poulson\n */\n private getCurrentSectionIndex(): Promise<number> {\n return new Promise((resolve, reject) => {\n const currentIndex = this.currentQuestionnaire.sections.indexOf(this.currentSection.data);\n\n if (currentIndex === -1) {\n return reject('Could not find current section');\n }\n\n return resolve(currentIndex);\n });\n }\n\n /**\n * Checks a section is in bounds then navigates to it.\n * @param index The index to navigate to.\n * @returns A promise which will resolve when the section has been navigated to.\n * @author Will Poulson\n */\n public navigateToSection(index: number) {\n return new Promise((resolve, reject) => {\n if (this.currentQuestionnaire.sections.length - 1 < index || index < 0) {\n return reject('Out of bounds exception');\n }\n\n this.currentSectionName = this.currentQuestionnaire.sections[index].name;\n return resolve();\n });\n }\n\n /**\n * Answers the current question with the parsed value.\n * @param answer The value to answer the question with.\n * @author Will Poulson\n */\n public answerCurrentQuestion(answer: any, sendToNextQuestion?: boolean) {\n this.currentQuestion.formControl.setValue(answer);\n if (sendToNextQuestion && this.skippable) { // Timeout to prevent skipping glitch.\n this.skippable = false;\n setTimeout(() => {\n this.nextQuestion();\n this.skippable = true;\n }, 150);\n }\n }\n\n /**\n * Adds a repeater item to the current question.\n * Current question must be of type Repeater.\n * @returns A promise which resolves when the repeater item has been added.\n * @author Will Poulson\n */\n public addRepeaterItem() {\n return new Promise((resolve, reject) => {\n if (this.currentQuestion.data.type !== QuestionType.Repeater) {\n return reject(`Current question isn't a repeater`);\n }\n const repeaterForm = this.formConstuctor.generateFormsForRepeater(this.currentQuestion.data);\n\n if (!repeaterForm) {\n return reject(`Repeater template failed to generate. May be due to the repeater having no items in the editor.`);\n }\n\n\n if (!(this.currentQuestion.formControl instanceof FormArray)) {\n return reject(`The current questions control isn't of type FormArray`);\n }\n\n this.currentQuestion.formControl.push(repeaterForm);\n return resolve();\n });\n }\n\n /**\n * Removes a repeater item on the current question.\n * Current question must be of type Repeater.\n * @param index The index at which to remove.\n * @returns A promise which resolves when the repeater item has been removed.\n * @author Will Poulson\n */\n public removeRepeaterItem(index: number) {\n return new Promise((resolve, reject) => {\n if (this.currentQuestion.data.type !== QuestionType.Repeater) {\n return reject(`Current question isn't a repeater`);\n }\n\n if (!(this.currentQuestion.formControl instanceof FormArray)) {\n return reject(`The current questions control isn't of type FormArray`);\n }\n\n this.currentQuestion.formControl.removeAt(index);\n return resolve();\n });\n }\n\n /**\n * Returns the display text for a given repeater item\n * @param index The index at which to get the label for.\n * @returns A string which is the display text.\n * @author Will Poulson\n */\n public getRepeaterItemLabel(index: number): string {\n if (!this.currentQuestion.formControl || !(this.currentQuestion.formControl instanceof FormArray)) {\n return '';\n }\n\n const repeaterItem = this.currentQuestion.formControl.controls[index];\n\n if (!repeaterItem) {\n return '';\n }\n\n const template = this.currentQuestion.data.repeaterDisplayName;\n const splitTemplate = template.split(' ');\n\n const displayArray = [];\n for (const templateItem of splitTemplate) {\n if (templateItem.match(/\\[.*?\\]/)) {\n const path = templateItem.replace(/[\\[\\]']+/g, '');\n const item = repeaterItem.get(path);\n const value = item.value ? item.value : '?';\n displayArray.push(value);\n } else {\n displayArray.push(templateItem);\n }\n }\n\n const display = displayArray.join(' ');\n return display;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { FormConstructorService } from './services/form-constructor.service';\nimport { QuestionnaireService } from './services/questionnaire.service';\nimport { FilterService } from './services/filter.service';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { QuestionnaireOptions } from './interfaces/questionnaire-options';\nimport { ModuleWithProviders } from '@angular/compiler/src/core';\n\n@NgModule({\n declarations: [],\n providers: [\n FormConstructorService,\n FilterService\n ],\n imports: [\n FormsModule,\n ReactiveFormsModule\n ],\n})\nexport class GgQuestionnaireV2Module {\n public static forRoot(options: QuestionnaireOptions): ModuleWithProviders {\n return {\n ngModule: GgQuestionnaireV2Module,\n providers: [\n QuestionnaireService,\n {\n provide: 'options',\n useValue: options\n }\n ]\n };\n }\n}\n","export enum InputType {\n Text = 'text',\n Number = 'number',\n Email = 'email',\n Telephone = 'tel',\n Password = 'password',\n Color = 'color',\n Date = 'date',\n DateTimeLocal = 'datetime-local',\n Time = 'time',\n Month = 'month',\n Week = 'week',\n}\n","export enum RepeaterQuestionType {\n Input = 'input',\n Select = 'select',\n}\n"],"names":["_.get","_.keys","_.cloneDeep"],"mappings":"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"}
1
+ {"version":3,"file":"glowgreen-gg-questionnaire-v2.js","sources":["ng://@glowgreen/gg-questionnaire-v2/lib/enums/question-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/condition-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/condition-relationship.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/services/filter.service.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/validation-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/services/form-constructor.service.ts","ng://@glowgreen/gg-questionnaire-v2/lib/services/questionnaire.service.ts","ng://@glowgreen/gg-questionnaire-v2/lib/gg-questionnaire-v2.module.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/input-type.enum.ts","ng://@glowgreen/gg-questionnaire-v2/lib/enums/repeater-question-type.enum.ts"],"sourcesContent":["export enum QuestionType {\n Input = 'input',\n Select = 'select',\n Textarea = 'textarea',\n Repeater = 'repeater',\n Checklist = 'checklist',\n Attachment = 'attachment',\n Upload = 'upload',\n Signature = 'signature',\n}\n","export enum ConditionType {\n EqualTo = 'equalTo',\n NotEqualTo = 'notEqualTo',\n LessThan = 'lessThan',\n GreaterThan = 'greaterThan',\n Includes = 'includes',\n Excludes = 'excludes'\n}\n","export enum ConditionRelationship {\n Every = 'every',\n Any = 'any',\n}\n","import { Injectable } from '@angular/core';\nimport { Section } from '../interfaces/section';\nimport { FormGroup } from '@angular/forms';\nimport { Condition } from '../interfaces/condition';\nimport { ConditionGroup } from '../interfaces/condition-group';\nimport { ConditionType } from '../enums/condition-type.enum';\nimport { ConditionRelationship } from '../enums/condition-relationship.enum';\nimport * as _ from 'lodash';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class FilterService {\n\n constructor() { }\n\n /**\n * Filters an array of sections based on their condition groups.\n * @param sections The array of sections to filter.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns An array of filtered sections with their filtered questions.\n * @author Will Poulson\n */\n public filterSections(sections: Array<Section>, currentQuestionnaireForm: FormGroup | null, additionalData?: Object): Array<Section> {\n const filteredSections = [];\n for (const section of sections) {\n if (!this.meetsConditionGroups(section.conditionGroups, currentQuestionnaireForm, additionalData)) {\n continue;\n }\n\n const filteredQuestions = [];\n for (const question of section.questions) {\n if (!this.meetsConditionGroups(question.conditionGroups, currentQuestionnaireForm, additionalData)) {\n continue;\n }\n\n if (question.repeaterQuestions) {\n const filteredRepeaterQuestions = [];\n for (const repeaterQuestion of question.repeaterQuestions) {\n if (this.meetsConditionGroups(repeaterQuestion.conditionGroups, currentQuestionnaireForm, additionalData)) {\n filteredRepeaterQuestions.push(repeaterQuestion);\n }\n }\n }\n\n if (question.fetchPath) {\n let options = additionalData[question.fetchPath];\n if (question.fetchSelectors && question.fetchSelectors.length > 0) {\n const values = this.getValuesForArray(question.fetchSelectors, currentQuestionnaireForm, additionalData);\n options = _.get(additionalData[question.fetchPath], values);\n }\n options = this.getFinalFetchArray(options);\n\n if (!question.selectOptions) {\n question.selectOptions = [];\n }\n\n question.selectOptions = question.selectOptions.concat(options);\n }\n\n filteredQuestions.push(question);\n }\n\n section.questions = filteredQuestions;\n filteredSections.push(section);\n }\n\n return filteredSections;\n }\n\n private getFinalFetchArray(items: any): Array<Object> {\n if (!items) {\n return null;\n }\n if (!Array.isArray(items)) {\n items = _.keys(items);\n }\n if (items.length <= 0) {\n return null;\n }\n const convertedArray: Array<Object> = [];\n for (const item of items) {\n if (item) {\n if (item instanceof Object && item.value && item.label) {\n convertedArray.push(item);\n } else {\n convertedArray.push({label: this.uppercase(item), value: item});\n }\n }\n }\n return convertedArray;\n }\n\n private uppercase(item: any) {\n return item.charAt(0).toUpperCase() + item.slice(1);\n }\n\n\n /**\n * Checks if each condition groups conditions have been met.\n * @param conditionGroups The array of condition groups.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A boolean stating if the condition groups conditions has been met.\n * @author Will Poulson\n */\n private meetsConditionGroups(\n conditionGroups: Array<ConditionGroup>,\n currentQuestionnaireForm: FormGroup | null,\n additionalData?: Object\n ): boolean {\n if (!conditionGroups || conditionGroups.length === 0) {\n return true;\n }\n return conditionGroups.every((x) => {\n return this.meetsConditionGroup(x, currentQuestionnaireForm, additionalData) === true;\n });\n }\n\n /**\n * Checks if a condition groups conditions have been met.\n * @param conditionGroup The condition group to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A boolean stating if the condition group conditions has been met.\n * @author Will Poulson\n */\n private meetsConditionGroup(\n conditionGroup: ConditionGroup,\n currentQuestionnaireForm: FormGroup | null,\n additionalData?: Object\n ): boolean {\n if (!conditionGroup.conditions || conditionGroup.conditions.length === 0) {\n return true;\n }\n\n const results = [];\n\n for (const condition of conditionGroup.conditions) {\n results.push(this.meetsCondition(condition, currentQuestionnaireForm, additionalData));\n }\n\n switch (conditionGroup.relationship) {\n case ConditionRelationship.Every:\n return results.every((x) => {\n return x === true;\n });\n case ConditionRelationship.Any:\n return !!results.find((x) => {\n return x === true;\n });\n default:\n return true;\n }\n }\n\n /**\n * Checks if a condition has been met.\n * @param condition The condition to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A boolean stating if the condition group conditions has been met.\n * @author Will Poulson\n */\n private meetsCondition(condition: Condition, currentQuestionnaireForm: FormGroup, additionalData?: Object): boolean {\n const v1s: Array<any> = this.getValuesForArray(condition.v1s, currentQuestionnaireForm, additionalData);\n const v2s: Array<any> = this.getValuesForArray(condition.v2s, currentQuestionnaireForm, additionalData);\n\n let result = false;\n\n switch (condition.type) {\n case ConditionType.Excludes:\n result = v1s.filter((v1) => {\n return v2s.indexOf(v1) > -1;\n }).length === 0;\n break;\n case ConditionType.Includes:\n result = v1s.filter((v1) => {\n return v2s.indexOf(v1) > -1;\n }).length !== 0;\n break;\n default:\n for (let v2 of v2s) {\n for (let v1 of v1s) {\n switch (condition.type) {\n case ConditionType.EqualTo:\n v1 = this.getStringForValue(v1);\n v2 = this.getStringForValue(v2);\n if (v1 === v2) { result = true; }\n break;\n case ConditionType.NotEqualTo:\n v1 = this.getStringForValue(v1);\n v2 = this.getStringForValue(v2);\n if (v1 !== v2) { result = true; }\n break;\n case ConditionType.GreaterThan:\n v1 = parseFloat(v1);\n v2 = parseFloat(v2);\n if (v1 >= v2) { result = true; }\n break;\n case ConditionType.LessThan:\n v1 = parseFloat(v1);\n v2 = parseFloat(v2);\n if (v1 <= v2) { result = true; }\n break;\n }\n }\n }\n }\n\n return result;\n }\n\n private getStringForValue(value) {\n switch (value) {\n case null:\n return 'null';\n default:\n return value.toString();\n }\n }\n\n /**\n * Gets the current values for an array of strings.\n * @param paths The array of strings to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns An array of strings/values\n * @author Will Poulson\n */\n private getValuesForArray(paths: Array<string>, currentQuestionnaireForm: FormGroup, additionalData?: Object): Array<any> {\n if (currentQuestionnaireForm) {\n const values = [];\n for (const path of paths) {\n const value = this.getValueForString(path, currentQuestionnaireForm, additionalData);\n values.push(value);\n }\n return values;\n } else {\n return paths;\n }\n }\n\n /**\n * Gets a current value for a string.\n * @param path The string value to check.\n * @param currentQuestionnaireForm The current form data, can be null/undefined.\n * @returns A string/value.\n * @author Will Poulson\n */\n private getValueForString(path: string, currentQuestionnaireForm: FormGroup, additionalData?: Object) {\n if (currentQuestionnaireForm) {\n if (!additionalData) {\n additionalData = {};\n }\n const control = currentQuestionnaireForm.get(path);\n const value = control ? control.value : this.convertStringToValue(path);\n return _.get(additionalData, path, value);\n } else {\n return this.convertStringToValue(path);\n }\n }\n\n /**\n * Converts a string to a value.\n * Eg. true/false.\n * @param path The string value to check for conversion;\n * @returns Either a string or the converted value.\n * @author Will Poulson\n */\n private convertStringToValue(path: string) {\n switch (path) {\n case 'true':\n return true;\n case 'false':\n return false;\n case 'null':\n return null;\n default:\n return path;\n }\n }\n}\n","export enum ValidationType {\n Required = 'required',\n Boolean = 'boolean',\n Number = 'number',\n String = 'string',\n Email = 'email',\n Telephone = 'telephone',\n}\n","import { Injectable } from '@angular/core';\nimport { FormBuilder, FormGroup, FormControl, AbstractControl, ValidatorFn, Validators, FormArray } from '@angular/forms';\nimport { Section } from '../interfaces/section';\nimport { Question } from '../interfaces/question';\nimport { Questionnaire } from '../interfaces/questionnaire';\nimport { QuestionType } from '../enums/question-type.enum';\nimport { FilterService } from './filter.service';\nimport { Validator } from '../interfaces/validator';\nimport { ValidationType } from '../enums/validation-type.enum';\nimport * as _ from 'lodash';\nimport { RepeaterQuestion } from '../interfaces/repeater-question';\nimport { ChecklistItem } from '../interfaces/checklist-item';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class FormConstructorService {\n\n constructor(\n private fb: FormBuilder,\n private filterService: FilterService\n ) { }\n\n /**\n * Constructs a form group based on the questionnaire data.\n * This form group has been filtered down based on the conditions of the sections and questions.\n * @param questionnaire The questionnaire data to build the form group on.\n * @returns A filted form group.\n * @author Will Poulson\n */\n public generateFormsForQuestionnaire(\n questionnaire: Questionnaire,\n currentQuestionnaireForm: FormGroup,\n additionalData?: Object,\n skipFilter?: boolean\n ): {sections: Array<Section>; forms: FormGroup} {\n const sections = skipFilter ?\n questionnaire.sections :\n this.filterService.filterSections(questionnaire.sections, currentQuestionnaireForm, additionalData);\n const questionnaireForms = this.generateFormsForSections(sections, currentQuestionnaireForm);\n return {sections: sections, forms: questionnaireForms};\n }\n\n private generateFormsForSections(sections: Array<Section>, currentQuestionnaireForm: FormGroup) {\n const questionnaireForms: FormGroup = this.fb.group({});\n for (const section of sections) {\n const sectionForms = this.generateFormsForSection(section, currentQuestionnaireForm);\n questionnaireForms.addControl(section.name, sectionForms);\n }\n return questionnaireForms;\n }\n\n /**\n * Constructs a form group based on the section data.\n * This form group has been filtered down based on the conditions of the questions.\n * @param section The section data to build the form group on.\n * @returns A filtered form group.\n * @author Will Poulson\n */\n private generateFormsForSection(section: Section, currentQuestionnaireForm: FormGroup): FormGroup {\n const sectionForms: FormGroup = this.fb.group({});\n for (const question of section.questions) {\n const questionControl = this.generateControlForQuestion(question, section, currentQuestionnaireForm);\n sectionForms.addControl(question.name, questionControl);\n }\n return sectionForms;\n }\n\n /**\n * Constructs an astract form control based on the question data.\n * @param question The question data to build the abstract control on.\n * @returns An abstract control.\n * @author Will Poulson\n */\n private generateControlForQuestion(question: Question, section: Section, currentQuestionnaireForm: FormGroup): AbstractControl {\n const convertedValidators = this.convertValidators(question.validators);\n switch (question.type) {\n case QuestionType.Repeater:\n const currentArray = currentQuestionnaireForm ? (currentQuestionnaireForm.get([section.name, question.name]) as FormArray) : false;\n return currentArray ? currentArray : this.fb.array([], convertedValidators);\n case QuestionType.Checklist:\n return this.generateGroupForChecklist(question, convertedValidators);\n default:\n return this.fb.control(null, { validators: convertedValidators, updateOn: 'blur' });\n }\n }\n\n /**\n * Generates the form group for a checklist question.\n * @param question The question. Must be of type checklist or else null is returned.\n * @returns A form group.\n * @author Will Poulson\n */\n private generateGroupForChecklist(question: Question, convertedValidators) {\n if (question.type !== QuestionType.Checklist || question.checklistItems.length === 0) {\n return null;\n }\n\n const checklistForms: FormGroup = this.fb.group({});\n for (const checklistItem of question.checklistItems) {\n const checklistItemControl = this.fb.control(null, convertedValidators);\n checklistForms.addControl(checklistItem.name, checklistItemControl);\n }\n return checklistForms;\n }\n\n\n /**\n * Generates the form template for a repeater question.\n * @param question The question. Must be of type repeater or else null is returned.\n * @returns A form group.\n * @author Will Poulson\n */\n public generateFormsForRepeater(question: Question): FormGroup {\n if (question.type !== QuestionType.Repeater || question.repeaterQuestions.length === 0) {\n console.log('Question isnt a repeater or has no questions, returning null');\n return null;\n }\n\n const repeaterForms: FormGroup = this.fb.group({});\n for (const repeaterQuestion of question.repeaterQuestions) {\n const repeaterQuestionControl = this.generateControlForRepeaterQuestion(repeaterQuestion);\n repeaterForms.addControl(repeaterQuestion.name, repeaterQuestionControl);\n }\n return repeaterForms;\n }\n\n /**\n * Generates a control for a repeaters question.\n * @param repeaterQuestion A repeater question.\n * @returns An abstract control.\n * @author Will Poulson\n */\n private generateControlForRepeaterQuestion(repeaterQuestion: RepeaterQuestion): AbstractControl {\n const convertedValidators = this.convertValidators(repeaterQuestion.validators);\n return this.fb.control(null, { validators: convertedValidators, updateOn: 'blur' });\n }\n\n /**\n * Converts an array of validators into form validators.\n * @param validators The uncoverted array of validators.\n * @returns A convered array of form validators.\n * @author Will Poulson\n */\n private convertValidators(validators: Array<Validator>): Array<ValidatorFn> {\n if (!validators || validators.length === 0) {\n return [];\n }\n const convertedValidators: Array<ValidatorFn> = [];\n for (const validator of validators) {\n const convertedValidator = this.convertValidator(validator);\n if (convertedValidator) {\n convertedValidators.push(convertedValidator);\n }\n }\n return convertedValidators;\n }\n\n /**\n * Converts a single validator into a form validator.\n * @param validator The unconverted validator.\n * @returns A converted form validator.\n * @author Will Poulson\n */\n private convertValidator(validator: Validator): ValidatorFn | null {\n switch (validator.type) {\n case ValidationType.Required:\n return Validators.required;\n default:\n return null;\n }\n }\n\n /**\n * Constructs the forms for repeaters from saved state.\n * @param savedState The saved state to load.\n * @param sections The sections already generated by the form constructor.\n */\n public constructRepeaterFromsFromState(savedState: any, sections: Array<Section>, currentQuestionnaireForm: FormGroup) {\n for (const section of sections) {\n for (const question of section.questions) {\n if (question.type !== QuestionType.Repeater) {\n continue;\n }\n\n const repeaterArray = savedState[section.name][question.name];\n if (!repeaterArray || repeaterArray.length === 0) {\n continue;\n }\n\n const repeaterFormArray = currentQuestionnaireForm.get([section.name, question.name]) as FormArray;\n\n if (repeaterFormArray.controls.length === repeaterArray.length) {\n continue;\n }\n\n // For each item that used to be there push a new empty template there to be populated.\n for (const repeaterItem of repeaterArray) {\n const repeaterItemTemplate = this.generateFormsForRepeater(question);\n repeaterFormArray.push(repeaterItemTemplate);\n }\n }\n }\n }\n}\n","import { Injectable, Inject, EventEmitter } from '@angular/core';\nimport { FormConstructorService } from './form-constructor.service';\nimport { Questionnaire } from '../interfaces/questionnaire';\nimport { FormGroup, AbstractControl, FormArray, FormBuilder } from '@angular/forms';\nimport { Section } from '../interfaces/section';\nimport { Question } from '../interfaces/question';\nimport { Subscription } from 'rxjs';\nimport * as _ from 'lodash';\nimport { QuestionnaireOptions } from '../interfaces/questionnaire-options';\nimport { QuestionType } from '../enums/question-type.enum';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class QuestionnaireService {\n public dataChangedEvent: EventEmitter<any> = new EventEmitter<any>();\n\n private originalQuestionnaire: Questionnaire;\n\n private currentQuestionnaire: Questionnaire;\n private currentQuestionnaireForm: FormGroup;\n\n private currentSectionName: string;\n private currentQuestionName: string;\n\n private questionnaireValueChangeSubscription: Subscription;\n private questionValueChangeSubscription: Subscription;\n\n private additionalData: Object;\n\n private skippable = false;\n\n constructor(\n private formConstuctor: FormConstructorService,\n @Inject('options') private options: QuestionnaireOptions\n ) { }\n\n /**\n * Loads a questionnaire from data.\n * @param questionnaire The questionnaire data to load, often parsed JSON from the editor.\n * @param savedState The saved state of the questionnaire, often from localstorage.\n * @returns null\n * @author Will Poulson\n */\n public async loadQuestionnaire(questionnaire: Questionnaire, savedState?: Object, additionalData?: Object): Promise<any> {\n this.originalQuestionnaire = _.cloneDeep(questionnaire);\n this.currentQuestionnaire = _.cloneDeep(questionnaire);\n\n this.additionalData = additionalData;\n\n if (savedState && Object.keys(savedState).length > 0) {\n const newData = this.formConstuctor.generateFormsForQuestionnaire(\n _.cloneDeep(this.originalQuestionnaire),\n this.currentQuestionnaireForm,\n this.additionalData,\n true\n );\n this.formConstuctor.constructRepeaterFromsFromState(savedState, newData.sections, newData.forms);\n this.currentQuestionnaireForm = newData.forms;\n this.currentQuestionnaireForm.patchValue(savedState);\n }\n\n await this.updateQuestionnaire(savedState);\n\n for (const section of this.currentQuestionnaire.sections) {\n for (const question of section.questions) {\n const control = this.currentQuestionnaireForm.get([section.name, question.name]);\n if (!control.value && question.defaultValue) {\n control.setValue(question.defaultValue);\n }\n }\n }\n\n if (this.options.skipToFirstSection) {\n this.currentSectionName = Object.keys(this.currentQuestionnaireForm.controls)[0];\n }\n\n if (this.options.skipToFirstQuestion) {\n this.currentQuestionName = Object.keys(this.currentSection.formGroup.controls)[0];\n }\n\n return;\n }\n\n /**\n * Updates the current questionnaire, used when a value is updated to check conditions.\n * @param savedState The saved state of the questionnaire, often from localstorage.\n * @returns null\n * @author Will Poulson\n */\n public updateQuestionnaire(savedState?: Object): Promise<any> {\n const newData = this.formConstuctor.generateFormsForQuestionnaire(\n _.cloneDeep(this.originalQuestionnaire),\n this.currentQuestionnaireForm,\n this.additionalData\n );\n this.currentQuestionnaireForm = newData.forms;\n this.currentQuestionnaire.sections = newData.sections;\n\n if (savedState && Object.keys(savedState).length > 0) {\n this.currentQuestionnaireForm.patchValue(savedState);\n }\n\n if (this.questionnaireValueChangeSubscription) {\n this.questionnaireValueChangeSubscription.unsubscribe();\n }\n\n if (this.questionValueChangeSubscription) {\n this.questionValueChangeSubscription.unsubscribe();\n }\n\n this.questionnaireValueChangeSubscription = this.currentQuestionnaireForm.valueChanges.subscribe(() => {\n this.dataChangedEvent.emit();\n this.updateQuestionnaire(this.currentQuestionnaireForm.getRawValue());\n });\n\n if (this.currentQuestion) {\n this.questionValueChangeSubscription = this.currentQuestion.formControl.valueChanges.subscribe(() => {\n this.clearFields(this.currentQuestion.data.clearfields);\n });\n }\n\n return;\n }\n\n public get isValid() {\n return this.currentQuestionnaireForm.valid;\n }\n\n public sectionValid(name: string) {\n return this.currentQuestionnaireForm.get(name).valid;\n }\n\n /**\n * Clears all the fields parsed\n * @param clearfields An array of strings, paths to clear.\n * @author Will Poulson\n */\n private clearFields(clearfields: Array<string>) {\n if (!clearfields || clearfields.length === 0) {\n return;\n }\n\n for (const clearfield of clearfields) {\n const control = this.currentQuestionnaireForm.get(clearfield);\n\n if (control) {\n control.reset(undefined);\n }\n }\n }\n\n /**\n * Unloads the current questionnaire.\n * Useful when exiting a questionnaire page or completing a questionnaire.\n * @author Will Poulson\n */\n public unloadQuestionnaire() {\n this.originalQuestionnaire = undefined;\n this.currentQuestionnaireForm = undefined;\n this.currentQuestionnaire = undefined;\n this.currentSectionName = undefined;\n this.currentQuestionName = undefined;\n this.additionalData = undefined;\n }\n\n /**\n * Gets the current selected section.\n * @returns An object containing the section data and the related form group.\n * @author Will Poulson\n */\n public get currentSection(): { data: Section; formGroup: FormGroup; } | null {\n if (!this.currentSectionName) {\n return null;\n }\n\n const data = this.currentQuestionnaire.sections.find((x) => {\n return x.name === this.currentSectionName;\n });\n\n if (!data) {\n return null;\n }\n\n return {\n data: data,\n formGroup: this.currentQuestionnaireForm.get(data.name) as FormGroup\n };\n }\n\n /**\n * Gets all the avaialble sections.\n * @returns An array of all avaialble sections.\n * @author Will Poulson\n */\n public get availableSections(): Array<Section> {\n if (!this.currentQuestionnaire || !this.currentQuestionnaire.sections) {\n return [];\n }\n return this.currentQuestionnaire.sections;\n }\n\n /**\n * Gets the current data for the entire questionnaire.\n * @returns An object of data.\n * @author Will Poulson\n */\n public get currentData() {\n return this.currentQuestionnaireForm.getRawValue();\n }\n\n\n /**\n * Gets the current selected question.\n * @returns An object containing the question data and the related form control.\n * @author Will Poulson\n */\n public get currentQuestion(): { data: Question; formControl: AbstractControl; } | null {\n if (!this.currentQuestionName) {\n return null;\n }\n\n const data = this.currentSection.data.questions.find((x) => {\n return x.name === this.currentQuestionName;\n });\n\n if (!data) {\n return null;\n }\n\n return {\n data: data,\n formControl: this.currentSection.formGroup.get(data.name) as AbstractControl\n };\n }\n\n /**\n * Navigates to the next question.\n * If there is no question to navigate to it will reject with a out of bounds exception.\n * If allowSkipRequiredField is false then it will reject if the current question is invalid.\n * If emitSectionFinishEvent is true then it will emit an event if it's navigating past the length of questions.\n * @returns A promise which will resolve when the question has been navigated to.\n * @author Will Poulson\n */\n public nextQuestion() {\n return new Promise((resolve, reject) => {\n if (!this.options.allowSkipRequiredField) {\n if (!this.currentQuestion.formControl.valid) {\n return reject('Current question is invalid');\n }\n }\n\n this.getCurrentQuestionIndex().then((currentIndex) => {\n const newIndex = currentIndex + 1;\n\n this.navigateToQuestion(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Navigates to the previous question.\n * If there is no question to navigate to it will reject with a out of bounds exception.\n * If allowNavigateBackwards is false then it will reject.\n * @returns A promise which will resolve when the question has been navigated to.\n * @author Will Poulson\n */\n public prevQuestion() {\n return new Promise((resolve, reject) => {\n if (!this.options.allowNavigateBackwards) {\n return reject('This questionnaire does not allow for backwards navigation');\n }\n\n this.getCurrentQuestionIndex().then((currentIndex) => {\n const newIndex = currentIndex - 1;\n\n this.navigateToQuestion(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Gets the current questions index.\n * @returns A promise which resolves a number.\n * @author Will Poulson\n */\n private getCurrentQuestionIndex(): Promise<number> {\n return new Promise((resolve, reject) => {\n const currentIndex = this.currentSection.data.questions.indexOf(this.currentQuestion.data);\n\n if (currentIndex === -1) {\n return reject('Could not find current question');\n }\n\n return resolve(currentIndex);\n });\n }\n\n /**\n * Checks a question is in bounds then navigates to it.\n * @param index The index to navigate to.\n * @returns A promise which will resolve when the question has been navigated to.\n * @author Will Poulson\n */\n public navigateToQuestion(index: number) {\n return new Promise((resolve, reject) => {\n if (this.currentSection.data.questions.length - 1 < index || index < 0) {\n return reject('Out of bounds exception');\n }\n\n this.currentQuestionName = this.currentSection.data.questions[index].name;\n return resolve();\n });\n }\n\n /**\n * Navigates to the next section.\n * @returns A promise which will resolve when the section has been navigated to.\n * @author Will Poulson\n */\n public nextSection() {\n return new Promise((resolve, reject) => {\n this.getCurrentSectionIndex().then((currentIndex) => {\n const newIndex = currentIndex + 1;\n this.navigateToSection(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Navigates to the previous section.\n * @returns A promise which will resolve when the section has been navigated to.\n * @author Will Poulson\n */\n public prevSection() {\n return new Promise((resolve, reject) => {\n this.getCurrentSectionIndex().then((currentIndex) => {\n const newIndex = currentIndex - 1;\n this.navigateToQuestion(newIndex).then(() => {\n return resolve();\n }).catch((error) => {\n return reject(error);\n });\n }).catch((error) => {\n return reject(error);\n });\n });\n }\n\n /**\n * Gets the current section index.\n * @returns A promise which resolves a number.\n * @author Will Poulson\n */\n private getCurrentSectionIndex(): Promise<number> {\n return new Promise((resolve, reject) => {\n const currentIndex = this.currentQuestionnaire.sections.indexOf(this.currentSection.data);\n\n if (currentIndex === -1) {\n return reject('Could not find current section');\n }\n\n return resolve(currentIndex);\n });\n }\n\n /**\n * Checks a section is in bounds then navigates to it.\n * @param index The index to navigate to.\n * @returns A promise which will resolve when the section has been navigated to.\n * @author Will Poulson\n */\n public navigateToSection(index: number) {\n return new Promise((resolve, reject) => {\n if (this.currentQuestionnaire.sections.length - 1 < index || index < 0) {\n return reject('Out of bounds exception');\n }\n\n this.currentSectionName = this.currentQuestionnaire.sections[index].name;\n return resolve();\n });\n }\n\n /**\n * Answers the current question with the parsed value.\n * @param answer The value to answer the question with.\n * @author Will Poulson\n */\n public answerCurrentQuestion(answer: any, sendToNextQuestion?: boolean) {\n this.currentQuestion.formControl.setValue(answer);\n if (sendToNextQuestion && this.skippable) { // Timeout to prevent skipping glitch.\n this.skippable = false;\n setTimeout(() => {\n this.nextQuestion();\n this.skippable = true;\n }, 150);\n }\n }\n\n /**\n * Adds a repeater item to the current question.\n * Current question must be of type Repeater.\n * @returns A promise which resolves when the repeater item has been added.\n * @author Will Poulson\n */\n public addRepeaterItem() {\n return new Promise((resolve, reject) => {\n if (this.currentQuestion.data.type !== QuestionType.Repeater) {\n return reject(`Current question isn't a repeater`);\n }\n const repeaterForm = this.formConstuctor.generateFormsForRepeater(this.currentQuestion.data);\n\n if (!repeaterForm) {\n return reject(`Repeater template failed to generate. May be due to the repeater having no items in the editor.`);\n }\n\n\n if (!(this.currentQuestion.formControl instanceof FormArray)) {\n return reject(`The current questions control isn't of type FormArray`);\n }\n\n this.currentQuestion.formControl.push(repeaterForm);\n return resolve();\n });\n }\n\n /**\n * Removes a repeater item on the current question.\n * Current question must be of type Repeater.\n * @param index The index at which to remove.\n * @returns A promise which resolves when the repeater item has been removed.\n * @author Will Poulson\n */\n public removeRepeaterItem(index: number) {\n return new Promise((resolve, reject) => {\n if (this.currentQuestion.data.type !== QuestionType.Repeater) {\n return reject(`Current question isn't a repeater`);\n }\n\n if (!(this.currentQuestion.formControl instanceof FormArray)) {\n return reject(`The current questions control isn't of type FormArray`);\n }\n\n this.currentQuestion.formControl.removeAt(index);\n return resolve();\n });\n }\n\n /**\n * Returns the display text for a given repeater item\n * @param index The index at which to get the label for.\n * @returns A string which is the display text.\n * @author Will Poulson\n */\n public getRepeaterItemLabel(index: number): string {\n if (!this.currentQuestion.formControl || !(this.currentQuestion.formControl instanceof FormArray)) {\n return '';\n }\n\n const repeaterItem = this.currentQuestion.formControl.controls[index];\n\n if (!repeaterItem) {\n return '';\n }\n\n const template = this.currentQuestion.data.repeaterDisplayName;\n const splitTemplate = template.split(' ');\n\n const displayArray = [];\n for (const templateItem of splitTemplate) {\n if (templateItem.match(/\\[.*?\\]/)) {\n const path = templateItem.replace(/[\\[\\]']+/g, '');\n const item = repeaterItem.get(path);\n const value = item.value ? item.value : '?';\n displayArray.push(value);\n } else {\n displayArray.push(templateItem);\n }\n }\n\n const display = displayArray.join(' ');\n return display;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { FormConstructorService } from './services/form-constructor.service';\nimport { QuestionnaireService } from './services/questionnaire.service';\nimport { FilterService } from './services/filter.service';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { QuestionnaireOptions } from './interfaces/questionnaire-options';\nimport { ModuleWithProviders } from '@angular/compiler/src/core';\n\n@NgModule({\n declarations: [],\n providers: [\n FormConstructorService,\n FilterService\n ],\n imports: [\n FormsModule,\n ReactiveFormsModule\n ],\n})\nexport class GgQuestionnaireV2Module {\n public static forRoot(options: QuestionnaireOptions): ModuleWithProviders {\n return {\n ngModule: GgQuestionnaireV2Module,\n providers: [\n QuestionnaireService,\n {\n provide: 'options',\n useValue: options\n }\n ]\n };\n }\n}\n","export enum InputType {\n Text = 'text',\n Number = 'number',\n Email = 'email',\n Telephone = 'tel',\n Password = 'password',\n Color = 'color',\n Date = 'date',\n DateTimeLocal = 'datetime-local',\n Time = 'time',\n Month = 'month',\n Week = 'week',\n}\n","export enum RepeaterQuestionType {\n Input = 'input',\n Select = 'select',\n}\n"],"names":["_.get","_.keys","_.cloneDeep"],"mappings":"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"}