@ukhomeoffice/cop-react-form-renderer 6.14.0 → 6.14.1
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.
- package/README.md +5 -0
- package/dist/components/CheckYourAnswers/Answer.js +12 -11
- package/dist/components/CheckYourAnswers/Answer.test.js +132 -181
- package/dist/components/CheckYourAnswers/CheckYourAnswers.js +98 -133
- package/dist/components/CheckYourAnswers/CheckYourAnswers.test.js +544 -939
- package/dist/components/CheckYourAnswers/index.js +1 -1
- package/dist/components/CollectionPage/CollectionPage.js +62 -60
- package/dist/components/CollectionPage/CollectionPage.test.js +315 -365
- package/dist/components/CollectionPage/index.js +1 -1
- package/dist/components/CollectionSummary/BannerStrip.js +14 -14
- package/dist/components/CollectionSummary/BannerStrip.test.js +79 -74
- package/dist/components/CollectionSummary/CollectionSummary.js +75 -97
- package/dist/components/CollectionSummary/CollectionSummary.test.js +182 -166
- package/dist/components/CollectionSummary/Confirmation.js +15 -13
- package/dist/components/CollectionSummary/Confirmation.test.js +68 -63
- package/dist/components/CollectionSummary/RenderListView.js +34 -47
- package/dist/components/CollectionSummary/RenderListView.test.js +113 -111
- package/dist/components/CollectionSummary/SummaryCard.js +101 -133
- package/dist/components/CollectionSummary/SummaryCard.test.js +961 -993
- package/dist/components/CollectionSummary/SummaryCardButtons.js +25 -30
- package/dist/components/CollectionSummary/SummaryCardButtons.test.js +30 -28
- package/dist/components/CollectionSummary/SummaryCardDetails.js +59 -76
- package/dist/components/CollectionSummary/SummaryCardDetails.test.js +170 -180
- package/dist/components/CollectionSummary/SummaryCardValidationContext.js +31 -36
- package/dist/components/CollectionSummary/SummaryCardValidationContext.test.js +63 -75
- package/dist/components/CollectionSummary/index.js +1 -1
- package/dist/components/FormComponent/Collection.js +63 -100
- package/dist/components/FormComponent/Collection.test.js +907 -1080
- package/dist/components/FormComponent/Container.js +35 -29
- package/dist/components/FormComponent/Container.test.js +378 -409
- package/dist/components/FormComponent/FormComponent.js +59 -63
- package/dist/components/FormComponent/FormComponent.test.js +354 -415
- package/dist/components/FormComponent/helpers/addLabel.js +4 -7
- package/dist/components/FormComponent/helpers/getComponentDisabled.js +1 -1
- package/dist/components/FormComponent/helpers/getComponentDisabled.test.js +8 -8
- package/dist/components/FormComponent/helpers/getComponentError.js +3 -5
- package/dist/components/FormComponent/helpers/getComponentError.test.js +15 -15
- package/dist/components/FormComponent/helpers/getComponentFieldSet.js +3 -4
- package/dist/components/FormComponent/helpers/getComponentFieldSet.test.js +7 -7
- package/dist/components/FormComponent/helpers/index.js +5 -5
- package/dist/components/FormComponent/index.js +1 -1
- package/dist/components/FormPage/FormPage.js +70 -93
- package/dist/components/FormPage/FormPage.test.js +150 -202
- package/dist/components/FormPage/index.js +1 -1
- package/dist/components/FormRenderer/FormRenderer.js +131 -173
- package/dist/components/FormRenderer/FormRenderer.test.js +732 -1114
- package/dist/components/FormRenderer/handlers/cyaAction.js +3 -3
- package/dist/components/FormRenderer/handlers/getPageId.js +1 -3
- package/dist/components/FormRenderer/handlers/getPageId.test.js +15 -15
- package/dist/components/FormRenderer/handlers/handlers.test.js +33 -33
- package/dist/components/FormRenderer/handlers/index.js +2 -2
- package/dist/components/FormRenderer/handlers/navigate.js +4 -4
- package/dist/components/FormRenderer/handlers/submissionError.js +1 -1
- package/dist/components/FormRenderer/helpers/canActionProceed.js +1 -1
- package/dist/components/FormRenderer/helpers/canActionProceed.test.js +16 -16
- package/dist/components/FormRenderer/helpers/canCYASubmit.js +1 -3
- package/dist/components/FormRenderer/helpers/canCYASubmit.test.js +17 -21
- package/dist/components/FormRenderer/helpers/cleanHiddenNestedData.js +22 -25
- package/dist/components/FormRenderer/helpers/cleanHiddenNestedData.test.js +21 -21
- package/dist/components/FormRenderer/helpers/getCYA.js +4 -6
- package/dist/components/FormRenderer/helpers/getCYA.test.js +12 -12
- package/dist/components/FormRenderer/helpers/getFormState.js +6 -8
- package/dist/components/FormRenderer/helpers/getFormState.test.js +11 -11
- package/dist/components/FormRenderer/helpers/getNextPageId.js +14 -25
- package/dist/components/FormRenderer/helpers/getNextPageId.test.js +68 -68
- package/dist/components/FormRenderer/helpers/getPage.js +2 -4
- package/dist/components/FormRenderer/helpers/getPage.test.js +12 -12
- package/dist/components/FormRenderer/helpers/getRelevantPages.js +7 -9
- package/dist/components/FormRenderer/helpers/getRelevantPages.test.js +15 -15
- package/dist/components/FormRenderer/helpers/getSubmissionStatus.js +6 -6
- package/dist/components/FormRenderer/helpers/getSubmissionStatus.test.js +104 -98
- package/dist/components/FormRenderer/helpers/getUpdatedSectionStates.js +44 -51
- package/dist/components/FormRenderer/helpers/getUpdatedSectionStates.test.js +68 -74
- package/dist/components/FormRenderer/helpers/index.js +2 -2
- package/dist/components/FormRenderer/index.js +1 -1
- package/dist/components/FormRenderer/onCYAAction.js +43 -44
- package/dist/components/FormRenderer/onCYAAction.test.js +126 -133
- package/dist/components/FormRenderer/onPageAction.js +26 -35
- package/dist/components/FormRenderer/onPageAction.test.js +177 -186
- package/dist/components/FormRenderer/onTaskAction.js +11 -12
- package/dist/components/FormRenderer/onTaskAction.test.js +63 -68
- package/dist/components/PageActions/ActionButton.js +14 -14
- package/dist/components/PageActions/ActionButton.test.js +57 -79
- package/dist/components/PageActions/PageActions.js +11 -11
- package/dist/components/PageActions/PageActions.test.js +87 -116
- package/dist/components/PageActions/index.js +1 -1
- package/dist/components/SummaryList/GroupAction.js +10 -18
- package/dist/components/SummaryList/GroupAction.test.js +38 -34
- package/dist/components/SummaryList/RowAction.js +12 -17
- package/dist/components/SummaryList/RowAction.test.js +38 -34
- package/dist/components/SummaryList/SummaryList.js +23 -25
- package/dist/components/SummaryList/SummaryList.test.js +162 -189
- package/dist/components/SummaryList/SummaryListHeadingRow.js +7 -5
- package/dist/components/SummaryList/SummaryListHeadingRowWithAction.js +7 -5
- package/dist/components/SummaryList/SummaryListRow.js +7 -5
- package/dist/components/SummaryList/SummaryListTitleRow.js +6 -4
- package/dist/components/SummaryList/helpers/getGroupActionAttributes.js +3 -5
- package/dist/components/SummaryList/helpers/getGroupActionAttributes.test.js +23 -23
- package/dist/components/SummaryList/helpers/getRowActionAttributes.js +3 -5
- package/dist/components/SummaryList/helpers/getRowActionAttributes.test.js +23 -23
- package/dist/components/SummaryList/helpers/index.js +2 -2
- package/dist/components/SummaryList/index.js +1 -1
- package/dist/components/TaskList/Task.js +20 -30
- package/dist/components/TaskList/Task.test.js +84 -77
- package/dist/components/TaskList/TaskList.js +56 -79
- package/dist/components/TaskList/TaskList.test.js +149 -149
- package/dist/components/TaskList/TaskState.js +8 -6
- package/dist/components/TaskList/TaskState.test.js +53 -46
- package/dist/components/TaskList/index.js +1 -1
- package/dist/components/index.js +8 -8
- package/dist/context/HooksContext/HooksContext.js +56 -79
- package/dist/context/HooksContext/HooksContext.test.js +27 -36
- package/dist/context/HooksContext/index.js +3 -4
- package/dist/context/ValidationContext/ValidationContext.js +44 -95
- package/dist/context/ValidationContext/ValidationContext.test.js +57 -69
- package/dist/context/ValidationContext/index.js +3 -4
- package/dist/context/index.js +3 -3
- package/dist/hooks/index.js +10 -11
- package/dist/hooks/useAxios.js +15 -41
- package/dist/hooks/useGetRequest.js +62 -98
- package/dist/hooks/useHooks.js +1 -3
- package/dist/hooks/useRefData.js +25 -37
- package/dist/hooks/useValidation.js +1 -3
- package/dist/index.js +14 -15
- package/dist/models/CollectionLabels.js +1 -1
- package/dist/models/ComponentTypes.js +25 -25
- package/dist/models/EventTypes.js +4 -4
- package/dist/models/FormPages.js +4 -4
- package/dist/models/FormTypes.js +8 -8
- package/dist/models/HubFormats.js +3 -3
- package/dist/models/PageAction.js +44 -38
- package/dist/models/TaskStates.js +29 -28
- package/dist/models/index.js +10 -10
- package/dist/setupTests.js +30 -31
- package/dist/utils/CheckYourAnswers/getCYAAction.js +5 -5
- package/dist/utils/CheckYourAnswers/getCYAAction.test.js +53 -55
- package/dist/utils/CheckYourAnswers/getCYACollectionChangeAction.js +12 -21
- package/dist/utils/CheckYourAnswers/getCYACollectionChangeAction.test.js +32 -33
- package/dist/utils/CheckYourAnswers/getCYACollectionDeleteAction.js +15 -28
- package/dist/utils/CheckYourAnswers/getCYACollectionDeleteAction.test.js +41 -42
- package/dist/utils/CheckYourAnswers/getCYARow.js +7 -7
- package/dist/utils/CheckYourAnswers/getCYARow.test.js +87 -87
- package/dist/utils/CheckYourAnswers/getCYARowForGroup.js +19 -21
- package/dist/utils/CheckYourAnswers/getCYARowForGroup.test.js +16 -17
- package/dist/utils/CheckYourAnswers/getCYARowsForCollection.js +27 -34
- package/dist/utils/CheckYourAnswers/getCYARowsForCollection.test.js +48 -52
- package/dist/utils/CheckYourAnswers/getCYARowsForCollectionPage.js +76 -93
- package/dist/utils/CheckYourAnswers/getCYARowsForCollectionPage.test.js +110 -115
- package/dist/utils/CheckYourAnswers/getCYARowsForContainer.js +11 -16
- package/dist/utils/CheckYourAnswers/getCYARowsForContainer.test.js +112 -106
- package/dist/utils/CheckYourAnswers/getCYARowsForPage.js +14 -19
- package/dist/utils/CheckYourAnswers/getCYARowsForPage.test.js +69 -73
- package/dist/utils/CheckYourAnswers/getSummaryListRowForDetails.js +7 -8
- package/dist/utils/CheckYourAnswers/getSummaryListRowForDetails.test.js +15 -16
- package/dist/utils/CheckYourAnswers/index.js +2 -2
- package/dist/utils/CheckYourAnswers/showComponentCYA.js +5 -5
- package/dist/utils/CheckYourAnswers/showComponentCYA.test.js +26 -26
- package/dist/utils/CollectionPage/addCollectionPageEntry.js +2 -2
- package/dist/utils/CollectionPage/addCollectionPageEntry.test.js +6 -6
- package/dist/utils/CollectionPage/duplicateCollectionPageActiveEntry.js +3 -3
- package/dist/utils/CollectionPage/duplicateCollectionPageActiveEntry.test.js +18 -19
- package/dist/utils/CollectionPage/duplicateCollectionPageEntry.js +13 -20
- package/dist/utils/CollectionPage/duplicateCollectionPageEntry.test.js +48 -39
- package/dist/utils/CollectionPage/getCollectionPageActiveId.js +2 -2
- package/dist/utils/CollectionPage/getCollectionPageActiveId.test.js +11 -11
- package/dist/utils/CollectionPage/getCollectionPageActiveIndex.js +7 -11
- package/dist/utils/CollectionPage/getCollectionPageActiveIndex.test.js +23 -23
- package/dist/utils/CollectionPage/getCollectionPageData.js +8 -12
- package/dist/utils/CollectionPage/getCollectionPageData.test.js +20 -20
- package/dist/utils/CollectionPage/getErrorsForCollection.js +20 -21
- package/dist/utils/CollectionPage/getErrorsForCollection.test.js +21 -23
- package/dist/utils/CollectionPage/getQuickEditPage.js +22 -23
- package/dist/utils/CollectionPage/getQuickEditPage.test.js +17 -18
- package/dist/utils/CollectionPage/index.js +2 -2
- package/dist/utils/CollectionPage/mergeCollectionPages.js +26 -35
- package/dist/utils/CollectionPage/mergeCollectionPages.test.js +18 -18
- package/dist/utils/CollectionPage/removeCollectionPageEntry.js +5 -7
- package/dist/utils/CollectionPage/removeCollectionPageEntry.test.js +11 -11
- package/dist/utils/CollectionPage/setCollectionPageData.js +10 -16
- package/dist/utils/CollectionPage/setCollectionPageData.test.js +25 -25
- package/dist/utils/Component/addShowWhen.js +5 -6
- package/dist/utils/Component/addShowWhen.test.js +38 -38
- package/dist/utils/Component/applyToComponentTree.js +12 -15
- package/dist/utils/Component/applyToComponentTree.test.js +28 -31
- package/dist/utils/Component/cleanAttributes.js +12 -11
- package/dist/utils/Component/cleanAttributes.test.js +17 -18
- package/dist/utils/Component/elevateNestedComponents.js +6 -6
- package/dist/utils/Component/elevateNestedComponents.test.js +34 -34
- package/dist/utils/Component/getComponent.js +79 -85
- package/dist/utils/Component/getComponentTests/getComponent.autocomplete.test.js +19 -18
- package/dist/utils/Component/getComponentTests/getComponent.calculation.test.js +41 -58
- package/dist/utils/Component/getComponentTests/getComponent.checkboxes.test.js +40 -49
- package/dist/utils/Component/getComponentTests/getComponent.date.test.js +24 -34
- package/dist/utils/Component/getComponentTests/getComponent.details.test.js +21 -19
- package/dist/utils/Component/getComponentTests/getComponent.email.test.js +18 -23
- package/dist/utils/Component/getComponentTests/getComponent.file.test.js +21 -26
- package/dist/utils/Component/getComponentTests/getComponent.heading.test.js +11 -10
- package/dist/utils/Component/getComponentTests/getComponent.html.test.js +18 -16
- package/dist/utils/Component/getComponentTests/getComponent.insetText.test.js +10 -9
- package/dist/utils/Component/getComponentTests/getComponent.list.test.js +18 -16
- package/dist/utils/Component/getComponentTests/getComponent.multifile.test.js +23 -27
- package/dist/utils/Component/getComponentTests/getComponent.nested.test.js +201 -226
- package/dist/utils/Component/getComponentTests/getComponent.paragraph.test.js +18 -16
- package/dist/utils/Component/getComponentTests/getComponent.phoneNumber.test.js +18 -23
- package/dist/utils/Component/getComponentTests/getComponent.radios.test.js +58 -73
- package/dist/utils/Component/getComponentTests/getComponent.select.test.js +18 -23
- package/dist/utils/Component/getComponentTests/getComponent.text.test.js +18 -23
- package/dist/utils/Component/getComponentTests/getComponent.textArea.test.js +32 -39
- package/dist/utils/Component/getComponentTests/getComponent.time.test.js +21 -30
- package/dist/utils/Component/getComponentTests/getComponent.unknown.test.js +3 -3
- package/dist/utils/Component/getComponentTests/getComponent.warningText.test.js +10 -9
- package/dist/utils/Component/getDefaultValue.js +7 -9
- package/dist/utils/Component/getDefaultValue.test.js +13 -13
- package/dist/utils/Component/getDefaultValueFromConfig.js +16 -20
- package/dist/utils/Component/getDefaultValueFromConfig.test.js +32 -32
- package/dist/utils/Component/index.js +2 -2
- package/dist/utils/Component/isEditable.js +2 -4
- package/dist/utils/Component/isEditable.test.js +14 -15
- package/dist/utils/Component/optionIsSelected.js +2 -4
- package/dist/utils/Component/optionIsSelected.test.js +12 -12
- package/dist/utils/Component/setupContainerComponentsPath.js +23 -28
- package/dist/utils/Component/setupContainerComponentsPath.test.js +12 -12
- package/dist/utils/Component/showComponent.js +2 -2
- package/dist/utils/Component/showComponent.test.js +29 -29
- package/dist/utils/Component/wrapInFormGroup.js +4 -4
- package/dist/utils/Condition/index.js +2 -2
- package/dist/utils/Condition/meetsAllConditions.js +9 -9
- package/dist/utils/Condition/meetsAllConditions.test.js +21 -21
- package/dist/utils/Condition/meetsCondition.js +17 -26
- package/dist/utils/Condition/meetsCondition.test.js +403 -403
- package/dist/utils/Condition/meetsOneCondition.js +6 -6
- package/dist/utils/Condition/meetsOneCondition.test.js +17 -17
- package/dist/utils/Condition/setupConditions.js +12 -15
- package/dist/utils/Condition/setupConditions.test.js +8 -8
- package/dist/utils/Container/getEditableComponents.js +4 -6
- package/dist/utils/Container/getEditableComponents.test.js +44 -46
- package/dist/utils/Container/index.js +2 -2
- package/dist/utils/Container/setupNesting.js +14 -15
- package/dist/utils/Container/setupNesting.test.js +20 -23
- package/dist/utils/Container/showContainer.js +4 -8
- package/dist/utils/Container/showContainer.test.js +31 -31
- package/dist/utils/Data/applyFormula.js +30 -44
- package/dist/utils/Data/applyFormula.test.js +21 -21
- package/dist/utils/Data/deleteValues.js +4 -8
- package/dist/utils/Data/deleteValues.test.js +11 -11
- package/dist/utils/Data/getAutocompleteSource.js +19 -27
- package/dist/utils/Data/getAutocompleteSource.test.js +76 -81
- package/dist/utils/Data/getDataPath.js +18 -28
- package/dist/utils/Data/getDataPath.test.js +13 -13
- package/dist/utils/Data/getOptions.js +35 -42
- package/dist/utils/Data/getOptions.test.js +37 -38
- package/dist/utils/Data/getSourceData.js +6 -19
- package/dist/utils/Data/getSourceData.test.js +85 -81
- package/dist/utils/Data/index.js +2 -2
- package/dist/utils/Data/nestInRefdataOptions.js +9 -12
- package/dist/utils/Data/nestInRefdataOptions.test.js +17 -17
- package/dist/utils/Data/refDataToOptions.js +9 -10
- package/dist/utils/Data/refDataToOptions.test.js +20 -20
- package/dist/utils/Data/setDataItem.js +7 -8
- package/dist/utils/Data/setDataItem.test.js +38 -38
- package/dist/utils/Data/setupFormData.js +13 -20
- package/dist/utils/Data/setupFormData.test.js +48 -47
- package/dist/utils/Data/setupRefDataUrlForComponent.js +11 -20
- package/dist/utils/Data/setupRefDataUrlForComponent.test.js +25 -25
- package/dist/utils/FormPage/applyConditionalProperties.js +7 -8
- package/dist/utils/FormPage/applyConditionalProperties.test.js +14 -15
- package/dist/utils/FormPage/getConditionalText.js +4 -4
- package/dist/utils/FormPage/getConditionalText.test.js +30 -30
- package/dist/utils/FormPage/getFormPage.js +12 -15
- package/dist/utils/FormPage/getFormPage.test.js +23 -24
- package/dist/utils/FormPage/getFormPages.js +8 -11
- package/dist/utils/FormPage/getFormPages.test.js +15 -16
- package/dist/utils/FormPage/getPageActions.js +10 -13
- package/dist/utils/FormPage/getPageActions.test.js +33 -33
- package/dist/utils/FormPage/getParagraphFromText.js +5 -7
- package/dist/utils/FormPage/getParagraphFromText.test.js +7 -7
- package/dist/utils/FormPage/index.js +3 -5
- package/dist/utils/FormPage/showFormPage.js +4 -8
- package/dist/utils/FormPage/showFormPage.test.js +33 -33
- package/dist/utils/FormPage/showFormPageCYA.js +2 -2
- package/dist/utils/FormPage/showFormPageCYA.test.js +9 -9
- package/dist/utils/FormPage/useComponent.js +15 -23
- package/dist/utils/FormPage/useComponent.test.js +49 -50
- package/dist/utils/Format/formatData.js +1 -1
- package/dist/utils/Format/formatData.test.js +19 -19
- package/dist/utils/Format/formatDataForComponent.js +6 -7
- package/dist/utils/Format/formatDataForComponent.test.js +50 -78
- package/dist/utils/Format/formatDataForForm.js +5 -6
- package/dist/utils/Format/formatDataForForm.test.js +14 -17
- package/dist/utils/Format/formatDataForPage.js +4 -5
- package/dist/utils/Format/formatDataForPage.test.js +20 -25
- package/dist/utils/Format/index.js +2 -2
- package/dist/utils/Hub/getFormHub.js +2 -2
- package/dist/utils/Hub/getFormHub.test.js +23 -24
- package/dist/utils/Hub/index.js +2 -2
- package/dist/utils/Meta/constants.js +2 -2
- package/dist/utils/Meta/documents/getDocuments.js +1 -1
- package/dist/utils/Meta/documents/getDocuments.test.js +25 -17
- package/dist/utils/Meta/documents/index.js +2 -2
- package/dist/utils/Meta/documents/setDocumentsForField.js +12 -13
- package/dist/utils/Meta/documents/setDocumentsForField.test.js +70 -33
- package/dist/utils/Meta/index.js +2 -2
- package/dist/utils/Operate/checkValueIsTruthy.js +3 -3
- package/dist/utils/Operate/checkValueIsTruthy.test.js +17 -17
- package/dist/utils/Operate/deleteValueInFormData.js +2 -2
- package/dist/utils/Operate/deleteValueInFormData.test.js +15 -15
- package/dist/utils/Operate/getFirstOf.js +6 -6
- package/dist/utils/Operate/getFirstOf.test.js +32 -32
- package/dist/utils/Operate/getIndexOfMatchingValueIn.js +11 -11
- package/dist/utils/Operate/getIndexOfMatchingValueIn.test.js +47 -53
- package/dist/utils/Operate/getLength.js +9 -9
- package/dist/utils/Operate/getLength.test.js +19 -19
- package/dist/utils/Operate/index.js +2 -2
- package/dist/utils/Operate/persistValueInFormData.js +4 -4
- package/dist/utils/Operate/persistValueInFormData.test.js +23 -21
- package/dist/utils/Operate/runPageOperations.js +8 -8
- package/dist/utils/Operate/runPageOperations.test.js +24 -25
- package/dist/utils/Operate/setValueInFormData.js +3 -3
- package/dist/utils/Operate/setValueInFormData.test.js +17 -17
- package/dist/utils/Operate/shouldRun.js +7 -7
- package/dist/utils/Operate/shouldRun.test.js +22 -24
- package/dist/utils/Validate/additional/conditionallyPermittedChange.js +1 -1
- package/dist/utils/Validate/additional/conditionallyPermittedChange.test.js +15 -15
- package/dist/utils/Validate/additional/conditionallyRequired.js +4 -4
- package/dist/utils/Validate/additional/conditionallyRequired.test.js +19 -19
- package/dist/utils/Validate/additional/index.js +8 -8
- package/dist/utils/Validate/additional/index.test.js +22 -22
- package/dist/utils/Validate/additional/mustBeAfter.js +3 -3
- package/dist/utils/Validate/additional/mustBeAfter.test.js +41 -41
- package/dist/utils/Validate/additional/mustBeBefore.js +3 -3
- package/dist/utils/Validate/additional/mustBeBefore.test.js +29 -29
- package/dist/utils/Validate/additional/mustBeEarlierDateTime.js +8 -12
- package/dist/utils/Validate/additional/mustBeEarlierDateTime.test.js +37 -38
- package/dist/utils/Validate/additional/mustBeGreaterThan.js +2 -2
- package/dist/utils/Validate/additional/mustBeGreaterThan.test.js +19 -19
- package/dist/utils/Validate/additional/mustBeInTheFuture.js +3 -3
- package/dist/utils/Validate/additional/mustBeInTheFuture.test.js +13 -13
- package/dist/utils/Validate/additional/mustBeInThePast.js +4 -4
- package/dist/utils/Validate/additional/mustBeInThePast.test.js +13 -13
- package/dist/utils/Validate/additional/mustBeLessThan.js +2 -2
- package/dist/utils/Validate/additional/mustBeLessThan.test.js +18 -18
- package/dist/utils/Validate/additional/mustBeLongerThan.js +1 -1
- package/dist/utils/Validate/additional/mustBeLongerThan.test.js +17 -17
- package/dist/utils/Validate/additional/mustBeNumbersOnly.js +2 -2
- package/dist/utils/Validate/additional/mustBeNumbersOnly.test.js +21 -21
- package/dist/utils/Validate/additional/mustBeOneOf.js +1 -1
- package/dist/utils/Validate/additional/mustBeOneOf.test.js +13 -13
- package/dist/utils/Validate/additional/mustBeShorterThan.js +1 -1
- package/dist/utils/Validate/additional/mustBeShorterThan.test.js +17 -17
- package/dist/utils/Validate/additional/mustBeUniqueInCollection.js +5 -5
- package/dist/utils/Validate/additional/mustBeUniqueInCollection.test.js +35 -36
- package/dist/utils/Validate/additional/mustEnterAtLeastOne.js +2 -2
- package/dist/utils/Validate/additional/mustEnterAtLeastOne.test.js +15 -17
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.js +1 -1
- package/dist/utils/Validate/additional/mustHaveLessThanDecimalPlaces.test.js +13 -13
- package/dist/utils/Validate/additional/mustNotContainSql.js +3 -4
- package/dist/utils/Validate/additional/mustNotContainSql.test.js +15 -15
- package/dist/utils/Validate/additional/mustSelectOnlyOne.js +2 -2
- package/dist/utils/Validate/additional/mustSelectOnlyOne.test.js +29 -27
- package/dist/utils/Validate/additional/utils.js +9 -22
- package/dist/utils/Validate/index.js +2 -2
- package/dist/utils/Validate/validateCollection.js +18 -23
- package/dist/utils/Validate/validateCollection.test.js +75 -67
- package/dist/utils/Validate/validateComponent.js +19 -19
- package/dist/utils/Validate/validateComponent.test.js +179 -154
- package/dist/utils/Validate/validateContainer.js +14 -17
- package/dist/utils/Validate/validateContainer.test.js +59 -53
- package/dist/utils/Validate/validateDate.js +16 -22
- package/dist/utils/Validate/validateDate.test.js +31 -32
- package/dist/utils/Validate/validateEmail.js +7 -9
- package/dist/utils/Validate/validateEmail.test.js +27 -27
- package/dist/utils/Validate/validateMultifile.js +5 -7
- package/dist/utils/Validate/validateMultifile.test.js +17 -18
- package/dist/utils/Validate/validatePage.js +13 -18
- package/dist/utils/Validate/validatePage.test.js +198 -195
- package/dist/utils/Validate/validateRegex.js +3 -5
- package/dist/utils/Validate/validateRegex.test.js +15 -15
- package/dist/utils/Validate/validateRequired.js +4 -6
- package/dist/utils/Validate/validateRequired.test.js +19 -19
- package/dist/utils/Validate/validateTextArea.js +4 -6
- package/dist/utils/Validate/validateTextArea.test.js +21 -21
- package/dist/utils/Validate/validateTime.js +12 -19
- package/dist/utils/Validate/validateTime.test.js +27 -27
- package/dist/utils/index.js +5 -6
- package/package.json +2 -4
|
@@ -8,433 +8,402 @@ var _setupTests = require("../../setupTests");
|
|
|
8
8
|
var _constants = require("../../utils/Meta/constants");
|
|
9
9
|
var _Container = require("./Container");
|
|
10
10
|
var _FormComponent = _interopRequireDefault(require("./FormComponent"));
|
|
11
|
-
function _interopRequireDefault(
|
|
12
|
-
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
12
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
14
13
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
15
|
-
function
|
|
16
|
-
function
|
|
17
|
-
function
|
|
18
|
-
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
19
|
-
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
20
|
-
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } // Global imports
|
|
14
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
16
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } // Global imports
|
|
21
17
|
// Local imports
|
|
22
|
-
describe('components.FormComponent.Container',
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
18
|
+
describe('components.FormComponent.Container', () => {
|
|
19
|
+
const ID = 'container';
|
|
20
|
+
const NESTED_ID = 'nested';
|
|
21
|
+
const TEXT_ID = 'text';
|
|
22
|
+
const TEXT_VALUE = 'alpha';
|
|
23
|
+
const NESTED_TEXT_VALUE = 'charlie';
|
|
24
|
+
const FORM_DATA = {
|
|
25
|
+
[ID]: {
|
|
26
|
+
[TEXT_ID]: TEXT_VALUE,
|
|
27
|
+
[NESTED_ID]: {
|
|
28
|
+
[TEXT_ID]: NESTED_TEXT_VALUE
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
[_constants.META_PROPERTY]: {
|
|
32
|
+
[_constants.META_DOCUMENTS_PROPERTY]: [{
|
|
33
|
+
field: 'epsilon.zeta',
|
|
34
|
+
name: 'ez.jpg',
|
|
35
|
+
type: 'image/jpg',
|
|
36
|
+
extension: 'jpg',
|
|
37
|
+
url: 'http://files.com/ez.jpg'
|
|
38
|
+
}]
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
const TEXT_COMPONENT = {
|
|
37
42
|
id: TEXT_ID,
|
|
38
43
|
fieldId: TEXT_ID,
|
|
39
44
|
type: _models.ComponentTypes.TEXT,
|
|
40
45
|
label: 'Text component',
|
|
41
46
|
hint: 'Text hint'
|
|
42
47
|
};
|
|
43
|
-
it('should render a container component appropriately',
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
formData: FORM_DATA
|
|
58
|
-
})), container = _renderWithValidation.container; // Check the container itself.
|
|
59
|
-
c = container.childNodes[0];
|
|
60
|
-
expect(c.tagName).toEqual('DIV');
|
|
61
|
-
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
48
|
+
it('should render a container component appropriately', async () => {
|
|
49
|
+
const CONTAINER = {
|
|
50
|
+
id: ID,
|
|
51
|
+
fieldId: ID,
|
|
52
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
53
|
+
components: [TEXT_COMPONENT]
|
|
54
|
+
};
|
|
55
|
+
const {
|
|
56
|
+
container
|
|
57
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
58
|
+
component: CONTAINER,
|
|
59
|
+
value: FORM_DATA[ID],
|
|
60
|
+
formData: FORM_DATA
|
|
61
|
+
}));
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
label = formGroup.childNodes[0];
|
|
68
|
-
expect(label.tagName).toEqual('LABEL');
|
|
69
|
-
expect(label.classList).toContain('govuk-label');
|
|
70
|
-
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
71
|
-
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
72
|
-
hint = formGroup.childNodes[1];
|
|
73
|
-
expect(hint.tagName).toEqual('DIV');
|
|
74
|
-
expect(hint.classList).toContain('govuk-hint');
|
|
75
|
-
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
76
|
-
input = formGroup.childNodes[2];
|
|
77
|
-
expect(input.tagName).toEqual('INPUT');
|
|
78
|
-
expect(input.classList).toContain('govuk-input');
|
|
79
|
-
expect(input.id).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
80
|
-
expect(input.value).toEqual(TEXT_VALUE);
|
|
81
|
-
case 22:
|
|
82
|
-
case "end":
|
|
83
|
-
return _context.stop();
|
|
84
|
-
}
|
|
85
|
-
}, _callee);
|
|
86
|
-
})));
|
|
87
|
-
it('should render a nested container component appropriately', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2() {
|
|
88
|
-
var CONTAINER, _renderWithValidation2, container, c, nested, formGroup, label, hint, input;
|
|
89
|
-
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
90
|
-
while (1) switch (_context2.prev = _context2.next) {
|
|
91
|
-
case 0:
|
|
92
|
-
CONTAINER = {
|
|
93
|
-
id: ID,
|
|
94
|
-
fieldId: ID,
|
|
95
|
-
type: _models.ComponentTypes.CONTAINER,
|
|
96
|
-
components: [{
|
|
97
|
-
id: NESTED_ID,
|
|
98
|
-
fieldId: NESTED_ID,
|
|
99
|
-
type: _models.ComponentTypes.CONTAINER,
|
|
100
|
-
components: [TEXT_COMPONENT]
|
|
101
|
-
}]
|
|
102
|
-
};
|
|
103
|
-
_renderWithValidation2 = (0, _setupTests.renderWithValidation)( /*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
104
|
-
component: CONTAINER,
|
|
105
|
-
value: FORM_DATA[ID],
|
|
106
|
-
formData: FORM_DATA
|
|
107
|
-
})), container = _renderWithValidation2.container; // Check the container itself.
|
|
108
|
-
c = container.childNodes[0];
|
|
109
|
-
expect(c.tagName).toEqual('DIV');
|
|
110
|
-
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
63
|
+
// Check the container itself.
|
|
64
|
+
const c = container.childNodes[0];
|
|
65
|
+
expect(c.tagName).toEqual('DIV');
|
|
66
|
+
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
111
67
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
68
|
+
// And now check the single text component within it.
|
|
69
|
+
const formGroup = c.childNodes[0];
|
|
70
|
+
expect(formGroup.tagName).toEqual('DIV');
|
|
71
|
+
expect(formGroup.classList).toContain('govuk-form-group');
|
|
72
|
+
const label = formGroup.childNodes[0];
|
|
73
|
+
expect(label.tagName).toEqual('LABEL');
|
|
74
|
+
expect(label.classList).toContain('govuk-label');
|
|
75
|
+
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
76
|
+
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
77
|
+
const hint = formGroup.childNodes[1];
|
|
78
|
+
expect(hint.tagName).toEqual('DIV');
|
|
79
|
+
expect(hint.classList).toContain('govuk-hint');
|
|
80
|
+
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
81
|
+
const input = formGroup.childNodes[2];
|
|
82
|
+
expect(input.tagName).toEqual('INPUT');
|
|
83
|
+
expect(input.classList).toContain('govuk-input');
|
|
84
|
+
expect(input.id).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
85
|
+
expect(input.value).toEqual(TEXT_VALUE);
|
|
86
|
+
});
|
|
87
|
+
it('should render a nested container component appropriately', async () => {
|
|
88
|
+
const CONTAINER = {
|
|
89
|
+
id: ID,
|
|
90
|
+
fieldId: ID,
|
|
91
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
92
|
+
components: [{
|
|
93
|
+
id: NESTED_ID,
|
|
94
|
+
fieldId: NESTED_ID,
|
|
95
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
96
|
+
components: [TEXT_COMPONENT]
|
|
97
|
+
}]
|
|
98
|
+
};
|
|
99
|
+
const {
|
|
100
|
+
container
|
|
101
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
102
|
+
component: CONTAINER,
|
|
103
|
+
value: FORM_DATA[ID],
|
|
104
|
+
formData: FORM_DATA
|
|
105
|
+
}));
|
|
116
106
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
label = formGroup.childNodes[0];
|
|
122
|
-
expect(label.tagName).toEqual('LABEL');
|
|
123
|
-
expect(label.classList).toContain('govuk-label');
|
|
124
|
-
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
125
|
-
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(NESTED_ID, ".").concat(TEXT_ID));
|
|
126
|
-
hint = formGroup.childNodes[1];
|
|
127
|
-
expect(hint.tagName).toEqual('DIV');
|
|
128
|
-
expect(hint.classList).toContain('govuk-hint');
|
|
129
|
-
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
130
|
-
input = formGroup.childNodes[2];
|
|
131
|
-
expect(input.tagName).toEqual('INPUT');
|
|
132
|
-
expect(input.classList).toContain('govuk-input');
|
|
133
|
-
expect(input.id).toEqual("".concat(ID, ".").concat(NESTED_ID, ".").concat(TEXT_ID));
|
|
134
|
-
expect(input.value).toEqual(NESTED_TEXT_VALUE);
|
|
135
|
-
case 25:
|
|
136
|
-
case "end":
|
|
137
|
-
return _context2.stop();
|
|
138
|
-
}
|
|
139
|
-
}, _callee2);
|
|
140
|
-
})));
|
|
141
|
-
it('should handle a change to a component appropriately', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3() {
|
|
142
|
-
var ON_CHANGE_EVENTS, ON_CHANGE, CONTAINER, _renderWithValidation3, container, c, formGroup, input, NEW_TEXT_VALUE, EVENT;
|
|
143
|
-
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
144
|
-
while (1) switch (_context3.prev = _context3.next) {
|
|
145
|
-
case 0:
|
|
146
|
-
ON_CHANGE_EVENTS = [];
|
|
147
|
-
ON_CHANGE = function ON_CHANGE(e) {
|
|
148
|
-
ON_CHANGE_EVENTS.push(e);
|
|
149
|
-
};
|
|
150
|
-
CONTAINER = {
|
|
151
|
-
id: ID,
|
|
152
|
-
fieldId: ID,
|
|
153
|
-
type: _models.ComponentTypes.CONTAINER,
|
|
154
|
-
components: [{
|
|
155
|
-
id: TEXT_ID,
|
|
156
|
-
fieldId: TEXT_ID,
|
|
157
|
-
type: _models.ComponentTypes.TEXT,
|
|
158
|
-
label: 'Text component'
|
|
159
|
-
}]
|
|
160
|
-
};
|
|
161
|
-
_renderWithValidation3 = (0, _setupTests.renderWithValidation)( /*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
162
|
-
component: CONTAINER,
|
|
163
|
-
value: FORM_DATA[ID],
|
|
164
|
-
formData: FORM_DATA,
|
|
165
|
-
onChange: ON_CHANGE
|
|
166
|
-
})), container = _renderWithValidation3.container; // Get hold of the text input.
|
|
167
|
-
c = container.childNodes[0];
|
|
168
|
-
formGroup = c.childNodes[0];
|
|
169
|
-
input = formGroup.childNodes[2];
|
|
170
|
-
NEW_TEXT_VALUE = 'bravo';
|
|
171
|
-
EVENT = {
|
|
172
|
-
target: {
|
|
173
|
-
name: TEXT_ID,
|
|
174
|
-
value: NEW_TEXT_VALUE
|
|
175
|
-
}
|
|
176
|
-
};
|
|
177
|
-
_react.fireEvent.change(input, EVENT);
|
|
107
|
+
// Check the container itself.
|
|
108
|
+
const c = container.childNodes[0];
|
|
109
|
+
expect(c.tagName).toEqual('DIV');
|
|
110
|
+
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
178
111
|
|
|
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
|
-
// depending on whether the Container is on a normal page or regular page.
|
|
238
|
-
expect(ON_CHANGE_EVENTS.length).toEqual(1);
|
|
239
|
-
expect(ON_CHANGE_EVENTS[0].target.name).toEqual(ID);
|
|
240
|
-
// Expect one call for changing the meta data at top level formData.
|
|
241
|
-
// Meta changes should occur at top-level regardless of where the component is.
|
|
242
|
-
expect(ON_TOP_LEVEL_CHANGE_EVENTS.length).toEqual(1);
|
|
243
|
-
expect(ON_TOP_LEVEL_CHANGE_EVENTS[0].target.name).toEqual(_constants.META_PROPERTY);
|
|
244
|
-
containerChangeValue = JSON.parse(JSON.stringify(ON_CHANGE_EVENTS[0].target.value));
|
|
245
|
-
metaChangeValue = JSON.parse(JSON.stringify(ON_TOP_LEVEL_CHANGE_EVENTS[0].target.value));
|
|
246
|
-
expect(metaChangeValue.documents.length).toEqual(2); // Existing one, plus this new one.
|
|
247
|
-
expect(metaChangeValue.documents[1]).toMatchObject(_objectSpread(_objectSpread({}, containerChangeValue[FILE_ID]), {}, {
|
|
248
|
-
field: "".concat(ID, ".").concat(FILE_ID)
|
|
249
|
-
}));
|
|
250
|
-
case 25:
|
|
251
|
-
case "end":
|
|
252
|
-
return _context4.stop();
|
|
112
|
+
// Check the nested container.
|
|
113
|
+
const nested = c.childNodes[0];
|
|
114
|
+
expect(nested.tagName).toEqual('DIV');
|
|
115
|
+
expect(nested.classList).toContain(_Container.DEFAULT_CLASS);
|
|
116
|
+
|
|
117
|
+
// And now check the single text component within the nested container.
|
|
118
|
+
const formGroup = nested.childNodes[0];
|
|
119
|
+
expect(formGroup.tagName).toEqual('DIV');
|
|
120
|
+
expect(formGroup.classList).toContain('govuk-form-group');
|
|
121
|
+
const label = formGroup.childNodes[0];
|
|
122
|
+
expect(label.tagName).toEqual('LABEL');
|
|
123
|
+
expect(label.classList).toContain('govuk-label');
|
|
124
|
+
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
125
|
+
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(NESTED_ID, ".").concat(TEXT_ID));
|
|
126
|
+
const hint = formGroup.childNodes[1];
|
|
127
|
+
expect(hint.tagName).toEqual('DIV');
|
|
128
|
+
expect(hint.classList).toContain('govuk-hint');
|
|
129
|
+
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
130
|
+
const input = formGroup.childNodes[2];
|
|
131
|
+
expect(input.tagName).toEqual('INPUT');
|
|
132
|
+
expect(input.classList).toContain('govuk-input');
|
|
133
|
+
expect(input.id).toEqual("".concat(ID, ".").concat(NESTED_ID, ".").concat(TEXT_ID));
|
|
134
|
+
expect(input.value).toEqual(NESTED_TEXT_VALUE);
|
|
135
|
+
});
|
|
136
|
+
it('should handle a change to a component appropriately', async () => {
|
|
137
|
+
const ON_CHANGE_EVENTS = [];
|
|
138
|
+
const ON_CHANGE = e => {
|
|
139
|
+
ON_CHANGE_EVENTS.push(e);
|
|
140
|
+
};
|
|
141
|
+
const CONTAINER = {
|
|
142
|
+
id: ID,
|
|
143
|
+
fieldId: ID,
|
|
144
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
145
|
+
components: [{
|
|
146
|
+
id: TEXT_ID,
|
|
147
|
+
fieldId: TEXT_ID,
|
|
148
|
+
type: _models.ComponentTypes.TEXT,
|
|
149
|
+
label: 'Text component'
|
|
150
|
+
}]
|
|
151
|
+
};
|
|
152
|
+
const {
|
|
153
|
+
container
|
|
154
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
155
|
+
component: CONTAINER,
|
|
156
|
+
value: FORM_DATA[ID],
|
|
157
|
+
formData: FORM_DATA,
|
|
158
|
+
onChange: ON_CHANGE
|
|
159
|
+
}));
|
|
160
|
+
|
|
161
|
+
// Get hold of the text input.
|
|
162
|
+
const c = container.childNodes[0];
|
|
163
|
+
const formGroup = c.childNodes[0];
|
|
164
|
+
const input = formGroup.childNodes[2];
|
|
165
|
+
const NEW_TEXT_VALUE = 'bravo';
|
|
166
|
+
const EVENT = {
|
|
167
|
+
target: {
|
|
168
|
+
name: TEXT_ID,
|
|
169
|
+
value: NEW_TEXT_VALUE
|
|
253
170
|
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
171
|
+
};
|
|
172
|
+
_react.fireEvent.change(input, EVENT);
|
|
173
|
+
|
|
174
|
+
// And confirm the formData has been changed.
|
|
175
|
+
expect(ON_CHANGE_EVENTS.length).toEqual(1);
|
|
176
|
+
expect(ON_CHANGE_EVENTS[0].target.name).toEqual(ID);
|
|
177
|
+
expect(ON_CHANGE_EVENTS[0].target.value[TEXT_ID]).toEqual(NEW_TEXT_VALUE);
|
|
178
|
+
});
|
|
179
|
+
it('should handle a change to a file type component appropriately', async () => {
|
|
180
|
+
const FILE_ID = 'file';
|
|
181
|
+
const ON_CHANGE_EVENTS = [];
|
|
182
|
+
const ON_CHANGE = e => {
|
|
183
|
+
ON_CHANGE_EVENTS.push(e);
|
|
184
|
+
};
|
|
185
|
+
const ON_TOP_LEVEL_CHANGE_EVENTS = [];
|
|
186
|
+
const ON_TOP_LEVEL_CHANGE = e => {
|
|
187
|
+
ON_TOP_LEVEL_CHANGE_EVENTS.push(e);
|
|
188
|
+
};
|
|
189
|
+
const CONTAINER = {
|
|
190
|
+
id: ID,
|
|
191
|
+
fieldId: ID,
|
|
192
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
193
|
+
components: [{
|
|
194
|
+
id: FILE_ID,
|
|
195
|
+
fieldId: FILE_ID,
|
|
196
|
+
full_path: "".concat(ID, ".").concat(FILE_ID),
|
|
197
|
+
type: _models.ComponentTypes.FILE,
|
|
198
|
+
label: 'File component'
|
|
199
|
+
}]
|
|
200
|
+
};
|
|
201
|
+
const {
|
|
202
|
+
container
|
|
203
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
204
|
+
component: CONTAINER,
|
|
205
|
+
value: FORM_DATA[ID],
|
|
206
|
+
formData: FORM_DATA,
|
|
207
|
+
onChange: ON_CHANGE,
|
|
208
|
+
onTopLevelChange: ON_TOP_LEVEL_CHANGE
|
|
209
|
+
}));
|
|
273
210
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
211
|
+
// Get hold of the text input.
|
|
212
|
+
const c = container.childNodes[0];
|
|
213
|
+
const formGroup = c.childNodes[0];
|
|
214
|
+
const input = formGroup.childNodes[2].childNodes[0];
|
|
215
|
+
const FILE_EXTENSION = 'json';
|
|
216
|
+
const FILE_NAME = "test.".concat(FILE_EXTENSION);
|
|
217
|
+
const FILE_TYPE = 'application/JSON';
|
|
218
|
+
const str = JSON.stringify({
|
|
219
|
+
alpha: 'bravo'
|
|
220
|
+
});
|
|
221
|
+
const blob = new Blob([str]);
|
|
222
|
+
const FILE = new File([blob], FILE_NAME, {
|
|
223
|
+
type: FILE_TYPE
|
|
224
|
+
});
|
|
225
|
+
_userEvent.default.upload(input, FILE);
|
|
226
|
+
// Expect one call for the regular onChange event, this can change
|
|
227
|
+
// depending on whether the Container is on a normal page or regular page.
|
|
228
|
+
expect(ON_CHANGE_EVENTS.length).toEqual(1);
|
|
229
|
+
expect(ON_CHANGE_EVENTS[0].target.name).toEqual(ID);
|
|
230
|
+
// Expect one call for changing the meta data at top level formData.
|
|
231
|
+
// Meta changes should occur at top-level regardless of where the component is.
|
|
232
|
+
expect(ON_TOP_LEVEL_CHANGE_EVENTS.length).toEqual(1);
|
|
233
|
+
expect(ON_TOP_LEVEL_CHANGE_EVENTS[0].target.name).toEqual(_constants.META_PROPERTY);
|
|
234
|
+
const containerChangeValue = JSON.parse(JSON.stringify(ON_CHANGE_EVENTS[0].target.value));
|
|
235
|
+
const metaChangeValue = JSON.parse(JSON.stringify(ON_TOP_LEVEL_CHANGE_EVENTS[0].target.value));
|
|
236
|
+
expect(metaChangeValue.documents.length).toEqual(2); // Existing one, plus this new one.
|
|
237
|
+
expect(metaChangeValue.documents[1]).toMatchObject(_objectSpread(_objectSpread({}, containerChangeValue[FILE_ID]), {}, {
|
|
238
|
+
field: "".concat(ID, ".").concat(FILE_ID)
|
|
239
|
+
}));
|
|
240
|
+
});
|
|
241
|
+
it('should handle a null value appropriately', async () => {
|
|
242
|
+
const CONTAINER = {
|
|
243
|
+
id: ID,
|
|
244
|
+
fieldId: ID,
|
|
245
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
246
|
+
components: [TEXT_COMPONENT]
|
|
247
|
+
};
|
|
248
|
+
const {
|
|
249
|
+
container
|
|
250
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
251
|
+
component: CONTAINER
|
|
252
|
+
}));
|
|
253
|
+
|
|
254
|
+
// Check the container itself.
|
|
255
|
+
const c = container.childNodes[0];
|
|
256
|
+
expect(c.tagName).toEqual('DIV');
|
|
257
|
+
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
258
|
+
|
|
259
|
+
// And now check the single text component within it.
|
|
260
|
+
const formGroup = c.childNodes[0];
|
|
261
|
+
expect(formGroup.tagName).toEqual('DIV');
|
|
262
|
+
expect(formGroup.classList).toContain('govuk-form-group');
|
|
263
|
+
const label = formGroup.childNodes[0];
|
|
264
|
+
expect(label.tagName).toEqual('LABEL');
|
|
265
|
+
expect(label.classList).toContain('govuk-label');
|
|
266
|
+
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
267
|
+
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
268
|
+
const hint = formGroup.childNodes[1];
|
|
269
|
+
expect(hint.tagName).toEqual('DIV');
|
|
270
|
+
expect(hint.classList).toContain('govuk-hint');
|
|
271
|
+
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
272
|
+
const input = formGroup.childNodes[2];
|
|
273
|
+
expect(input.tagName).toEqual('INPUT');
|
|
274
|
+
expect(input.classList).toContain('govuk-input');
|
|
275
|
+
expect(input.id).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
276
|
+
expect(input.value).toEqual('');
|
|
277
|
+
});
|
|
278
|
+
it('should handle a className attribute appropriately', async () => {
|
|
279
|
+
const CLASS_NAME = 'alpha-bravo';
|
|
280
|
+
const CONTAINER = {
|
|
281
|
+
id: ID,
|
|
282
|
+
fieldId: ID,
|
|
283
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
284
|
+
components: [TEXT_COMPONENT],
|
|
285
|
+
className: CLASS_NAME
|
|
286
|
+
};
|
|
287
|
+
const {
|
|
288
|
+
container
|
|
289
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
290
|
+
component: CONTAINER,
|
|
291
|
+
value: FORM_DATA[ID],
|
|
292
|
+
formData: FORM_DATA
|
|
293
|
+
}));
|
|
294
|
+
|
|
295
|
+
// Check the container itself.
|
|
296
|
+
const c = container.childNodes[0];
|
|
297
|
+
expect(c.tagName).toEqual('DIV');
|
|
298
|
+
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
299
|
+
expect(c.classList).toContain(CLASS_NAME);
|
|
300
|
+
});
|
|
301
|
+
it('should appropriately make child components readonly', async () => {
|
|
302
|
+
const CONTAINER = {
|
|
303
|
+
id: ID,
|
|
304
|
+
fieldId: ID,
|
|
305
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
306
|
+
components: [TEXT_COMPONENT],
|
|
307
|
+
readonly: true
|
|
308
|
+
};
|
|
309
|
+
const {
|
|
310
|
+
container
|
|
311
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
312
|
+
component: CONTAINER,
|
|
313
|
+
value: FORM_DATA[ID],
|
|
314
|
+
formData: FORM_DATA
|
|
315
|
+
}));
|
|
316
|
+
|
|
317
|
+
// Check the container itself.
|
|
318
|
+
const c = container.childNodes[0];
|
|
319
|
+
expect(c.tagName).toEqual('DIV');
|
|
320
|
+
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
321
|
+
|
|
322
|
+
// And now check the single text component within it.
|
|
323
|
+
const formGroup = c.childNodes[0];
|
|
324
|
+
expect(formGroup.tagName).toEqual('DIV');
|
|
325
|
+
expect(formGroup.classList).toContain('govuk-form-group');
|
|
326
|
+
const label = formGroup.childNodes[0];
|
|
327
|
+
expect(label.tagName).toEqual('LABEL');
|
|
328
|
+
expect(label.classList).toContain('govuk-label');
|
|
329
|
+
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
330
|
+
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
331
|
+
const hint = formGroup.childNodes[1];
|
|
332
|
+
expect(hint.tagName).toEqual('DIV');
|
|
333
|
+
expect(hint.classList).toContain('govuk-hint');
|
|
334
|
+
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
335
|
+
const input = formGroup.childNodes[2];
|
|
336
|
+
expect(input.tagName).toEqual('DIV'); // Now readonly, so a DIV.
|
|
337
|
+
expect(input.classList).toContain('hods-readonly'); // Now readonly, so hods-readonly
|
|
338
|
+
expect(input.id).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
339
|
+
expect(input.textContent).toEqual(TEXT_VALUE);
|
|
340
|
+
});
|
|
341
|
+
it('should render a container component appropriately with show_whens referencing other components in the container', async () => {
|
|
342
|
+
const TEXT_COMPONENT_CONDITIONAL = {
|
|
343
|
+
id: 'textTwo',
|
|
344
|
+
fieldId: 'textTwo',
|
|
345
|
+
type: _models.ComponentTypes.TEXT,
|
|
346
|
+
label: 'Text component 2',
|
|
347
|
+
show_when: {
|
|
348
|
+
field: TEXT_ID,
|
|
349
|
+
op: '=',
|
|
350
|
+
value: 'other'
|
|
295
351
|
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
while (1) switch (_context6.prev = _context6.next) {
|
|
302
|
-
case 0:
|
|
303
|
-
CLASS_NAME = 'alpha-bravo';
|
|
304
|
-
CONTAINER = {
|
|
305
|
-
id: ID,
|
|
306
|
-
fieldId: ID,
|
|
307
|
-
type: _models.ComponentTypes.CONTAINER,
|
|
308
|
-
components: [TEXT_COMPONENT],
|
|
309
|
-
className: CLASS_NAME
|
|
310
|
-
};
|
|
311
|
-
_renderWithValidation6 = (0, _setupTests.renderWithValidation)( /*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
312
|
-
component: CONTAINER,
|
|
313
|
-
value: FORM_DATA[ID],
|
|
314
|
-
formData: FORM_DATA
|
|
315
|
-
})), container = _renderWithValidation6.container; // Check the container itself.
|
|
316
|
-
c = container.childNodes[0];
|
|
317
|
-
expect(c.tagName).toEqual('DIV');
|
|
318
|
-
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
319
|
-
expect(c.classList).toContain(CLASS_NAME);
|
|
320
|
-
case 7:
|
|
321
|
-
case "end":
|
|
322
|
-
return _context6.stop();
|
|
352
|
+
};
|
|
353
|
+
const FORM_DATA_CONDITIONAL = {
|
|
354
|
+
[ID]: {
|
|
355
|
+
[TEXT_ID]: 'other',
|
|
356
|
+
textTwo: 'blue'
|
|
323
357
|
}
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
component: CONTAINER,
|
|
340
|
-
value: FORM_DATA[ID],
|
|
341
|
-
formData: FORM_DATA
|
|
342
|
-
})), container = _renderWithValidation7.container; // Check the container itself.
|
|
343
|
-
c = container.childNodes[0];
|
|
344
|
-
expect(c.tagName).toEqual('DIV');
|
|
345
|
-
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
358
|
+
};
|
|
359
|
+
const CONTAINER = {
|
|
360
|
+
id: ID,
|
|
361
|
+
fieldId: ID,
|
|
362
|
+
type: _models.ComponentTypes.CONTAINER,
|
|
363
|
+
components: [TEXT_COMPONENT, TEXT_COMPONENT_CONDITIONAL],
|
|
364
|
+
full_path: ID
|
|
365
|
+
};
|
|
366
|
+
const {
|
|
367
|
+
container
|
|
368
|
+
} = (0, _setupTests.renderWithValidation)(/*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
369
|
+
component: CONTAINER,
|
|
370
|
+
value: FORM_DATA_CONDITIONAL[ID],
|
|
371
|
+
formData: FORM_DATA_CONDITIONAL
|
|
372
|
+
}));
|
|
346
373
|
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
label = formGroup.childNodes[0];
|
|
352
|
-
expect(label.tagName).toEqual('LABEL');
|
|
353
|
-
expect(label.classList).toContain('govuk-label');
|
|
354
|
-
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
355
|
-
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
356
|
-
hint = formGroup.childNodes[1];
|
|
357
|
-
expect(hint.tagName).toEqual('DIV');
|
|
358
|
-
expect(hint.classList).toContain('govuk-hint');
|
|
359
|
-
expect(hint.textContent).toEqual(TEXT_COMPONENT.hint);
|
|
360
|
-
input = formGroup.childNodes[2];
|
|
361
|
-
expect(input.tagName).toEqual('DIV'); // Now readonly, so a DIV.
|
|
362
|
-
expect(input.classList).toContain('hods-readonly'); // Now readonly, so hods-readonly
|
|
363
|
-
expect(input.id).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
364
|
-
expect(input.textContent).toEqual(TEXT_VALUE);
|
|
365
|
-
case 22:
|
|
366
|
-
case "end":
|
|
367
|
-
return _context7.stop();
|
|
368
|
-
}
|
|
369
|
-
}, _callee7);
|
|
370
|
-
})));
|
|
371
|
-
it('should render a container component appropriately with show_whens referencing other components in the container', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee8() {
|
|
372
|
-
var _ID2;
|
|
373
|
-
var TEXT_COMPONENT_CONDITIONAL, FORM_DATA_CONDITIONAL, CONTAINER, _renderWithValidation8, container, c, formGroup, label, input, formGroup2, label2, input2;
|
|
374
|
-
return _regeneratorRuntime().wrap(function _callee8$(_context8) {
|
|
375
|
-
while (1) switch (_context8.prev = _context8.next) {
|
|
376
|
-
case 0:
|
|
377
|
-
TEXT_COMPONENT_CONDITIONAL = {
|
|
378
|
-
id: 'textTwo',
|
|
379
|
-
fieldId: 'textTwo',
|
|
380
|
-
type: _models.ComponentTypes.TEXT,
|
|
381
|
-
label: 'Text component 2',
|
|
382
|
-
show_when: {
|
|
383
|
-
field: TEXT_ID,
|
|
384
|
-
op: '=',
|
|
385
|
-
value: 'other'
|
|
386
|
-
}
|
|
387
|
-
};
|
|
388
|
-
FORM_DATA_CONDITIONAL = _defineProperty({}, ID, (_ID2 = {}, _defineProperty(_ID2, TEXT_ID, 'other'), _defineProperty(_ID2, "textTwo", 'blue'), _ID2));
|
|
389
|
-
CONTAINER = {
|
|
390
|
-
id: ID,
|
|
391
|
-
fieldId: ID,
|
|
392
|
-
type: _models.ComponentTypes.CONTAINER,
|
|
393
|
-
components: [TEXT_COMPONENT, TEXT_COMPONENT_CONDITIONAL],
|
|
394
|
-
full_path: ID
|
|
395
|
-
};
|
|
396
|
-
_renderWithValidation8 = (0, _setupTests.renderWithValidation)( /*#__PURE__*/_react2.default.createElement(_FormComponent.default, {
|
|
397
|
-
component: CONTAINER,
|
|
398
|
-
value: FORM_DATA_CONDITIONAL[ID],
|
|
399
|
-
formData: FORM_DATA_CONDITIONAL
|
|
400
|
-
})), container = _renderWithValidation8.container; // Check the container itself.
|
|
401
|
-
c = container.childNodes[0];
|
|
402
|
-
expect(c.tagName).toEqual('DIV');
|
|
403
|
-
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
374
|
+
// Check the container itself.
|
|
375
|
+
const c = container.childNodes[0];
|
|
376
|
+
expect(c.tagName).toEqual('DIV');
|
|
377
|
+
expect(c.classList).toContain(_Container.DEFAULT_CLASS);
|
|
404
378
|
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
379
|
+
// And now check the first text component within it.
|
|
380
|
+
const formGroup = c.childNodes[0];
|
|
381
|
+
expect(formGroup.tagName).toEqual('DIV');
|
|
382
|
+
expect(formGroup.classList).toContain('govuk-form-group');
|
|
383
|
+
const label = formGroup.childNodes[0];
|
|
384
|
+
expect(label.tagName).toEqual('LABEL');
|
|
385
|
+
expect(label.classList).toContain('govuk-label');
|
|
386
|
+
expect(label.textContent).toEqual("".concat(TEXT_COMPONENT.label, " (optional)"));
|
|
387
|
+
expect(label.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
388
|
+
const input = formGroup.childNodes[2];
|
|
389
|
+
expect(input.tagName).toEqual('INPUT');
|
|
390
|
+
expect(input.classList).toContain('govuk-input');
|
|
391
|
+
expect(input.id).toEqual("".concat(ID, ".").concat(TEXT_ID));
|
|
392
|
+
expect(input.value).toEqual('other');
|
|
419
393
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
case "end":
|
|
436
|
-
return _context8.stop();
|
|
437
|
-
}
|
|
438
|
-
}, _callee8);
|
|
439
|
-
})));
|
|
394
|
+
// And now check the second text component within it that should have passed the show_when
|
|
395
|
+
const formGroup2 = c.childNodes[1];
|
|
396
|
+
expect(formGroup2.tagName).toEqual('DIV');
|
|
397
|
+
expect(formGroup2.classList).toContain('govuk-form-group');
|
|
398
|
+
const label2 = formGroup2.childNodes[0];
|
|
399
|
+
expect(label2.tagName).toEqual('LABEL');
|
|
400
|
+
expect(label2.classList).toContain('govuk-label');
|
|
401
|
+
expect(label2.textContent).toEqual("".concat(TEXT_COMPONENT.label, " 2 (optional)"));
|
|
402
|
+
expect(label2.getAttribute('for')).toEqual("".concat(ID, ".").concat(TEXT_ID, "Two"));
|
|
403
|
+
const input2 = formGroup2.childNodes[2];
|
|
404
|
+
expect(input2.tagName).toEqual('INPUT');
|
|
405
|
+
expect(input2.classList).toContain('govuk-input');
|
|
406
|
+
expect(input2.id).toEqual("".concat(ID, ".").concat(TEXT_ID, "Two"));
|
|
407
|
+
expect(input2.value).toEqual('blue');
|
|
408
|
+
});
|
|
440
409
|
});
|