@legalplace/wizardx-core 0.0.1-alpha.0
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/.depcheckrc +1 -0
- package/.eslintignore +2 -0
- package/.eslintrc +5 -0
- package/CHANGELOG.md +245 -0
- package/__mocks__/fileMock.js +1 -0
- package/babel.config.json +3 -0
- package/dist/App.d.ts +20 -0
- package/dist/App.js +60 -0
- package/dist/App.test.d.ts +1 -0
- package/dist/App.test.js +37 -0
- package/dist/Globals.d.ts +21 -0
- package/dist/Globals.js +34 -0
- package/dist/PluginLoader.d.ts +34 -0
- package/dist/PluginLoader.js +218 -0
- package/dist/PluginLoader.test.d.ts +1 -0
- package/dist/PluginLoader.test.js +52 -0
- package/dist/Shimmer.d.ts +15 -0
- package/dist/Shimmer.js +66 -0
- package/dist/ThemeLoader.d.ts +27 -0
- package/dist/ThemeLoader.js +74 -0
- package/dist/ThemeLoader.test.d.ts +2 -0
- package/dist/ThemeLoader.test.js +64 -0
- package/dist/components/PluginRoute.d.ts +7 -0
- package/dist/components/PluginRoute.js +34 -0
- package/dist/components/SmartScript.d.ts +31 -0
- package/dist/components/SmartScript.js +85 -0
- package/dist/components/UserLocked/UserLockedComponent.d.ts +6 -0
- package/dist/components/UserLocked/UserLockedComponent.js +10 -0
- package/dist/components/View.d.ts +12 -0
- package/dist/components/View.js +91 -0
- package/dist/components/View.test.d.ts +2 -0
- package/dist/components/View.test.js +83 -0
- package/dist/componentsConnectors/connectBox.d.ts +17 -0
- package/dist/componentsConnectors/connectBox.js +28 -0
- package/dist/componentsConnectors/connectBox.test.d.ts +1 -0
- package/dist/componentsConnectors/connectBox.test.js +208 -0
- package/dist/componentsConnectors/connectDocument.d.ts +11 -0
- package/dist/componentsConnectors/connectDocument.js +29 -0
- package/dist/componentsConnectors/connectDocument.test.d.ts +1 -0
- package/dist/componentsConnectors/connectDocument.test.js +82 -0
- package/dist/componentsConnectors/connectHeader.d.ts +10 -0
- package/dist/componentsConnectors/connectHeader.js +8 -0
- package/dist/componentsConnectors/connectMetaTitle.d.ts +10 -0
- package/dist/componentsConnectors/connectMetaTitle.js +7 -0
- package/dist/componentsConnectors/connectMetaTitle.test.d.ts +1 -0
- package/dist/componentsConnectors/connectMetaTitle.test.js +32 -0
- package/dist/componentsConnectors/connectOption.d.ts +31 -0
- package/dist/componentsConnectors/connectOption.js +83 -0
- package/dist/componentsConnectors/connectPagination.d.ts +21 -0
- package/dist/componentsConnectors/connectPagination.js +37 -0
- package/dist/componentsConnectors/connectPreview.d.ts +8 -0
- package/dist/componentsConnectors/connectPreview.js +4 -0
- package/dist/componentsConnectors/connectProgress.d.ts +15 -0
- package/dist/componentsConnectors/connectProgress.js +21 -0
- package/dist/componentsConnectors/connectRootOption.d.ts +21 -0
- package/dist/componentsConnectors/connectRootOption.js +43 -0
- package/dist/componentsConnectors/connectSection.d.ts +14 -0
- package/dist/componentsConnectors/connectSection.js +39 -0
- package/dist/componentsConnectors/connectSummary.d.ts +12 -0
- package/dist/componentsConnectors/connectSummary.js +8 -0
- package/dist/componentsConnectors/connectSummaryItem.d.ts +16 -0
- package/dist/componentsConnectors/connectSummaryItem.js +47 -0
- package/dist/componentsConnectors/connectTermsheet.d.ts +3 -0
- package/dist/componentsConnectors/connectTermsheet.js +202 -0
- package/dist/componentsConnectors/connectVariable.d.ts +26 -0
- package/dist/componentsConnectors/connectVariable.js +69 -0
- package/dist/componentsConnectors/connectWizardWrapper.d.ts +9 -0
- package/dist/componentsConnectors/connectWizardWrapper.js +9 -0
- package/dist/componentsConnectors/connector/componentConnector.d.ts +24 -0
- package/dist/componentsConnectors/connector/componentConnector.js +62 -0
- package/dist/componentsConnectors/connector/connectorSelectors.d.ts +97 -0
- package/dist/componentsConnectors/connector/connectorSelectors.js +9 -0
- package/dist/componentsConnectors/index.d.ts +16 -0
- package/dist/componentsConnectors/index.js +16 -0
- package/dist/config.d.ts +5 -0
- package/dist/config.js +21 -0
- package/dist/config.test.d.ts +1 -0
- package/dist/config.test.js +36 -0
- package/dist/constants/emailValidation.d.ts +1 -0
- package/dist/constants/emailValidation.js +1 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/helpers/index.d.ts +2 -0
- package/dist/helpers/index.js +2 -0
- package/dist/helpers/outputsParsing.d.ts +15 -0
- package/dist/helpers/outputsParsing.js +186 -0
- package/dist/helpers/sendinblueHelper.d.ts +4 -0
- package/dist/helpers/sendinblueHelper.js +35 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/usePrevious.d.ts +1 -0
- package/dist/hooks/usePrevious.js +8 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +23 -0
- package/dist/libs/ConditionsInitiator.d.ts +16 -0
- package/dist/libs/ConditionsInitiator.js +88 -0
- package/dist/libs/ConditionsRunner/DataPopulator.d.ts +37 -0
- package/dist/libs/ConditionsRunner/DataPopulator.js +140 -0
- package/dist/libs/ConditionsRunner.d.ts +17 -0
- package/dist/libs/ConditionsRunner.js +254 -0
- package/dist/libs/DocumentsOutputs.d.ts +26 -0
- package/dist/libs/DocumentsOutputs.js +78 -0
- package/dist/libs/Eval/EvalBase.d.ts +13 -0
- package/dist/libs/Eval/EvalBase.js +69 -0
- package/dist/libs/Eval/EvalFunctions.d.ts +26 -0
- package/dist/libs/Eval/EvalFunctions.js +480 -0
- package/dist/libs/Eval/NumbersToLetters.d.ts +3 -0
- package/dist/libs/Eval/NumbersToLetters.js +151 -0
- package/dist/libs/EvalVariable.d.ts +15 -0
- package/dist/libs/EvalVariable.js +182 -0
- package/dist/libs/EventsTracking.d.ts +21 -0
- package/dist/libs/EventsTracking.js +174 -0
- package/dist/libs/Extracts.d.ts +20 -0
- package/dist/libs/Extracts.js +110 -0
- package/dist/libs/InputsInitiator.d.ts +19 -0
- package/dist/libs/InputsInitiator.js +86 -0
- package/dist/libs/NumAuto.d.ts +9 -0
- package/dist/libs/NumAuto.js +32 -0
- package/dist/libs/NumAuto.test.d.ts +1 -0
- package/dist/libs/NumAuto.test.js +43 -0
- package/dist/libs/OvcConverter.d.ts +21 -0
- package/dist/libs/OvcConverter.js +182 -0
- package/dist/libs/PathReader.d.ts +26 -0
- package/dist/libs/PathReader.js +143 -0
- package/dist/libs/SectionValidity.d.ts +8 -0
- package/dist/libs/SectionValidity.js +53 -0
- package/dist/libs/SectionValidity.test.d.ts +1 -0
- package/dist/libs/SectionValidity.test.js +116 -0
- package/dist/libs/SmartScriptStore.d.ts +38 -0
- package/dist/libs/SmartScriptStore.js +246 -0
- package/dist/libs/index.d.ts +12 -0
- package/dist/libs/index.js +12 -0
- package/dist/misc/test_model.d.ts +17 -0
- package/dist/misc/test_model.js +14037 -0
- package/dist/polyfills/objectValues.d.ts +2 -0
- package/dist/polyfills/objectValues.js +5 -0
- package/dist/polyfills/prepend.d.ts +2 -0
- package/dist/polyfills/prepend.js +22 -0
- package/dist/polyfills/stringRepeat.d.ts +2 -0
- package/dist/polyfills/stringRepeat.js +28 -0
- package/dist/redux/actions/app.d.ts +26 -0
- package/dist/redux/actions/app.js +73 -0
- package/dist/redux/actions/app.test.d.ts +1 -0
- package/dist/redux/actions/app.test.js +90 -0
- package/dist/redux/actions/conditions.d.ts +10 -0
- package/dist/redux/actions/conditions.js +43 -0
- package/dist/redux/actions/conditions.test.d.ts +1 -0
- package/dist/redux/actions/conditions.test.js +68 -0
- package/dist/redux/actions/index.d.ts +8 -0
- package/dist/redux/actions/index.js +8 -0
- package/dist/redux/actions/inputs.d.ts +7 -0
- package/dist/redux/actions/inputs.js +32 -0
- package/dist/redux/actions/inputs.test.d.ts +1 -0
- package/dist/redux/actions/inputs.test.js +53 -0
- package/dist/redux/actions/mandatories.d.ts +7 -0
- package/dist/redux/actions/mandatories.js +32 -0
- package/dist/redux/actions/references.d.ts +5 -0
- package/dist/redux/actions/references.js +12 -0
- package/dist/redux/actions/references.test.d.ts +1 -0
- package/dist/redux/actions/references.test.js +41 -0
- package/dist/redux/actions/sagas/data.d.ts +2 -0
- package/dist/redux/actions/sagas/data.js +8 -0
- package/dist/redux/actions/sagas/data.test.d.ts +1 -0
- package/dist/redux/actions/sagas/data.test.js +10 -0
- package/dist/redux/actions/sagas/index.d.ts +3 -0
- package/dist/redux/actions/sagas/index.js +3 -0
- package/dist/redux/actions/sagas/model.d.ts +12 -0
- package/dist/redux/actions/sagas/model.js +18 -0
- package/dist/redux/actions/sagas/model.test.d.ts +1 -0
- package/dist/redux/actions/sagas/model.test.js +11 -0
- package/dist/redux/actions/sagas/user.d.ts +3 -0
- package/dist/redux/actions/sagas/user.js +10 -0
- package/dist/redux/actions/smartscript.d.ts +6 -0
- package/dist/redux/actions/smartscript.js +20 -0
- package/dist/redux/actions/user.d.ts +5 -0
- package/dist/redux/actions/user.js +10 -0
- package/dist/redux/actions/user.test.d.ts +1 -0
- package/dist/redux/actions/user.test.js +16 -0
- package/dist/redux/constants/app.d.ts +22 -0
- package/dist/redux/constants/app.js +22 -0
- package/dist/redux/constants/conditions.d.ts +8 -0
- package/dist/redux/constants/conditions.js +8 -0
- package/dist/redux/constants/index.d.ts +8 -0
- package/dist/redux/constants/index.js +8 -0
- package/dist/redux/constants/inputs.d.ts +6 -0
- package/dist/redux/constants/inputs.js +6 -0
- package/dist/redux/constants/mandatories.d.ts +6 -0
- package/dist/redux/constants/mandatories.js +6 -0
- package/dist/redux/constants/references.d.ts +3 -0
- package/dist/redux/constants/references.js +3 -0
- package/dist/redux/constants/sagas/data.d.ts +1 -0
- package/dist/redux/constants/sagas/data.js +1 -0
- package/dist/redux/constants/sagas/index.d.ts +3 -0
- package/dist/redux/constants/sagas/index.js +3 -0
- package/dist/redux/constants/sagas/model.d.ts +2 -0
- package/dist/redux/constants/sagas/model.js +2 -0
- package/dist/redux/constants/sagas/user.d.ts +2 -0
- package/dist/redux/constants/sagas/user.js +2 -0
- package/dist/redux/constants/smartscript.d.ts +4 -0
- package/dist/redux/constants/smartscript.js +4 -0
- package/dist/redux/constants/user.d.ts +3 -0
- package/dist/redux/constants/user.js +3 -0
- package/dist/redux/index.d.ts +4 -0
- package/dist/redux/index.js +4 -0
- package/dist/redux/listeners/subscriber.d.ts +5 -0
- package/dist/redux/listeners/subscriber.js +13 -0
- package/dist/redux/listeners/subscriber.test.d.ts +1 -0
- package/dist/redux/listeners/subscriber.test.js +31 -0
- package/dist/redux/middlewares/conditionsWatcherMiddleware.d.ts +5 -0
- package/dist/redux/middlewares/conditionsWatcherMiddleware.js +144 -0
- package/dist/redux/middlewares/conditionsWatcherMiddleware.test.d.ts +1 -0
- package/dist/redux/middlewares/conditionsWatcherMiddleware.test.js +323 -0
- package/dist/redux/middlewares/evaluationsWatcherMiddleware.d.ts +5 -0
- package/dist/redux/middlewares/evaluationsWatcherMiddleware.js +115 -0
- package/dist/redux/middlewares/evaluationsWatcherMiddleware.test.d.ts +1 -0
- package/dist/redux/middlewares/evaluationsWatcherMiddleware.test.js +242 -0
- package/dist/redux/middlewares/mandatoriesWatcherMiddleware.d.ts +5 -0
- package/dist/redux/middlewares/mandatoriesWatcherMiddleware.js +220 -0
- package/dist/redux/middlewares/multiplesActionsMiddleware.d.ts +5 -0
- package/dist/redux/middlewares/multiplesActionsMiddleware.js +43 -0
- package/dist/redux/middlewares/multiplesActionsMiddleware.test.d.ts +1 -0
- package/dist/redux/middlewares/multiplesActionsMiddleware.test.js +209 -0
- package/dist/redux/middlewares/paginationWatcherMiddleware.d.ts +6 -0
- package/dist/redux/middlewares/paginationWatcherMiddleware.js +111 -0
- package/dist/redux/middlewares/pluginsHookMiddleware.d.ts +3 -0
- package/dist/redux/middlewares/pluginsHookMiddleware.js +10 -0
- package/dist/redux/middlewares/prefillerWatcherMiddleware.d.ts +5 -0
- package/dist/redux/middlewares/prefillerWatcherMiddleware.js +244 -0
- package/dist/redux/middlewares/prefillerWatcherMiddleware.test.d.ts +1 -0
- package/dist/redux/middlewares/prefillerWatcherMiddleware.test.js +84 -0
- package/dist/redux/middlewares/smartscriptMiddleware.d.ts +5 -0
- package/dist/redux/middlewares/smartscriptMiddleware.js +81 -0
- package/dist/redux/reducers/app/customizations/initCustomizationAutoDefault.d.ts +3 -0
- package/dist/redux/reducers/app/customizations/initCustomizationAutoDefault.js +4 -0
- package/dist/redux/reducers/app/customizations/initCustomizationMeta.d.ts +3 -0
- package/dist/redux/reducers/app/customizations/initCustomizationMeta.js +4 -0
- package/dist/redux/reducers/app/instance/initInstance.d.ts +3 -0
- package/dist/redux/reducers/app/instance/initInstance.js +12 -0
- package/dist/redux/reducers/app/instance/setDataStatus.d.ts +3 -0
- package/dist/redux/reducers/app/instance/setDataStatus.js +4 -0
- package/dist/redux/reducers/app/instance/updateInstance.d.ts +3 -0
- package/dist/redux/reducers/app/instance/updateInstance.js +5 -0
- package/dist/redux/reducers/app/instance/updateInstancePaid.d.ts +3 -0
- package/dist/redux/reducers/app/instance/updateInstancePaid.js +6 -0
- package/dist/redux/reducers/app/instance.test.d.ts +1 -0
- package/dist/redux/reducers/app/instance.test.js +76 -0
- package/dist/redux/reducers/app/meta/fetchModelFailed.d.ts +2 -0
- package/dist/redux/reducers/app/meta/fetchModelFailed.js +3 -0
- package/dist/redux/reducers/app/meta/fetchModelNonBlocking.d.ts +2 -0
- package/dist/redux/reducers/app/meta/fetchModelNonBlocking.js +3 -0
- package/dist/redux/reducers/app/meta/fetchModelSucceeded.d.ts +2 -0
- package/dist/redux/reducers/app/meta/fetchModelSucceeded.js +3 -0
- package/dist/redux/reducers/app/meta/fetchModelUnhealthy.d.ts +3 -0
- package/dist/redux/reducers/app/meta/fetchModelUnhealthy.js +4 -0
- package/dist/redux/reducers/app/meta/fetchModelUserLocked.d.ts +2 -0
- package/dist/redux/reducers/app/meta/fetchModelUserLocked.js +3 -0
- package/dist/redux/reducers/app/meta/initMeta.d.ts +3 -0
- package/dist/redux/reducers/app/meta/initMeta.js +9 -0
- package/dist/redux/reducers/app/meta/setModelUuid.d.ts +3 -0
- package/dist/redux/reducers/app/meta/setModelUuid.js +4 -0
- package/dist/redux/reducers/app/meta.test.d.ts +1 -0
- package/dist/redux/reducers/app/meta.test.js +64 -0
- package/dist/redux/reducers/app/pagination/goNextPage.d.ts +2 -0
- package/dist/redux/reducers/app/pagination/goNextPage.js +34 -0
- package/dist/redux/reducers/app/pagination/goPage.d.ts +3 -0
- package/dist/redux/reducers/app/pagination/goPage.js +41 -0
- package/dist/redux/reducers/app/pagination/goPreviousPage.d.ts +2 -0
- package/dist/redux/reducers/app/pagination/goPreviousPage.js +29 -0
- package/dist/redux/reducers/app/pagination/initPagination.d.ts +3 -0
- package/dist/redux/reducers/app/pagination/initPagination.js +16 -0
- package/dist/redux/reducers/app/pagination/updateAvailableAppStates.d.ts +3 -0
- package/dist/redux/reducers/app/pagination/updateAvailableAppStates.js +43 -0
- package/dist/redux/reducers/app/pagination.test.d.ts +1 -0
- package/dist/redux/reducers/app/pagination.test.js +134 -0
- package/dist/redux/reducers/app/wizard/updateAvailableSections.d.ts +3 -0
- package/dist/redux/reducers/app/wizard/updateAvailableSections.js +12 -0
- package/dist/redux/reducers/app/wizard.test.d.ts +1 -0
- package/dist/redux/reducers/app/wizard.test.js +53 -0
- package/dist/redux/reducers/app.d.ts +9 -0
- package/dist/redux/reducers/app.js +79 -0
- package/dist/redux/reducers/app.test.d.ts +1 -0
- package/dist/redux/reducers/app.test.js +166 -0
- package/dist/redux/reducers/conditions/addMultipleOccurency.d.ts +3 -0
- package/dist/redux/reducers/conditions/addMultipleOccurency.js +68 -0
- package/dist/redux/reducers/conditions/addMultipleOccurency.test.d.ts +1 -0
- package/dist/redux/reducers/conditions/addMultipleOccurency.test.js +108 -0
- package/dist/redux/reducers/conditions/deleteMultipleOccurency.d.ts +3 -0
- package/dist/redux/reducers/conditions/deleteMultipleOccurency.js +56 -0
- package/dist/redux/reducers/conditions/deleteMultipleOccurency.test.d.ts +1 -0
- package/dist/redux/reducers/conditions/deleteMultipleOccurency.test.js +77 -0
- package/dist/redux/reducers/conditions/initConditions.d.ts +3 -0
- package/dist/redux/reducers/conditions/initConditions.js +11 -0
- package/dist/redux/reducers/conditions/updateDocumentConditions.d.ts +3 -0
- package/dist/redux/reducers/conditions/updateDocumentConditions.js +6 -0
- package/dist/redux/reducers/conditions/updateDocumentConditions.test.d.ts +1 -0
- package/dist/redux/reducers/conditions/updateDocumentConditions.test.js +35 -0
- package/dist/redux/reducers/conditions/updateOptionConditions.d.ts +3 -0
- package/dist/redux/reducers/conditions/updateOptionConditions.js +10 -0
- package/dist/redux/reducers/conditions/updateOptionValidatorCondition.d.ts +3 -0
- package/dist/redux/reducers/conditions/updateOptionValidatorCondition.js +10 -0
- package/dist/redux/reducers/conditions/updateOptionValidatorCondition.test.d.ts +1 -0
- package/dist/redux/reducers/conditions/updateOptionValidatorCondition.test.js +35 -0
- package/dist/redux/reducers/conditions/updatePrefillerConditions.d.ts +3 -0
- package/dist/redux/reducers/conditions/updatePrefillerConditions.js +12 -0
- package/dist/redux/reducers/conditions/updateSectionConditions.d.ts +3 -0
- package/dist/redux/reducers/conditions/updateSectionConditions.js +8 -0
- package/dist/redux/reducers/conditions/updateVariableConditions.d.ts +3 -0
- package/dist/redux/reducers/conditions/updateVariableConditions.js +10 -0
- package/dist/redux/reducers/conditions/updateVariableValidatorCondition.d.ts +3 -0
- package/dist/redux/reducers/conditions/updateVariableValidatorCondition.js +10 -0
- package/dist/redux/reducers/conditions/updateVariableValidatorCondition.test.d.ts +1 -0
- package/dist/redux/reducers/conditions/updateVariableValidatorCondition.test.js +35 -0
- package/dist/redux/reducers/conditions.d.ts +3 -0
- package/dist/redux/reducers/conditions.js +41 -0
- package/dist/redux/reducers/conditions.test.d.ts +1 -0
- package/dist/redux/reducers/conditions.test.js +196 -0
- package/dist/redux/reducers/inputs/addMultipleOccurency.d.ts +3 -0
- package/dist/redux/reducers/inputs/addMultipleOccurency.js +27 -0
- package/dist/redux/reducers/inputs/addMultipleOccurency.test.d.ts +1 -0
- package/dist/redux/reducers/inputs/addMultipleOccurency.test.js +101 -0
- package/dist/redux/reducers/inputs/deleteMultipleOccurency.d.ts +3 -0
- package/dist/redux/reducers/inputs/deleteMultipleOccurency.js +27 -0
- package/dist/redux/reducers/inputs/deleteMultipleOccurency.test.d.ts +1 -0
- package/dist/redux/reducers/inputs/deleteMultipleOccurency.test.js +56 -0
- package/dist/redux/reducers/inputs/initOption.d.ts +3 -0
- package/dist/redux/reducers/inputs/initOption.js +4 -0
- package/dist/redux/reducers/inputs/initVariable.d.ts +3 -0
- package/dist/redux/reducers/inputs/initVariable.js +4 -0
- package/dist/redux/reducers/inputs/updateOptionInput.d.ts +3 -0
- package/dist/redux/reducers/inputs/updateOptionInput.js +10 -0
- package/dist/redux/reducers/inputs/updateVariableInput.d.ts +3 -0
- package/dist/redux/reducers/inputs/updateVariableInput.js +10 -0
- package/dist/redux/reducers/inputs.d.ts +3 -0
- package/dist/redux/reducers/inputs.js +25 -0
- package/dist/redux/reducers/inputs.test.d.ts +1 -0
- package/dist/redux/reducers/inputs.test.js +171 -0
- package/dist/redux/reducers/mandatories/addMultipleOccurency.d.ts +3 -0
- package/dist/redux/reducers/mandatories/addMultipleOccurency.js +23 -0
- package/dist/redux/reducers/mandatories/deleteMultipleOccurency.d.ts +3 -0
- package/dist/redux/reducers/mandatories/deleteMultipleOccurency.js +26 -0
- package/dist/redux/reducers/mandatories/initMandatoryOption.d.ts +3 -0
- package/dist/redux/reducers/mandatories/initMandatoryOption.js +4 -0
- package/dist/redux/reducers/mandatories/initMandatoryVariable.d.ts +3 -0
- package/dist/redux/reducers/mandatories/initMandatoryVariable.js +4 -0
- package/dist/redux/reducers/mandatories/setMandatoryIgnore.d.ts +3 -0
- package/dist/redux/reducers/mandatories/setMandatoryIgnore.js +6 -0
- package/dist/redux/reducers/mandatories/setMandatoryOption.d.ts +3 -0
- package/dist/redux/reducers/mandatories/setMandatoryOption.js +10 -0
- package/dist/redux/reducers/mandatories/setMandatorySection.d.ts +3 -0
- package/dist/redux/reducers/mandatories/setMandatorySection.js +6 -0
- package/dist/redux/reducers/mandatories/setMandatoryVariable.d.ts +3 -0
- package/dist/redux/reducers/mandatories/setMandatoryVariable.js +10 -0
- package/dist/redux/reducers/mandatories.d.ts +3 -0
- package/dist/redux/reducers/mandatories.js +32 -0
- package/dist/redux/reducers/references/initReferences.d.ts +3 -0
- package/dist/redux/reducers/references/initReferences.js +13 -0
- package/dist/redux/reducers/references/updateOptionMeta.d.ts +3 -0
- package/dist/redux/reducers/references/updateOptionMeta.js +27 -0
- package/dist/redux/reducers/references/updateVariableMeta.d.ts +3 -0
- package/dist/redux/reducers/references/updateVariableMeta.js +33 -0
- package/dist/redux/reducers/references.d.ts +3 -0
- package/dist/redux/reducers/references.js +41 -0
- package/dist/redux/reducers/smartscript/enableSmartScript.d.ts +2 -0
- package/dist/redux/reducers/smartscript/enableSmartScript.js +5 -0
- package/dist/redux/reducers/smartscript/initSmartScriptTriggers.d.ts +3 -0
- package/dist/redux/reducers/smartscript/initSmartScriptTriggers.js +4 -0
- package/dist/redux/reducers/smartscript/updateSmartscriptOptionHidden.d.ts +3 -0
- package/dist/redux/reducers/smartscript/updateSmartscriptOptionHidden.js +13 -0
- package/dist/redux/reducers/smartscript/updateSmartscriptVariableHidden.d.ts +3 -0
- package/dist/redux/reducers/smartscript/updateSmartscriptVariableHidden.js +13 -0
- package/dist/redux/reducers/smartscript.d.ts +3 -0
- package/dist/redux/reducers/smartscript.js +28 -0
- package/dist/redux/reducers/user/initUser.d.ts +3 -0
- package/dist/redux/reducers/user/initUser.js +6 -0
- package/dist/redux/reducers/user/setUserStatus.d.ts +3 -0
- package/dist/redux/reducers/user/setUserStatus.js +4 -0
- package/dist/redux/reducers/user/setUserValidToken.d.ts +3 -0
- package/dist/redux/reducers/user/setUserValidToken.js +4 -0
- package/dist/redux/reducers/user.d.ts +3 -0
- package/dist/redux/reducers/user.js +23 -0
- package/dist/redux/reducers/user.test.d.ts +1 -0
- package/dist/redux/reducers/user.test.js +42 -0
- package/dist/redux/routerHistore.test.d.ts +1 -0
- package/dist/redux/routerHistore.test.js +15 -0
- package/dist/redux/routerHistory.d.ts +3 -0
- package/dist/redux/routerHistory.js +12 -0
- package/dist/redux/sagas/fetchModel.d.ts +26 -0
- package/dist/redux/sagas/fetchModel.js +372 -0
- package/dist/redux/sagas/fetchModel.test.d.ts +1 -0
- package/dist/redux/sagas/fetchModel.test.js +56 -0
- package/dist/redux/sagas/homogeneousRadioInputsSaga.d.ts +2 -0
- package/dist/redux/sagas/homogeneousRadioInputsSaga.js +22 -0
- package/dist/redux/sagas/runner.d.ts +2 -0
- package/dist/redux/sagas/runner.js +15 -0
- package/dist/redux/sagas/runner.test.d.ts +1 -0
- package/dist/redux/sagas/runner.test.js +10 -0
- package/dist/redux/sagas/saveData.d.ts +2 -0
- package/dist/redux/sagas/saveData.js +71 -0
- package/dist/redux/sagas/saveData.test.d.ts +1 -0
- package/dist/redux/sagas/saveData.test.js +74 -0
- package/dist/redux/sagas/setDefaults.d.ts +2 -0
- package/dist/redux/sagas/setDefaults.js +102 -0
- package/dist/redux/sagas/setDefaults.test.d.ts +1 -0
- package/dist/redux/sagas/setDefaults.test.js +73 -0
- package/dist/redux/sagas/setUserEmail.d.ts +2 -0
- package/dist/redux/sagas/setUserEmail.js +136 -0
- package/dist/redux/selectors/app.d.ts +30 -0
- package/dist/redux/selectors/app.js +100 -0
- package/dist/redux/selectors/app.test.d.ts +1 -0
- package/dist/redux/selectors/app.test.js +99 -0
- package/dist/redux/selectors/conditions.d.ts +14 -0
- package/dist/redux/selectors/conditions.js +140 -0
- package/dist/redux/selectors/conditions.test.d.ts +1 -0
- package/dist/redux/selectors/conditions.test.js +70 -0
- package/dist/redux/selectors/index.d.ts +7 -0
- package/dist/redux/selectors/index.js +7 -0
- package/dist/redux/selectors/inputs.d.ts +7 -0
- package/dist/redux/selectors/inputs.js +20 -0
- package/dist/redux/selectors/inputs.test.d.ts +1 -0
- package/dist/redux/selectors/inputs.test.js +44 -0
- package/dist/redux/selectors/mandatories.d.ts +8 -0
- package/dist/redux/selectors/mandatories.js +26 -0
- package/dist/redux/selectors/references.d.ts +29 -0
- package/dist/redux/selectors/references.js +180 -0
- package/dist/redux/selectors/references.test.d.ts +1 -0
- package/dist/redux/selectors/references.test.js +469 -0
- package/dist/redux/selectors/selectors.d.ts +8 -0
- package/dist/redux/selectors/selectors.js +29 -0
- package/dist/redux/selectors/selectors.test.d.ts +1 -0
- package/dist/redux/selectors/selectors.test.js +16 -0
- package/dist/redux/selectors/smartscript.d.ts +2 -0
- package/dist/redux/selectors/smartscript.js +11 -0
- package/dist/redux/selectors/user.d.ts +5 -0
- package/dist/redux/selectors/user.js +14 -0
- package/dist/redux/selectors/user.test.d.ts +1 -0
- package/dist/redux/selectors/user.test.js +28 -0
- package/dist/redux/store.d.ts +2 -0
- package/dist/redux/store.js +53 -0
- package/dist/redux/store.test.d.ts +1 -0
- package/dist/redux/store.test.js +16 -0
- package/dist/service/api.manager.d.ts +14 -0
- package/dist/service/api.manager.js +159 -0
- package/dist/service/auth.service.d.ts +1 -0
- package/dist/service/auth.service.js +3 -0
- package/dist/service/index.d.ts +3 -0
- package/dist/service/index.js +3 -0
- package/dist/service/pardot.service.d.ts +4 -0
- package/dist/service/pardot.service.js +7 -0
- package/dist/tests-misc/plugins/jestTestPlugin/after.d.ts +3 -0
- package/dist/tests-misc/plugins/jestTestPlugin/after.js +3 -0
- package/dist/tests-misc/plugins/jestTestPlugin/before.d.ts +3 -0
- package/dist/tests-misc/plugins/jestTestPlugin/before.js +6 -0
- package/dist/tests-misc/plugins/jestTestPlugin/index.d.ts +8 -0
- package/dist/tests-misc/plugins/jestTestPlugin/index.js +9 -0
- package/dist/tests-misc/plugins/jestTestPlugin/title.d.ts +3 -0
- package/dist/tests-misc/plugins/jestTestPlugin/title.js +6 -0
- package/dist/tests-misc/themes/jestTestTheme/components/EmailComponent.d.ts +3 -0
- package/dist/tests-misc/themes/jestTestTheme/components/EmailComponent.js +5 -0
- package/dist/tests-misc/themes/jestTestTheme/components/TermsheetComponent.d.ts +3 -0
- package/dist/tests-misc/themes/jestTestTheme/components/TermsheetComponent.js +5 -0
- package/dist/tests-misc/themes/jestTestTheme/components/WizardComponent.d.ts +3 -0
- package/dist/tests-misc/themes/jestTestTheme/components/WizardComponent.js +5 -0
- package/dist/tests-misc/themes/jestTestTheme/faltyIndex.d.ts +1 -0
- package/dist/tests-misc/themes/jestTestTheme/faltyIndex.js +3 -0
- package/dist/tests-misc/themes/jestTestTheme/faltyIndexLoader.d.ts +1 -0
- package/dist/tests-misc/themes/jestTestTheme/faltyIndexLoader.js +1 -0
- package/dist/tests-misc/themes/jestTestTheme/index.d.ts +6 -0
- package/dist/tests-misc/themes/jestTestTheme/index.js +9 -0
- package/dist/types/Actions.type.d.ts +334 -0
- package/dist/types/Actions.type.js +1 -0
- package/dist/types/Components.type.d.ts +127 -0
- package/dist/types/Components.type.js +1 -0
- package/dist/types/State.type.d.ts +265 -0
- package/dist/types/State.type.js +1 -0
- package/dist/types/Termsheet.type.d.ts +25 -0
- package/dist/types/Termsheet.type.js +1 -0
- package/dist/types/api.type.d.ts +33 -0
- package/dist/types/api.type.js +1 -0
- package/dist/types/config.type.d.ts +48 -0
- package/dist/types/config.type.js +1 -0
- package/dist/types/env.type.d.ts +5 -0
- package/dist/types/env.type.js +1 -0
- package/dist/types/getActions.type.d.ts +2 -0
- package/dist/types/getActions.type.js +1 -0
- package/dist/types/getConnectors.type.d.ts +4 -0
- package/dist/types/getConnectors.type.js +1 -0
- package/dist/types/getSelectors.type.d.ts +2 -0
- package/dist/types/getSelectors.type.js +1 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/index.js +10 -0
- package/dist/wizard-params.d.ts +3 -0
- package/dist/wizard-params.js +38 -0
- package/jest.config.ts +196 -0
- package/package.json +86 -0
- package/src/App.test.tsx +41 -0
- package/src/App.tsx +118 -0
- package/src/Globals.ts +64 -0
- package/src/PluginLoader.test.tsx +70 -0
- package/src/PluginLoader.tsx +409 -0
- package/src/Shimmer.tsx +97 -0
- package/src/ThemeLoader.test.tsx +81 -0
- package/src/ThemeLoader.tsx +111 -0
- package/src/components/PluginRoute.tsx +46 -0
- package/src/components/SmartScript.tsx +165 -0
- package/src/components/UserLocked/UserLockedComponent.tsx +33 -0
- package/src/components/View.test.tsx +107 -0
- package/src/components/View.tsx +116 -0
- package/src/componentsConnectors/connectBox.test.tsx +226 -0
- package/src/componentsConnectors/connectBox.tsx +70 -0
- package/src/componentsConnectors/connectDocument.test.tsx +108 -0
- package/src/componentsConnectors/connectDocument.tsx +64 -0
- package/src/componentsConnectors/connectHeader.tsx +21 -0
- package/src/componentsConnectors/connectMetaTitle.test.tsx +40 -0
- package/src/componentsConnectors/connectMetaTitle.tsx +8 -0
- package/src/componentsConnectors/connectOption.tsx +222 -0
- package/src/componentsConnectors/connectPagination.tsx +104 -0
- package/src/componentsConnectors/connectPreview.tsx +5 -0
- package/src/componentsConnectors/connectProgress.tsx +59 -0
- package/src/componentsConnectors/connectRootOption.tsx +95 -0
- package/src/componentsConnectors/connectSection.tsx +79 -0
- package/src/componentsConnectors/connectSummary.tsx +21 -0
- package/src/componentsConnectors/connectSummaryItem.tsx +102 -0
- package/src/componentsConnectors/connectTermsheet.tsx +359 -0
- package/src/componentsConnectors/connectVariable.tsx +191 -0
- package/src/componentsConnectors/connectWizardWrapper.tsx +30 -0
- package/src/componentsConnectors/connector/componentConnector.tsx +217 -0
- package/src/componentsConnectors/connector/connectorSelectors.ts +19 -0
- package/src/componentsConnectors/index.ts +16 -0
- package/src/config.test.ts +30 -0
- package/src/config.ts +17 -0
- package/src/constants/emailValidation.ts +2 -0
- package/src/constants/index.ts +1 -0
- package/src/definitions/path.join.d.ts +4 -0
- package/src/helpers/index.ts +2 -0
- package/src/helpers/outputsParsing.ts +412 -0
- package/src/helpers/sendinblueHelper.ts +59 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/usePrevious.ts +9 -0
- package/src/index.ts +47 -0
- package/src/libs/ConditionsInitiator.ts +164 -0
- package/src/libs/ConditionsRunner/DataPopulator.ts +266 -0
- package/src/libs/ConditionsRunner.ts +454 -0
- package/src/libs/DocumentsOutputs.ts +171 -0
- package/src/libs/Eval/EvalBase.ts +116 -0
- package/src/libs/Eval/EvalFunctions.ts +724 -0
- package/src/libs/Eval/NumbersToLetters.ts +185 -0
- package/src/libs/EvalVariable.ts +262 -0
- package/src/libs/EventsTracking.ts +241 -0
- package/src/libs/Extracts.ts +159 -0
- package/src/libs/InputsInitiator.ts +136 -0
- package/src/libs/NumAuto.test.ts +55 -0
- package/src/libs/NumAuto.ts +56 -0
- package/src/libs/OvcConverter.ts +285 -0
- package/src/libs/PathReader.ts +272 -0
- package/src/libs/SectionValidity.test.ts +146 -0
- package/src/libs/SectionValidity.ts +110 -0
- package/src/libs/SmartScriptStore.ts +492 -0
- package/src/libs/index.ts +12 -0
- package/src/misc/test_model.ts +14603 -0
- package/src/misc/test_models/connectDocumen.testmodel.json +178 -0
- package/src/misc/test_models/setDefaults.testmodel.json +279 -0
- package/src/misc/test_models/testmodel.json +1 -0
- package/src/polyfills/objectValues.ts +5 -0
- package/src/polyfills/prepend.ts +31 -0
- package/src/polyfills/stringRepeat.ts +44 -0
- package/src/redux/actions/app.test.ts +123 -0
- package/src/redux/actions/app.ts +249 -0
- package/src/redux/actions/conditions.test.ts +84 -0
- package/src/redux/actions/conditions.ts +135 -0
- package/src/redux/actions/index.ts +8 -0
- package/src/redux/actions/inputs.test.ts +85 -0
- package/src/redux/actions/inputs.ts +95 -0
- package/src/redux/actions/mandatories.ts +98 -0
- package/src/redux/actions/references.test.ts +48 -0
- package/src/redux/actions/references.ts +37 -0
- package/src/redux/actions/sagas/data.test.ts +11 -0
- package/src/redux/actions/sagas/data.ts +18 -0
- package/src/redux/actions/sagas/index.ts +3 -0
- package/src/redux/actions/sagas/model.test.ts +14 -0
- package/src/redux/actions/sagas/model.ts +48 -0
- package/src/redux/actions/sagas/user.ts +25 -0
- package/src/redux/actions/smartscript.ts +55 -0
- package/src/redux/actions/user.test.ts +18 -0
- package/src/redux/actions/user.ts +41 -0
- package/src/redux/constants/app.ts +36 -0
- package/src/redux/constants/conditions.ts +25 -0
- package/src/redux/constants/index.ts +8 -0
- package/src/redux/constants/inputs.ts +13 -0
- package/src/redux/constants/mandatories.ts +11 -0
- package/src/redux/constants/references.ts +7 -0
- package/src/redux/constants/sagas/data.ts +1 -0
- package/src/redux/constants/sagas/index.ts +3 -0
- package/src/redux/constants/sagas/model.ts +2 -0
- package/src/redux/constants/sagas/user.ts +2 -0
- package/src/redux/constants/smartscript.ts +9 -0
- package/src/redux/constants/user.ts +6 -0
- package/src/redux/index.ts +4 -0
- package/src/redux/listeners/subscriber.test.ts +45 -0
- package/src/redux/listeners/subscriber.ts +29 -0
- package/src/redux/middlewares/conditionsWatcherMiddleware.test.ts +370 -0
- package/src/redux/middlewares/conditionsWatcherMiddleware.ts +321 -0
- package/src/redux/middlewares/evaluationsWatcherMiddleware.test.ts +323 -0
- package/src/redux/middlewares/evaluationsWatcherMiddleware.ts +250 -0
- package/src/redux/middlewares/mandatoriesWatcherMiddleware.ts +473 -0
- package/src/redux/middlewares/multiplesActionsMiddleware.test.ts +230 -0
- package/src/redux/middlewares/multiplesActionsMiddleware.ts +121 -0
- package/src/redux/middlewares/paginationWatcherMiddleware.ts +251 -0
- package/src/redux/middlewares/pluginsHookMiddleware.ts +24 -0
- package/src/redux/middlewares/prefillerWatcherMiddleware.test.ts +118 -0
- package/src/redux/middlewares/prefillerWatcherMiddleware.ts +462 -0
- package/src/redux/middlewares/smartscriptMiddleware.ts +171 -0
- package/src/redux/reducers/app/customizations/initCustomizationAutoDefault.ts +16 -0
- package/src/redux/reducers/app/customizations/initCustomizationMeta.ts +16 -0
- package/src/redux/reducers/app/instance/initInstance.ts +29 -0
- package/src/redux/reducers/app/instance/setDataStatus.ts +16 -0
- package/src/redux/reducers/app/instance/updateInstance.ts +30 -0
- package/src/redux/reducers/app/instance/updateInstancePaid.ts +20 -0
- package/src/redux/reducers/app/instance.test.ts +106 -0
- package/src/redux/reducers/app/meta/fetchModelFailed.ts +13 -0
- package/src/redux/reducers/app/meta/fetchModelNonBlocking.ts +13 -0
- package/src/redux/reducers/app/meta/fetchModelSucceeded.ts +13 -0
- package/src/redux/reducers/app/meta/fetchModelUnhealthy.ts +18 -0
- package/src/redux/reducers/app/meta/fetchModelUserLocked.ts +13 -0
- package/src/redux/reducers/app/meta/initMeta.ts +22 -0
- package/src/redux/reducers/app/meta/setModelUuid.ts +17 -0
- package/src/redux/reducers/app/meta.test.ts +90 -0
- package/src/redux/reducers/app/pagination/goNextPage.ts +69 -0
- package/src/redux/reducers/app/pagination/goPage.ts +81 -0
- package/src/redux/reducers/app/pagination/goPreviousPage.ts +60 -0
- package/src/redux/reducers/app/pagination/initPagination.ts +46 -0
- package/src/redux/reducers/app/pagination/updateAvailableAppStates.ts +77 -0
- package/src/redux/reducers/app/pagination.test.ts +363 -0
- package/src/redux/reducers/app/wizard/updateAvailableSections.ts +40 -0
- package/src/redux/reducers/app/wizard.test.ts +84 -0
- package/src/redux/reducers/app.test.ts +336 -0
- package/src/redux/reducers/app.ts +150 -0
- package/src/redux/reducers/conditions/addMultipleOccurency.test.ts +131 -0
- package/src/redux/reducers/conditions/addMultipleOccurency.ts +155 -0
- package/src/redux/reducers/conditions/deleteMultipleOccurency.test.ts +95 -0
- package/src/redux/reducers/conditions/deleteMultipleOccurency.ts +141 -0
- package/src/redux/reducers/conditions/initConditions.ts +18 -0
- package/src/redux/reducers/conditions/updateDocumentConditions.test.ts +47 -0
- package/src/redux/reducers/conditions/updateDocumentConditions.ts +21 -0
- package/src/redux/reducers/conditions/updateOptionConditions.ts +24 -0
- package/src/redux/reducers/conditions/updateOptionValidatorCondition.test.ts +50 -0
- package/src/redux/reducers/conditions/updateOptionValidatorCondition.ts +28 -0
- package/src/redux/reducers/conditions/updatePrefillerConditions.ts +29 -0
- package/src/redux/reducers/conditions/updateSectionConditions.ts +28 -0
- package/src/redux/reducers/conditions/updateVariableConditions.ts +25 -0
- package/src/redux/reducers/conditions/updateVariableValidatorCondition.test.ts +50 -0
- package/src/redux/reducers/conditions/updateVariableValidatorCondition.ts +28 -0
- package/src/redux/reducers/conditions.test.ts +241 -0
- package/src/redux/reducers/conditions.ts +68 -0
- package/src/redux/reducers/inputs/addMultipleOccurency.test.ts +117 -0
- package/src/redux/reducers/inputs/addMultipleOccurency.ts +50 -0
- package/src/redux/reducers/inputs/deleteMultipleOccurency.test.ts +70 -0
- package/src/redux/reducers/inputs/deleteMultipleOccurency.ts +50 -0
- package/src/redux/reducers/inputs/initOption.ts +16 -0
- package/src/redux/reducers/inputs/initVariable.ts +16 -0
- package/src/redux/reducers/inputs/updateOptionInput.ts +24 -0
- package/src/redux/reducers/inputs/updateVariableInput.ts +24 -0
- package/src/redux/reducers/inputs.test.ts +221 -0
- package/src/redux/reducers/inputs.ts +51 -0
- package/src/redux/reducers/mandatories/addMultipleOccurency.ts +52 -0
- package/src/redux/reducers/mandatories/deleteMultipleOccurency.ts +55 -0
- package/src/redux/reducers/mandatories/initMandatoryOption.ts +17 -0
- package/src/redux/reducers/mandatories/initMandatoryVariable.ts +17 -0
- package/src/redux/reducers/mandatories/setMandatoryIgnore.ts +17 -0
- package/src/redux/reducers/mandatories/setMandatoryOption.ts +25 -0
- package/src/redux/reducers/mandatories/setMandatorySection.ts +20 -0
- package/src/redux/reducers/mandatories/setMandatoryVariable.ts +24 -0
- package/src/redux/reducers/mandatories.ts +56 -0
- package/src/redux/reducers/references/initReferences.ts +37 -0
- package/src/redux/reducers/references/updateOptionMeta.ts +73 -0
- package/src/redux/reducers/references/updateVariableMeta.ts +72 -0
- package/src/redux/reducers/references.ts +59 -0
- package/src/redux/reducers/smartscript/enableSmartScript.ts +13 -0
- package/src/redux/reducers/smartscript/initSmartScriptTriggers.ts +14 -0
- package/src/redux/reducers/smartscript/updateSmartscriptOptionHidden.ts +30 -0
- package/src/redux/reducers/smartscript/updateSmartscriptVariableHidden.ts +30 -0
- package/src/redux/reducers/smartscript.ts +47 -0
- package/src/redux/reducers/user/initUser.ts +15 -0
- package/src/redux/reducers/user/setUserStatus.ts +13 -0
- package/src/redux/reducers/user/setUserValidToken.ts +13 -0
- package/src/redux/reducers/user.test.ts +51 -0
- package/src/redux/reducers/user.ts +40 -0
- package/src/redux/routerHistore.test.ts +19 -0
- package/src/redux/routerHistory.ts +21 -0
- package/src/redux/sagas/fetchModel.test.ts +79 -0
- package/src/redux/sagas/fetchModel.ts +787 -0
- package/src/redux/sagas/homogeneousRadioInputsSaga.ts +42 -0
- package/src/redux/sagas/runner.test.ts +12 -0
- package/src/redux/sagas/runner.ts +24 -0
- package/src/redux/sagas/saveData.test.ts +125 -0
- package/src/redux/sagas/saveData.ts +112 -0
- package/src/redux/sagas/setDefaults.test.ts +100 -0
- package/src/redux/sagas/setDefaults.ts +167 -0
- package/src/redux/sagas/setUserEmail.ts +220 -0
- package/src/redux/selectors/app.test.ts +162 -0
- package/src/redux/selectors/app.ts +328 -0
- package/src/redux/selectors/conditions.test.ts +92 -0
- package/src/redux/selectors/conditions.ts +293 -0
- package/src/redux/selectors/index.ts +7 -0
- package/src/redux/selectors/inputs.test.ts +72 -0
- package/src/redux/selectors/inputs.ts +76 -0
- package/src/redux/selectors/mandatories.ts +83 -0
- package/src/redux/selectors/references.test.ts +660 -0
- package/src/redux/selectors/references.ts +410 -0
- package/src/redux/selectors/selectors.test.ts +21 -0
- package/src/redux/selectors/selectors.ts +87 -0
- package/src/redux/selectors/smartscript.ts +30 -0
- package/src/redux/selectors/user.test.ts +39 -0
- package/src/redux/selectors/user.ts +45 -0
- package/src/redux/store.test.ts +22 -0
- package/src/redux/store.ts +90 -0
- package/src/service/api.manager.ts +261 -0
- package/src/service/auth.service.ts +5 -0
- package/src/service/index.ts +3 -0
- package/src/service/pardot.service.ts +12 -0
- package/src/tests-misc/plugins/jestTestPlugin/after.tsx +5 -0
- package/src/tests-misc/plugins/jestTestPlugin/before.tsx +11 -0
- package/src/tests-misc/plugins/jestTestPlugin/index.ts +11 -0
- package/src/tests-misc/plugins/jestTestPlugin/title.tsx +8 -0
- package/src/tests-misc/themes/jestTestTheme/components/EmailComponent.tsx +7 -0
- package/src/tests-misc/themes/jestTestTheme/components/TermsheetComponent.tsx +7 -0
- package/src/tests-misc/themes/jestTestTheme/components/WizardComponent.tsx +7 -0
- package/src/tests-misc/themes/jestTestTheme/faltyIndex.ts +3 -0
- package/src/tests-misc/themes/jestTestTheme/faltyIndexLoader.ts +1 -0
- package/src/tests-misc/themes/jestTestTheme/index.ts +13 -0
- package/src/types/Actions.type.ts +604 -0
- package/src/types/Components.type.ts +181 -0
- package/src/types/State.type.ts +323 -0
- package/src/types/Termsheet.type.ts +28 -0
- package/src/types/api.type.ts +37 -0
- package/src/types/config.type.ts +51 -0
- package/src/types/env.type.ts +5 -0
- package/src/types/getActions.type.ts +3 -0
- package/src/types/getConnectors.type.ts +5 -0
- package/src/types/getSelectors.type.ts +3 -0
- package/src/types/index.ts +10 -0
- package/src/wizard-params.ts +55 -0
- package/tsconfig.json +43 -0
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
import {
|
|
2
|
+
selectVariableReference,
|
|
3
|
+
selectVariableParents,
|
|
4
|
+
selectOptionRelations,
|
|
5
|
+
selectOptionParents,
|
|
6
|
+
} from '../../redux/selectors/references';
|
|
7
|
+
import {
|
|
8
|
+
selectVariableInput,
|
|
9
|
+
selectOptionInput,
|
|
10
|
+
} from '../../redux/selectors/inputs';
|
|
11
|
+
import {
|
|
12
|
+
selectVariableConditionValue,
|
|
13
|
+
selectOptionConditionValue,
|
|
14
|
+
selectSectionConditionValue,
|
|
15
|
+
} from '../../redux/selectors/conditions';
|
|
16
|
+
|
|
17
|
+
class DataPopulator {
|
|
18
|
+
private id?: number;
|
|
19
|
+
|
|
20
|
+
private index?: number;
|
|
21
|
+
|
|
22
|
+
private dataMap: ConditionDataMap;
|
|
23
|
+
|
|
24
|
+
private data: ConditionData = {
|
|
25
|
+
o: {},
|
|
26
|
+
v: {},
|
|
27
|
+
c: {
|
|
28
|
+
o: {},
|
|
29
|
+
s: {},
|
|
30
|
+
v: {},
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
constructor(dataMap: ConditionDataMap, id?: number, index?: number) {
|
|
35
|
+
this.id = id;
|
|
36
|
+
this.index = index;
|
|
37
|
+
this.dataMap = dataMap;
|
|
38
|
+
|
|
39
|
+
// Populating variables
|
|
40
|
+
this.populateVariables();
|
|
41
|
+
|
|
42
|
+
// Populating options
|
|
43
|
+
this.populateOptions();
|
|
44
|
+
|
|
45
|
+
// Populating conditions
|
|
46
|
+
this.populateConditions();
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Returns resulting data object
|
|
51
|
+
*/
|
|
52
|
+
public getData(): Readonly<ConditionData> {
|
|
53
|
+
return this.data;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
private populateConditions(): void {
|
|
57
|
+
// Sections
|
|
58
|
+
for (let i = 0; i < this.dataMap.c.s.length; i += 1) {
|
|
59
|
+
const sectionId = this.dataMap.c.s[i];
|
|
60
|
+
const sectionCondition = selectSectionConditionValue(sectionId);
|
|
61
|
+
this.data.c.s[sectionId] = [sectionCondition !== false];
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Options
|
|
65
|
+
for (let i = 0; i < this.dataMap.c.o.length; i += 1) {
|
|
66
|
+
const optionId = this.dataMap.c.o[i];
|
|
67
|
+
const optionCondition = [...this.getOptionConditions(optionId)];
|
|
68
|
+
this.data.c.o[optionId] =
|
|
69
|
+
optionCondition === undefined ? [false] : optionCondition;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Variables
|
|
73
|
+
for (let i = 0; i < this.dataMap.c.v.length; i += 1) {
|
|
74
|
+
const variableId = this.dataMap.c.v[i];
|
|
75
|
+
const variableCondition = [...this.getVariablesConditions(variableId)];
|
|
76
|
+
this.data.c.v[variableId] =
|
|
77
|
+
variableCondition === undefined ? [false] : variableCondition;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Returns a give option's conditions
|
|
83
|
+
* @param optionId Option's id
|
|
84
|
+
*/
|
|
85
|
+
private getOptionConditions(optionId: number): Readonly<boolean[]> {
|
|
86
|
+
const conditions = selectOptionConditionValue(optionId);
|
|
87
|
+
if (conditions === undefined) return [true];
|
|
88
|
+
if (this.id === undefined || this.index === undefined) {
|
|
89
|
+
return conditions;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Getting variable parent option
|
|
93
|
+
const optionRootParent = this.getOptionRootParent(optionId);
|
|
94
|
+
const optionRootRelations = selectOptionRelations(optionRootParent);
|
|
95
|
+
if (
|
|
96
|
+
optionRootRelations.children.options.includes(this.id) ||
|
|
97
|
+
optionRootRelations.dependants.includes(this.id) ||
|
|
98
|
+
this.id === optionRootParent
|
|
99
|
+
) {
|
|
100
|
+
if (conditions !== undefined && conditions[this.index] === false)
|
|
101
|
+
return [false];
|
|
102
|
+
return [conditions[this.index]];
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return conditions;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Returns a give variables conditions
|
|
110
|
+
* @param variableId Variable's id
|
|
111
|
+
*/
|
|
112
|
+
private getVariablesConditions(variableId: number): Readonly<boolean[]> {
|
|
113
|
+
const conditions = selectVariableConditionValue(variableId);
|
|
114
|
+
if (conditions === undefined) return [true];
|
|
115
|
+
if (this.id === undefined || this.index === undefined) {
|
|
116
|
+
return conditions;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// Getting variable parent option
|
|
120
|
+
const variableRootParent = this.getVariableRootParent(variableId);
|
|
121
|
+
const variableRootRelations = selectOptionRelations(variableRootParent);
|
|
122
|
+
if (
|
|
123
|
+
variableRootRelations.children.options.includes(this.id) ||
|
|
124
|
+
variableRootRelations.dependants.includes(this.id) ||
|
|
125
|
+
this.id === variableRootParent
|
|
126
|
+
) {
|
|
127
|
+
return [conditions[this.index]];
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
return conditions;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Populates variables according to the current dataMap object
|
|
135
|
+
*/
|
|
136
|
+
private populateVariables(): void {
|
|
137
|
+
for (let i = 0; i < this.dataMap.v.length; i += 1) {
|
|
138
|
+
const variableId = this.dataMap.v[i];
|
|
139
|
+
const variableReference = selectVariableReference(variableId);
|
|
140
|
+
let values = this.getVariableValues(variableId);
|
|
141
|
+
|
|
142
|
+
// If variable is of type number
|
|
143
|
+
if (variableReference.type === 'number') {
|
|
144
|
+
values = values
|
|
145
|
+
.map((v) => (typeof v === 'number' ? v : parseFloat(v)))
|
|
146
|
+
.map((v) => (Number.isNaN(v) ? '' : v));
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// Adding variables
|
|
150
|
+
this.data.v[variableId] = [...values];
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Returns a give variables value
|
|
156
|
+
* @param variableId Variable's id
|
|
157
|
+
*/
|
|
158
|
+
private getVariableValues(variableId: number): Readonly<(string | number)[]> {
|
|
159
|
+
const value = selectVariableInput(variableId);
|
|
160
|
+
if (this.id === undefined || this.index === undefined) {
|
|
161
|
+
return value;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Getting variable parent option
|
|
165
|
+
const variableRootParent = this.getVariableRootParent(variableId);
|
|
166
|
+
const variableRootRelations = selectOptionRelations(variableRootParent);
|
|
167
|
+
if (
|
|
168
|
+
variableRootRelations.children.options.includes(this.id) ||
|
|
169
|
+
variableRootRelations.dependants.includes(this.id) ||
|
|
170
|
+
this.id === variableRootParent
|
|
171
|
+
) {
|
|
172
|
+
return [value[this.index]];
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
return this.cleanArrayFromNullValues([...value]);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* Return a given variable root option relations
|
|
180
|
+
* @param variableId Variable's id
|
|
181
|
+
*/
|
|
182
|
+
private getVariableRootParent(variableId: number) {
|
|
183
|
+
const variableParents = selectVariableParents(variableId);
|
|
184
|
+
return variableParents[variableParents.length - 1];
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Cleans values array from any null value by replacing it
|
|
189
|
+
* with an empty string
|
|
190
|
+
* @param arr Values array
|
|
191
|
+
*/
|
|
192
|
+
private cleanArrayFromNullValues(
|
|
193
|
+
arr: (string | number | null)[]
|
|
194
|
+
): (string | number)[] {
|
|
195
|
+
return arr.map((v) => (v === null ? '' : v));
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Populates options data object accodring to current dataMap object
|
|
200
|
+
*/
|
|
201
|
+
populateOptions() {
|
|
202
|
+
for (let i = 0; i < this.dataMap.o.length; i += 1) {
|
|
203
|
+
const optionId = this.dataMap.o[i];
|
|
204
|
+
const inputs = this.getOptionInputs(optionId);
|
|
205
|
+
|
|
206
|
+
// Adding option
|
|
207
|
+
this.data.o[optionId] = [...inputs];
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Returns a give option's inputs
|
|
213
|
+
* @param optionId Option's id
|
|
214
|
+
*/
|
|
215
|
+
private getOptionInputs(optionId: number): Readonly<boolean[]> {
|
|
216
|
+
const inputs = selectOptionInput(optionId);
|
|
217
|
+
if (this.id === undefined || this.index === undefined) {
|
|
218
|
+
return inputs;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// Getting variable parent option
|
|
222
|
+
const optionRootParent = this.getOptionRootParent(optionId);
|
|
223
|
+
const optionRootRelations = selectOptionRelations(optionRootParent);
|
|
224
|
+
if (
|
|
225
|
+
optionRootRelations.children.options.includes(this.id) ||
|
|
226
|
+
optionRootRelations.dependants.includes(this.id) ||
|
|
227
|
+
this.id === optionRootParent
|
|
228
|
+
) {
|
|
229
|
+
return [inputs[this.index]];
|
|
230
|
+
}
|
|
231
|
+
return inputs;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Returns option's root parent
|
|
236
|
+
* @param optionId Root parent
|
|
237
|
+
*/
|
|
238
|
+
private getOptionRootParent(optionId: number) {
|
|
239
|
+
const optionParents = selectOptionParents(optionId);
|
|
240
|
+
return optionParents.length > 0
|
|
241
|
+
? optionParents[optionParents.length - 1]
|
|
242
|
+
: optionId;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface ConditionDataMap {
|
|
247
|
+
o: number[];
|
|
248
|
+
v: number[];
|
|
249
|
+
c: {
|
|
250
|
+
o: number[];
|
|
251
|
+
s: number[];
|
|
252
|
+
v: number[];
|
|
253
|
+
};
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export interface ConditionData {
|
|
257
|
+
o: Record<string, boolean[]>;
|
|
258
|
+
v: Record<string, (string | number)[]>;
|
|
259
|
+
c: {
|
|
260
|
+
o: Record<string, boolean[]>;
|
|
261
|
+
s: Record<string, boolean[]>;
|
|
262
|
+
v: Record<string, boolean[]>;
|
|
263
|
+
};
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export default DataPopulator;
|
|
@@ -0,0 +1,454 @@
|
|
|
1
|
+
/* eslint-disable max-len */
|
|
2
|
+
import { Dispatch } from 'redux';
|
|
3
|
+
import LpLogic from '@legalplace/lplogic/dist/LpLogic';
|
|
4
|
+
import { selectOptionInput } from '../redux/selectors/inputs';
|
|
5
|
+
import {
|
|
6
|
+
selectOptionRelations,
|
|
7
|
+
selectVariableRelations,
|
|
8
|
+
selectVariableParents,
|
|
9
|
+
selectOptionParents,
|
|
10
|
+
selectOptionConditionsObject,
|
|
11
|
+
selectVariableConditionsObject,
|
|
12
|
+
selectSectionConditionsObject,
|
|
13
|
+
selectPrefillerConditionsObject,
|
|
14
|
+
selectOptionValidatorConditionsObject,
|
|
15
|
+
selectVariableValidatorConditionsObject,
|
|
16
|
+
selectDocumentConditionsObject,
|
|
17
|
+
selectOptionReference,
|
|
18
|
+
selectSectionRelations,
|
|
19
|
+
} from '../redux/selectors/references';
|
|
20
|
+
import {
|
|
21
|
+
updateOptionConditionsAction,
|
|
22
|
+
updateVariableConditionsAction,
|
|
23
|
+
updateSectionConditionsAction,
|
|
24
|
+
updatePrefillersConditionsAction,
|
|
25
|
+
updateOptionValidatorConditionsAction,
|
|
26
|
+
updateVariableValidatorConditionsAction,
|
|
27
|
+
updateDocumentConditionsAction,
|
|
28
|
+
} from '../redux/actions/conditions';
|
|
29
|
+
import {
|
|
30
|
+
selectOptionConditionValue,
|
|
31
|
+
selectVariableConditionValue,
|
|
32
|
+
selectSectionConditionValue,
|
|
33
|
+
selectPrefillerConditionValue,
|
|
34
|
+
selectOptionValidatorConditionValue,
|
|
35
|
+
selectVariableValidatorConditionValue,
|
|
36
|
+
selectDocumentConditionValue,
|
|
37
|
+
} from '../redux/selectors/conditions';
|
|
38
|
+
import { StateType, MAPPED_CONDITIONS } from '../types/State.type';
|
|
39
|
+
import DataPopulator from './ConditionsRunner/DataPopulator';
|
|
40
|
+
|
|
41
|
+
// eslint-disable-next-line max-len
|
|
42
|
+
export type AllConditions =
|
|
43
|
+
| StateType.Conditions.Options
|
|
44
|
+
| StateType.Conditions.Variables
|
|
45
|
+
| StateType.Conditions.Validators
|
|
46
|
+
| StateType.Conditions.Prefillers
|
|
47
|
+
| StateType.Conditions.Sections
|
|
48
|
+
| any[];
|
|
49
|
+
|
|
50
|
+
const conditionValueSelectorsEnum: Record<string, (...args: any[]) => any> = {
|
|
51
|
+
options: selectOptionConditionValue,
|
|
52
|
+
variables: selectVariableConditionValue,
|
|
53
|
+
documents: selectDocumentConditionValue,
|
|
54
|
+
prefillers: selectPrefillerConditionValue,
|
|
55
|
+
optionValidator: selectOptionValidatorConditionValue,
|
|
56
|
+
variableValidator: selectVariableValidatorConditionValue,
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
const conditionObjectSelectorsEnum: Record<string, (...args: any[]) => any> = {
|
|
60
|
+
options: selectOptionConditionsObject,
|
|
61
|
+
variables: selectVariableConditionsObject,
|
|
62
|
+
documents: selectDocumentConditionsObject,
|
|
63
|
+
prefillers: selectPrefillerConditionsObject,
|
|
64
|
+
optionValidator: selectOptionValidatorConditionsObject,
|
|
65
|
+
variableValidator: selectVariableValidatorConditionsObject,
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const updateDispatchActionsEnum: Record<string, (...args: any[]) => any> = {
|
|
69
|
+
options: updateOptionConditionsAction,
|
|
70
|
+
variables: updateVariableConditionsAction,
|
|
71
|
+
documents: updateDocumentConditionsAction,
|
|
72
|
+
prefillers: updatePrefillersConditionsAction,
|
|
73
|
+
optionValidator: updateOptionValidatorConditionsAction,
|
|
74
|
+
variableValidator: updateVariableValidatorConditionsAction,
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export class ConditionsRunner {
|
|
78
|
+
dispatch: Dispatch;
|
|
79
|
+
|
|
80
|
+
constructor(dispatch: Dispatch) {
|
|
81
|
+
this.dispatch = dispatch;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
shouldConditionUpdate(
|
|
85
|
+
oldCondition: AllConditions,
|
|
86
|
+
newCondition: AllConditions
|
|
87
|
+
) {
|
|
88
|
+
let update = false;
|
|
89
|
+
if (Array.isArray(oldCondition) && Array.isArray(newCondition)) {
|
|
90
|
+
oldCondition.forEach((value, index) => {
|
|
91
|
+
if (Array.isArray(value)) {
|
|
92
|
+
update =
|
|
93
|
+
update || this.shouldConditionUpdate(value, newCondition[index]);
|
|
94
|
+
} else {
|
|
95
|
+
update = update || value !== newCondition[index];
|
|
96
|
+
}
|
|
97
|
+
});
|
|
98
|
+
} else {
|
|
99
|
+
update = oldCondition !== newCondition;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
return update;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
isOptionRelatedToOption(optionA: number, optionB: number): boolean {
|
|
106
|
+
// Getting B relations
|
|
107
|
+
const OptionBParents = selectOptionParents(optionB);
|
|
108
|
+
const OptionBRoot = OptionBParents[OptionBParents.length - 1];
|
|
109
|
+
const OptionBRootRelations = OptionBRoot
|
|
110
|
+
? selectOptionRelations(OptionBRoot)
|
|
111
|
+
: undefined;
|
|
112
|
+
|
|
113
|
+
// Checking if B option is related to the option that changed
|
|
114
|
+
if (OptionBRootRelations) {
|
|
115
|
+
if (
|
|
116
|
+
optionA === optionB ||
|
|
117
|
+
OptionBRootRelations.children.options.includes(optionA) ||
|
|
118
|
+
OptionBRootRelations.dependants.includes(optionA)
|
|
119
|
+
) {
|
|
120
|
+
return true;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
return false;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
isVariableRelatedToOption(variableId: number, optionId: number): boolean {
|
|
128
|
+
// Variable parent
|
|
129
|
+
const variableParentId = selectVariableParents(variableId)[0];
|
|
130
|
+
|
|
131
|
+
// Getting B relations
|
|
132
|
+
const optionParents = selectOptionParents(variableParentId);
|
|
133
|
+
const optionRoot =
|
|
134
|
+
optionParents.length > 0
|
|
135
|
+
? optionParents[optionParents.length - 1]
|
|
136
|
+
: variableParentId;
|
|
137
|
+
const optionRootRelations = optionRoot
|
|
138
|
+
? selectOptionRelations(optionRoot)
|
|
139
|
+
: undefined;
|
|
140
|
+
|
|
141
|
+
// Checking if B option is related to the option that changed
|
|
142
|
+
if (optionRootRelations) {
|
|
143
|
+
if (
|
|
144
|
+
optionRootRelations.children.options.includes(optionId) ||
|
|
145
|
+
optionRootRelations.dependants.includes(optionId)
|
|
146
|
+
) {
|
|
147
|
+
return true;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
return false;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
isVariableRelatedToVariable(variableA: number, variableB: number): boolean {
|
|
155
|
+
// Getting variables options
|
|
156
|
+
const optionA = selectVariableParents(variableA)[0];
|
|
157
|
+
const optionB = selectVariableParents(variableB)[0];
|
|
158
|
+
|
|
159
|
+
// Getting B relations
|
|
160
|
+
const OptionBParents = selectOptionParents(optionB);
|
|
161
|
+
const OptionBRoot = OptionBParents[OptionBParents.length - 1];
|
|
162
|
+
const OptionBRootRelations = OptionBRoot
|
|
163
|
+
? selectOptionRelations(OptionBRoot)
|
|
164
|
+
: undefined;
|
|
165
|
+
|
|
166
|
+
// Checking if B option is related to the option that changed
|
|
167
|
+
if (OptionBRootRelations) {
|
|
168
|
+
if (
|
|
169
|
+
optionA === optionB ||
|
|
170
|
+
OptionBRootRelations.children.options.includes(optionA) ||
|
|
171
|
+
OptionBRootRelations.dependants.includes(optionA)
|
|
172
|
+
) {
|
|
173
|
+
return true;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
return false;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Return's real option inputs, in case option is child of a repeated
|
|
182
|
+
* it returns the inputs of the repeatOption
|
|
183
|
+
* @param optionId Option ID
|
|
184
|
+
*/
|
|
185
|
+
getInputsForOption(optionId: number) {
|
|
186
|
+
let inputId = optionId;
|
|
187
|
+
const optionReference = selectOptionReference(optionId);
|
|
188
|
+
const optionParents = selectOptionParents(optionId);
|
|
189
|
+
if (optionParents.length > 0) {
|
|
190
|
+
const parentReference = selectOptionReference(optionParents[0]);
|
|
191
|
+
if (
|
|
192
|
+
parentReference.meta.type === 'repeated' &&
|
|
193
|
+
parentReference.meta.repeatOption !== undefined
|
|
194
|
+
) {
|
|
195
|
+
inputId = parentReference.meta.repeatOption;
|
|
196
|
+
}
|
|
197
|
+
} else if (
|
|
198
|
+
optionReference.meta.type === 'repeated' &&
|
|
199
|
+
optionReference.meta.repeatOption !== undefined
|
|
200
|
+
) {
|
|
201
|
+
inputId = optionReference.meta.repeatOption;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
return selectOptionInput(inputId).map(
|
|
205
|
+
(input, currentIndex) => currentIndex
|
|
206
|
+
);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* Return's real vriables inputs, in case variable is child of a multiple
|
|
211
|
+
* it returns the inputs of the repeatOption
|
|
212
|
+
* @param variableId Variable ID
|
|
213
|
+
*/
|
|
214
|
+
getInputsForVariable(variableId: number) {
|
|
215
|
+
const optionId = selectVariableParents(variableId)[0];
|
|
216
|
+
let inputId = optionId;
|
|
217
|
+
const optionParents = selectOptionParents(optionId);
|
|
218
|
+
if (optionParents.length > 0) {
|
|
219
|
+
const parentReference = selectOptionReference(optionParents[0]);
|
|
220
|
+
if (
|
|
221
|
+
parentReference.meta.type === 'repeated' &&
|
|
222
|
+
parentReference.meta.repeatOption !== undefined
|
|
223
|
+
) {
|
|
224
|
+
inputId = parentReference.meta.repeatOption;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
return selectOptionInput(inputId).map(
|
|
229
|
+
(input, currentIndex) => currentIndex
|
|
230
|
+
);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
executeHooks(
|
|
234
|
+
type: 'variables' | 'options' | 'sections',
|
|
235
|
+
id: number,
|
|
236
|
+
index: number
|
|
237
|
+
) {
|
|
238
|
+
let hooks:
|
|
239
|
+
| StateType.References.Relations.Options
|
|
240
|
+
| StateType.References.Relations.Variables
|
|
241
|
+
| StateType.References.Relations.Sections;
|
|
242
|
+
switch (type) {
|
|
243
|
+
case 'options':
|
|
244
|
+
hooks = selectOptionRelations(id);
|
|
245
|
+
break;
|
|
246
|
+
case 'variables':
|
|
247
|
+
hooks = selectVariableRelations(id);
|
|
248
|
+
break;
|
|
249
|
+
case 'sections':
|
|
250
|
+
hooks = selectSectionRelations(id);
|
|
251
|
+
break;
|
|
252
|
+
default:
|
|
253
|
+
throw new Error(`Unkown hook type ${type}`);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
type SubTypeTypes =
|
|
257
|
+
| 'options'
|
|
258
|
+
| 'variables'
|
|
259
|
+
| 'sections'
|
|
260
|
+
| 'prefillers'
|
|
261
|
+
| 'optionValidator'
|
|
262
|
+
| 'variableValidator'
|
|
263
|
+
| 'documents';
|
|
264
|
+
|
|
265
|
+
const subTypesList: SubTypeTypes[] = [
|
|
266
|
+
'options',
|
|
267
|
+
'variables',
|
|
268
|
+
'sections',
|
|
269
|
+
'prefillers',
|
|
270
|
+
'optionValidator',
|
|
271
|
+
'variableValidator',
|
|
272
|
+
'documents',
|
|
273
|
+
];
|
|
274
|
+
|
|
275
|
+
subTypesList.forEach((subType) => {
|
|
276
|
+
if (subType === 'sections') {
|
|
277
|
+
return this.executeSectionsHooks(hooks, index);
|
|
278
|
+
}
|
|
279
|
+
let currentHooks: any[];
|
|
280
|
+
|
|
281
|
+
// Validators hooks
|
|
282
|
+
if (subType === 'optionValidator' || subType === 'variableValidator') {
|
|
283
|
+
currentHooks =
|
|
284
|
+
hooks.validators[
|
|
285
|
+
subType === 'optionValidator' ? 'options' : 'variables'
|
|
286
|
+
];
|
|
287
|
+
} else {
|
|
288
|
+
currentHooks = hooks[subType];
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// Executing hooks conditions
|
|
292
|
+
currentHooks.forEach((currentId: number) => {
|
|
293
|
+
const execId = subType === 'documents' ? 0 : currentId;
|
|
294
|
+
const updateId = subType === 'documents' ? currentId : currentId;
|
|
295
|
+
|
|
296
|
+
// Update indexes
|
|
297
|
+
let execIndexes: number[] = [];
|
|
298
|
+
|
|
299
|
+
if (
|
|
300
|
+
['options', 'optionValidator'].includes(subType) &&
|
|
301
|
+
typeof updateId === 'number'
|
|
302
|
+
) {
|
|
303
|
+
if (
|
|
304
|
+
type === 'options' &&
|
|
305
|
+
this.isOptionRelatedToOption(updateId, id)
|
|
306
|
+
) {
|
|
307
|
+
execIndexes = [index];
|
|
308
|
+
} else if (
|
|
309
|
+
type === 'variables' &&
|
|
310
|
+
this.isVariableRelatedToOption(id, updateId)
|
|
311
|
+
) {
|
|
312
|
+
execIndexes = [index];
|
|
313
|
+
} else {
|
|
314
|
+
execIndexes = this.getInputsForOption(updateId);
|
|
315
|
+
}
|
|
316
|
+
} else if (
|
|
317
|
+
['variables', 'prefillers', 'variableValidator'].includes(subType) &&
|
|
318
|
+
typeof updateId === 'number'
|
|
319
|
+
) {
|
|
320
|
+
if (
|
|
321
|
+
type === 'options' &&
|
|
322
|
+
this.isVariableRelatedToOption(updateId, id)
|
|
323
|
+
) {
|
|
324
|
+
execIndexes = [index];
|
|
325
|
+
} else if (
|
|
326
|
+
type === 'variables' &&
|
|
327
|
+
this.isVariableRelatedToVariable(id, updateId)
|
|
328
|
+
) {
|
|
329
|
+
execIndexes = [index];
|
|
330
|
+
} else {
|
|
331
|
+
execIndexes = this.getInputsForVariable(updateId);
|
|
332
|
+
}
|
|
333
|
+
} else {
|
|
334
|
+
execIndexes = [0];
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
// When we're executing an update on an option or an optionValidator,
|
|
338
|
+
// we need to make sure it is related to the hook to execute the same index
|
|
339
|
+
for (let i = 0; i < execIndexes.length; i += 1) {
|
|
340
|
+
// Getting the condition object
|
|
341
|
+
const condition = conditionObjectSelectorsEnum[subType](currentId);
|
|
342
|
+
const newCondition = this.executeCondition(
|
|
343
|
+
condition,
|
|
344
|
+
execId,
|
|
345
|
+
execIndexes[i],
|
|
346
|
+
subType
|
|
347
|
+
);
|
|
348
|
+
|
|
349
|
+
// Current condition
|
|
350
|
+
const oldCondition = conditionValueSelectorsEnum[subType](
|
|
351
|
+
currentId,
|
|
352
|
+
execIndexes[i]
|
|
353
|
+
);
|
|
354
|
+
|
|
355
|
+
if (this.shouldConditionUpdate(oldCondition, newCondition)) {
|
|
356
|
+
this.dispatch(
|
|
357
|
+
updateDispatchActionsEnum[subType](
|
|
358
|
+
updateId,
|
|
359
|
+
execIndexes[i],
|
|
360
|
+
newCondition
|
|
361
|
+
)
|
|
362
|
+
);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
});
|
|
366
|
+
|
|
367
|
+
return null;
|
|
368
|
+
});
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
executeSectionsHooks(hooks: any, index: number) {
|
|
372
|
+
// Executing hooks conditions
|
|
373
|
+
Object.keys(hooks.sections).forEach((currentDocument: string) => {
|
|
374
|
+
hooks.sections[currentDocument].forEach((currentId: string) => {
|
|
375
|
+
// Getting the condition object
|
|
376
|
+
const condition = selectSectionConditionsObject(
|
|
377
|
+
parseInt(currentId, 10),
|
|
378
|
+
currentDocument
|
|
379
|
+
);
|
|
380
|
+
const newCondition = this.executeCondition(
|
|
381
|
+
condition,
|
|
382
|
+
parseInt(currentId, 10),
|
|
383
|
+
index,
|
|
384
|
+
'sections'
|
|
385
|
+
);
|
|
386
|
+
|
|
387
|
+
// Current condition
|
|
388
|
+
const oldCondition: any = selectSectionConditionValue(
|
|
389
|
+
parseInt(currentId, 10),
|
|
390
|
+
currentDocument
|
|
391
|
+
);
|
|
392
|
+
if (this.shouldConditionUpdate(oldCondition, newCondition)) {
|
|
393
|
+
this.dispatch(
|
|
394
|
+
updateSectionConditionsAction(
|
|
395
|
+
parseInt(currentId, 10),
|
|
396
|
+
currentDocument,
|
|
397
|
+
newCondition
|
|
398
|
+
)
|
|
399
|
+
);
|
|
400
|
+
}
|
|
401
|
+
});
|
|
402
|
+
});
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
executeCondition(
|
|
406
|
+
condition: MAPPED_CONDITIONS | MAPPED_CONDITIONS[],
|
|
407
|
+
id: number,
|
|
408
|
+
index: number,
|
|
409
|
+
conditionType: string
|
|
410
|
+
): any {
|
|
411
|
+
if (Array.isArray(condition))
|
|
412
|
+
return condition.map((_condition) =>
|
|
413
|
+
this.executeCondition(_condition, id, index, conditionType)
|
|
414
|
+
);
|
|
415
|
+
|
|
416
|
+
// Returning true of condition is empty
|
|
417
|
+
if (
|
|
418
|
+
!(
|
|
419
|
+
typeof condition === 'object' &&
|
|
420
|
+
typeof condition.conditions === 'object' &&
|
|
421
|
+
Object.keys(condition.conditions).length > 0
|
|
422
|
+
)
|
|
423
|
+
)
|
|
424
|
+
return true;
|
|
425
|
+
|
|
426
|
+
// Populating Data
|
|
427
|
+
let currentData;
|
|
428
|
+
if (conditionType === 'options' || conditionType === 'optionValidator') {
|
|
429
|
+
currentData = new DataPopulator(condition.dataMap, id, index).getData();
|
|
430
|
+
} else if (
|
|
431
|
+
conditionType === 'variables' ||
|
|
432
|
+
conditionType === 'prefillers' ||
|
|
433
|
+
conditionType === 'variableValidator'
|
|
434
|
+
) {
|
|
435
|
+
const dataId = selectVariableParents(id)[0];
|
|
436
|
+
currentData = new DataPopulator(
|
|
437
|
+
condition.dataMap,
|
|
438
|
+
dataId,
|
|
439
|
+
index
|
|
440
|
+
).getData();
|
|
441
|
+
} else if (
|
|
442
|
+
conditionType === 'sections' ||
|
|
443
|
+
conditionType === 'documents' ||
|
|
444
|
+
conditionType === 'raw'
|
|
445
|
+
) {
|
|
446
|
+
currentData = new DataPopulator(condition.dataMap).getData();
|
|
447
|
+
}
|
|
448
|
+
return LpLogic(condition.conditions, currentData);
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
executeRawCondition(condition: MAPPED_CONDITIONS | MAPPED_CONDITIONS[]) {
|
|
452
|
+
return this.executeCondition(condition, 0, 0, 'raw');
|
|
453
|
+
}
|
|
454
|
+
}
|