@legalplace/wizardx-core 2.6.3 → 2.7.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/CHANGELOG.md +43 -0
- package/dist/App.js +13 -4
- package/dist/PluginLoader.d.ts +3 -1
- package/dist/PluginLoader.js +12 -0
- package/dist/ThemeLoader.d.ts +2 -2
- package/dist/componentsConnectors/connectBox.d.ts +3 -1
- package/dist/componentsConnectors/connectDocument.d.ts +3 -1
- package/dist/componentsConnectors/connectHeader.d.ts +3 -1
- package/dist/componentsConnectors/connectMetaTitle.d.ts +3 -1
- package/dist/componentsConnectors/connectOption.d.ts +6 -2
- package/dist/componentsConnectors/connectOption.js +1 -1
- package/dist/componentsConnectors/connectPagination.d.ts +3 -1
- package/dist/componentsConnectors/connectPreview.d.ts +3 -1
- package/dist/componentsConnectors/connectProgress.d.ts +3 -1
- package/dist/componentsConnectors/connectRootOption.d.ts +3 -1
- package/dist/componentsConnectors/connectSection.d.ts +3 -1
- package/dist/componentsConnectors/connectSection.js +7 -10
- package/dist/componentsConnectors/connectSummary.d.ts +3 -1
- package/dist/componentsConnectors/connectSummaryItem.d.ts +3 -1
- package/dist/componentsConnectors/connectVariable.d.ts +6 -2
- package/dist/componentsConnectors/connectVariable.js +1 -1
- package/dist/componentsConnectors/connectWizardWrapper.d.ts +3 -1
- package/dist/componentsConnectors/connector/componentConnector.d.ts +5 -1
- package/dist/componentsConnectors/connector/componentConnector.js +44 -4
- package/dist/componentsConnectors/connector/index.d.ts +1 -0
- package/dist/componentsConnectors/connector/index.js +1 -0
- package/dist/componentsConnectors/index.d.ts +17 -0
- package/dist/componentsConnectors/index.js +17 -0
- package/dist/componentsConnectors/library.d.ts +43 -15
- package/dist/constants/phoneValidation.d.ts +0 -1
- package/dist/constants/phoneValidation.js +0 -1
- package/dist/helpers/apiEndpoint.d.ts +1 -0
- package/dist/helpers/apiEndpoint.js +4 -0
- package/dist/helpers/index.d.ts +4 -0
- package/dist/helpers/index.js +4 -0
- package/dist/helpers/propsEqualityCheck.d.ts +1 -0
- package/dist/helpers/propsEqualityCheck.js +9 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/index.js +4 -0
- package/dist/hooks/useActions.d.ts +2 -0
- package/dist/hooks/useActions.js +4 -0
- package/dist/hooks/useDispatch.d.ts +1 -0
- package/dist/hooks/useDispatch.js +4 -0
- package/dist/hooks/useSelectors.d.ts +2 -0
- package/dist/hooks/useSelectors.js +4 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +13 -0
- package/dist/libs/EventsTracking.d.ts +0 -1
- package/dist/libs/EventsTracking.js +0 -18
- package/dist/libs/PathReader.d.ts +10 -6
- package/dist/libs/PathReader.js +47 -28
- package/dist/libs/index.d.ts +5 -0
- package/dist/libs/index.js +5 -0
- package/dist/redux/actions/index.d.ts +9 -0
- package/dist/redux/actions/index.js +9 -0
- package/dist/redux/actions/library.d.ts +59 -63
- 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 +1 -5
- package/dist/redux/constants/app.d.ts +2 -0
- package/dist/redux/constants/app.js +2 -0
- package/dist/redux/constants/index.d.ts +8 -0
- package/dist/redux/constants/index.js +8 -0
- package/dist/redux/constants/sagas/index.d.ts +3 -0
- package/dist/redux/constants/sagas/index.js +3 -0
- package/dist/redux/index.d.ts +5 -0
- package/dist/redux/index.js +5 -0
- package/dist/redux/middlewares/conditionsWatcherMiddleware.js +11 -5
- package/dist/redux/middlewares/conditionsWatcherMiddleware.test.js +120 -113
- package/dist/redux/middlewares/paginationWatcherMiddleware.js +2 -2
- package/dist/redux/middlewares/smartscriptMiddleware.js +8 -0
- package/dist/redux/reducers/pluginsStore.d.ts +3 -0
- package/dist/redux/reducers/pluginsStore.js +12 -0
- package/dist/redux/routerHistory.js +2 -2
- package/dist/redux/sagas/fetchModel.js +22 -6
- package/dist/redux/sagas/initInputs.js +6 -7
- package/dist/redux/sagas/saveData.js +3 -46
- package/dist/redux/sagas/setUserEmail.js +1 -28
- package/dist/redux/selectors/app.js +13 -18
- package/dist/redux/selectors/cache.d.ts +17 -0
- package/dist/redux/selectors/cache.js +35 -0
- package/dist/redux/selectors/conditions.js +7 -7
- package/dist/redux/selectors/index.d.ts +8 -0
- package/dist/redux/selectors/index.js +8 -0
- package/dist/redux/selectors/inputs.js +3 -3
- package/dist/redux/selectors/library.d.ts +2 -2
- package/dist/redux/selectors/references.js +26 -26
- package/dist/redux/selectors/selectors.d.ts +2 -2
- package/dist/redux/selectors/selectors.js +19 -8
- package/dist/redux/selectors/selectors.test.js +6 -6
- package/dist/redux/selectors/user.js +5 -5
- package/dist/redux/store.d.ts +1 -1
- package/dist/redux/store.js +12 -4
- package/dist/service/api.manager.d.ts +1 -6
- package/dist/service/index.d.ts +3 -0
- package/dist/service/index.js +3 -0
- package/dist/types/PluginConfig.type.d.ts +57 -0
- package/dist/types/PluginConfig.type.js +1 -0
- package/dist/types/State.type.d.ts +6 -0
- package/dist/types/config.type.d.ts +3 -1
- package/dist/types/index.d.ts +11 -0
- package/dist/types/index.js +11 -0
- package/package.json +11 -12
- package/.depcheckrc +0 -1
- package/.eslintignore +0 -2
- package/.eslintrc +0 -5
- package/__mocks__/fileMock.js +0 -1
- package/babel.config.json +0 -3
- package/dist/helpers/sendinblueHelper.d.ts +0 -4
- package/dist/helpers/sendinblueHelper.js +0 -46
- package/dist/libs/Extracts.d.ts +0 -20
- package/dist/libs/Extracts.js +0 -110
- package/jest.config.ts +0 -193
- package/setupJest.ts +0 -8
- package/src/App.test.tsx +0 -41
- package/src/App.tsx +0 -152
- package/src/Globals.ts +0 -69
- package/src/Loader.tsx +0 -8
- package/src/PluginLoader.test.tsx +0 -70
- package/src/PluginLoader.tsx +0 -407
- package/src/Shimmer.tsx +0 -108
- package/src/ThemeLoader.test.tsx +0 -82
- package/src/ThemeLoader.tsx +0 -95
- package/src/components/PluginRoute.tsx +0 -48
- package/src/components/SmartScript.tsx +0 -166
- package/src/components/UserLocked/UserLockedComponent.tsx +0 -33
- package/src/components/View.test.tsx +0 -110
- package/src/components/View.tsx +0 -114
- package/src/componentsConnectors/connectBox.test.tsx +0 -226
- package/src/componentsConnectors/connectBox.tsx +0 -70
- package/src/componentsConnectors/connectDocument.test.tsx +0 -108
- package/src/componentsConnectors/connectDocument.tsx +0 -64
- package/src/componentsConnectors/connectHeader.tsx +0 -21
- package/src/componentsConnectors/connectMetaTitle.test.tsx +0 -40
- package/src/componentsConnectors/connectMetaTitle.tsx +0 -8
- package/src/componentsConnectors/connectOption.tsx +0 -222
- package/src/componentsConnectors/connectPagination.tsx +0 -102
- package/src/componentsConnectors/connectPreview.tsx +0 -5
- package/src/componentsConnectors/connectProgress.tsx +0 -59
- package/src/componentsConnectors/connectRootOption.tsx +0 -95
- package/src/componentsConnectors/connectSection.tsx +0 -79
- package/src/componentsConnectors/connectSummary.tsx +0 -21
- package/src/componentsConnectors/connectSummaryItem.tsx +0 -102
- package/src/componentsConnectors/connectTermsheet.tsx +0 -359
- package/src/componentsConnectors/connectVariable.tsx +0 -191
- package/src/componentsConnectors/connectWizardWrapper.tsx +0 -30
- package/src/componentsConnectors/connector/componentConnector.tsx +0 -219
- package/src/componentsConnectors/library.ts +0 -35
- package/src/config.test.ts +0 -63
- package/src/config.ts +0 -11
- package/src/constants/emailValidation.ts +0 -2
- package/src/constants/phoneValidation.ts +0 -6
- package/src/definitions/path.join.d.ts +0 -4
- package/src/helpers/outputsParsing.ts +0 -412
- package/src/helpers/preloadTheme.ts +0 -17
- package/src/helpers/scriptsLoader.ts +0 -20
- package/src/helpers/sendinblueHelper.ts +0 -65
- package/src/hooks/usePrevious.ts +0 -9
- package/src/libs/ConditionsInitiator.ts +0 -164
- package/src/libs/ConditionsRunner/DataPopulator.ts +0 -266
- package/src/libs/ConditionsRunner.ts +0 -454
- package/src/libs/DocumentsOutputs.ts +0 -171
- package/src/libs/Eval/EvalBase.ts +0 -116
- package/src/libs/Eval/EvalFunctions.ts +0 -724
- package/src/libs/Eval/NumbersToLetters.ts +0 -185
- package/src/libs/EvalVariable.ts +0 -265
- package/src/libs/EventsTracking.ts +0 -276
- package/src/libs/Extracts.ts +0 -159
- package/src/libs/InputsInitiator.ts +0 -136
- package/src/libs/NumAuto.test.ts +0 -55
- package/src/libs/NumAuto.ts +0 -56
- package/src/libs/OvcConverter.ts +0 -285
- package/src/libs/PathReader.ts +0 -272
- package/src/libs/SectionValidity.test.ts +0 -146
- package/src/libs/SectionValidity.ts +0 -110
- package/src/libs/SmartScriptStore.ts +0 -492
- package/src/misc/test_model.ts +0 -14603
- package/src/misc/test_models/connectDocumen.testmodel.json +0 -178
- package/src/misc/test_models/setDefaults.testmodel.json +0 -279
- package/src/misc/test_models/testmodel.json +0 -1
- package/src/polyfills/index.ts +0 -5
- package/src/polyfills/objectValues.ts +0 -4
- package/src/polyfills/prepend.ts +0 -31
- package/src/polyfills/stringRepeat.ts +0 -44
- package/src/redux/actions/app.test.ts +0 -123
- package/src/redux/actions/app.ts +0 -249
- package/src/redux/actions/conditions.test.ts +0 -84
- package/src/redux/actions/conditions.ts +0 -135
- package/src/redux/actions/inputs.test.ts +0 -85
- package/src/redux/actions/inputs.ts +0 -111
- package/src/redux/actions/library.ts +0 -23
- package/src/redux/actions/mandatories.ts +0 -98
- package/src/redux/actions/references.test.ts +0 -48
- package/src/redux/actions/references.ts +0 -37
- package/src/redux/actions/sagas/data.test.ts +0 -11
- package/src/redux/actions/sagas/data.ts +0 -18
- package/src/redux/actions/sagas/model.test.ts +0 -14
- package/src/redux/actions/sagas/model.ts +0 -48
- package/src/redux/actions/sagas/user.ts +0 -25
- package/src/redux/actions/smartscript.ts +0 -55
- package/src/redux/actions/user.test.ts +0 -18
- package/src/redux/actions/user.ts +0 -41
- package/src/redux/constants/app.ts +0 -36
- package/src/redux/constants/conditions.ts +0 -25
- package/src/redux/constants/inputs.ts +0 -15
- package/src/redux/constants/mandatories.ts +0 -11
- package/src/redux/constants/references.ts +0 -7
- package/src/redux/constants/sagas/data.ts +0 -1
- package/src/redux/constants/sagas/model.ts +0 -2
- package/src/redux/constants/sagas/user.ts +0 -2
- package/src/redux/constants/smartscript.ts +0 -9
- package/src/redux/constants/user.ts +0 -6
- package/src/redux/listeners/subscriber.test.ts +0 -45
- package/src/redux/listeners/subscriber.ts +0 -29
- package/src/redux/middlewares/conditionsWatcherMiddleware.test.ts +0 -370
- package/src/redux/middlewares/conditionsWatcherMiddleware.ts +0 -321
- package/src/redux/middlewares/evaluationsWatcherMiddleware.test.ts +0 -323
- package/src/redux/middlewares/evaluationsWatcherMiddleware.ts +0 -250
- package/src/redux/middlewares/mandatoriesWatcherMiddleware.ts +0 -473
- package/src/redux/middlewares/multiplesActionsMiddleware.test.ts +0 -230
- package/src/redux/middlewares/multiplesActionsMiddleware.ts +0 -121
- package/src/redux/middlewares/paginationWatcherMiddleware.ts +0 -251
- package/src/redux/middlewares/pluginsHookMiddleware.ts +0 -24
- package/src/redux/middlewares/prefillerWatcherMiddleware.test.ts +0 -118
- package/src/redux/middlewares/prefillerWatcherMiddleware.ts +0 -462
- package/src/redux/middlewares/smartscriptMiddleware.ts +0 -228
- package/src/redux/middlewares/thirdpartyScriptsMiddleware.ts +0 -41
- package/src/redux/reducers/app/customizations/initCustomizationAutoDefault.ts +0 -16
- package/src/redux/reducers/app/customizations/initCustomizationMeta.ts +0 -16
- package/src/redux/reducers/app/instance/initInstance.ts +0 -29
- package/src/redux/reducers/app/instance/setDataStatus.ts +0 -16
- package/src/redux/reducers/app/instance/updateInstance.ts +0 -30
- package/src/redux/reducers/app/instance/updateInstancePaid.ts +0 -20
- package/src/redux/reducers/app/instance.test.ts +0 -106
- package/src/redux/reducers/app/meta/fetchModelFailed.ts +0 -11
- package/src/redux/reducers/app/meta/fetchModelNonBlocking.ts +0 -11
- package/src/redux/reducers/app/meta/fetchModelSucceeded.ts +0 -11
- package/src/redux/reducers/app/meta/fetchModelUnhealthy.ts +0 -18
- package/src/redux/reducers/app/meta/fetchModelUserLocked.ts +0 -11
- package/src/redux/reducers/app/meta/initMeta.ts +0 -22
- package/src/redux/reducers/app/meta/setModelUuid.ts +0 -17
- package/src/redux/reducers/app/meta.test.ts +0 -90
- package/src/redux/reducers/app/pagination/goNextPage.ts +0 -69
- package/src/redux/reducers/app/pagination/goPage.ts +0 -81
- package/src/redux/reducers/app/pagination/goPreviousPage.ts +0 -60
- package/src/redux/reducers/app/pagination/initPagination.ts +0 -46
- package/src/redux/reducers/app/pagination/updateAvailableAppStates.ts +0 -77
- package/src/redux/reducers/app/pagination.test.ts +0 -363
- package/src/redux/reducers/app/wizard/updateAvailableSections.ts +0 -40
- package/src/redux/reducers/app/wizard.test.ts +0 -84
- package/src/redux/reducers/app.test.ts +0 -336
- package/src/redux/reducers/app.ts +0 -150
- package/src/redux/reducers/conditions/addMultipleOccurency.test.ts +0 -131
- package/src/redux/reducers/conditions/addMultipleOccurency.ts +0 -155
- package/src/redux/reducers/conditions/deleteMultipleOccurency.test.ts +0 -95
- package/src/redux/reducers/conditions/deleteMultipleOccurency.ts +0 -141
- package/src/redux/reducers/conditions/initConditions.ts +0 -18
- package/src/redux/reducers/conditions/updateDocumentConditions.test.ts +0 -47
- package/src/redux/reducers/conditions/updateDocumentConditions.ts +0 -21
- package/src/redux/reducers/conditions/updateOptionConditions.ts +0 -24
- package/src/redux/reducers/conditions/updateOptionValidatorCondition.test.ts +0 -50
- package/src/redux/reducers/conditions/updateOptionValidatorCondition.ts +0 -28
- package/src/redux/reducers/conditions/updatePrefillerConditions.ts +0 -29
- package/src/redux/reducers/conditions/updateSectionConditions.ts +0 -28
- package/src/redux/reducers/conditions/updateVariableConditions.ts +0 -25
- package/src/redux/reducers/conditions/updateVariableValidatorCondition.test.ts +0 -50
- package/src/redux/reducers/conditions/updateVariableValidatorCondition.ts +0 -28
- package/src/redux/reducers/conditions.test.ts +0 -241
- package/src/redux/reducers/conditions.ts +0 -68
- package/src/redux/reducers/inputs/addMultipleOccurency.test.ts +0 -117
- package/src/redux/reducers/inputs/addMultipleOccurency.ts +0 -50
- package/src/redux/reducers/inputs/deleteMultipleOccurency.test.ts +0 -70
- package/src/redux/reducers/inputs/deleteMultipleOccurency.ts +0 -50
- package/src/redux/reducers/inputs/initOption.ts +0 -16
- package/src/redux/reducers/inputs/initVariable.ts +0 -16
- package/src/redux/reducers/inputs/updateOptionInput.ts +0 -24
- package/src/redux/reducers/inputs/updateVariableInput.ts +0 -24
- package/src/redux/reducers/inputs.test.ts +0 -221
- package/src/redux/reducers/inputs.ts +0 -51
- package/src/redux/reducers/mandatories/addMultipleOccurency.ts +0 -52
- package/src/redux/reducers/mandatories/deleteMultipleOccurency.ts +0 -55
- package/src/redux/reducers/mandatories/initMandatoryOption.ts +0 -17
- package/src/redux/reducers/mandatories/initMandatoryVariable.ts +0 -17
- package/src/redux/reducers/mandatories/setMandatoryIgnore.ts +0 -17
- package/src/redux/reducers/mandatories/setMandatoryOption.ts +0 -25
- package/src/redux/reducers/mandatories/setMandatorySection.ts +0 -20
- package/src/redux/reducers/mandatories/setMandatoryVariable.ts +0 -24
- package/src/redux/reducers/mandatories.ts +0 -56
- package/src/redux/reducers/references/initReferences.ts +0 -37
- package/src/redux/reducers/references/updateOptionMeta.ts +0 -73
- package/src/redux/reducers/references/updateVariableMeta.ts +0 -72
- package/src/redux/reducers/references.ts +0 -59
- package/src/redux/reducers/smartscript/enableSmartScript.ts +0 -13
- package/src/redux/reducers/smartscript/initSmartScriptTriggers.ts +0 -14
- package/src/redux/reducers/smartscript/updateSmartscriptOptionHidden.ts +0 -30
- package/src/redux/reducers/smartscript/updateSmartscriptVariableHidden.ts +0 -30
- package/src/redux/reducers/smartscript.ts +0 -47
- package/src/redux/reducers/user/initUser.ts +0 -15
- package/src/redux/reducers/user/setUserStatus.ts +0 -13
- package/src/redux/reducers/user/setUserValidToken.ts +0 -13
- package/src/redux/reducers/user.test.ts +0 -51
- package/src/redux/reducers/user.ts +0 -40
- package/src/redux/routerHistore.test.ts +0 -19
- package/src/redux/routerHistory.ts +0 -26
- package/src/redux/sagas/fetchModel.test.ts +0 -76
- package/src/redux/sagas/fetchModel.ts +0 -683
- package/src/redux/sagas/homogeneousRadioInputsSaga.ts +0 -42
- package/src/redux/sagas/initInputs.ts +0 -110
- package/src/redux/sagas/runner.test.ts +0 -12
- package/src/redux/sagas/runner.ts +0 -26
- package/src/redux/sagas/saveData.test.ts +0 -125
- package/src/redux/sagas/saveData.ts +0 -116
- package/src/redux/sagas/setDefaults.test.ts +0 -100
- package/src/redux/sagas/setDefaults.ts +0 -167
- package/src/redux/sagas/setUserEmail.ts +0 -221
- package/src/redux/selectors/app.test.ts +0 -162
- package/src/redux/selectors/app.ts +0 -331
- package/src/redux/selectors/conditions.test.ts +0 -92
- package/src/redux/selectors/conditions.ts +0 -293
- package/src/redux/selectors/inputs.test.ts +0 -72
- package/src/redux/selectors/inputs.ts +0 -76
- package/src/redux/selectors/library.ts +0 -17
- package/src/redux/selectors/mandatories.ts +0 -83
- package/src/redux/selectors/references.test.ts +0 -660
- package/src/redux/selectors/references.ts +0 -413
- package/src/redux/selectors/selectors.test.ts +0 -21
- package/src/redux/selectors/selectors.ts +0 -87
- package/src/redux/selectors/smartscript.ts +0 -30
- package/src/redux/selectors/user.test.ts +0 -39
- package/src/redux/selectors/user.ts +0 -45
- package/src/redux/store.test.ts +0 -22
- package/src/redux/store.ts +0 -100
- package/src/service/api.manager.ts +0 -261
- package/src/service/auth.service.ts +0 -5
- package/src/service/pardot.service.ts +0 -10
- package/src/tests-misc/plugins/jestTestPlugin/after.tsx +0 -5
- package/src/tests-misc/plugins/jestTestPlugin/before.tsx +0 -11
- package/src/tests-misc/plugins/jestTestPlugin/index.ts +0 -11
- package/src/tests-misc/plugins/jestTestPlugin/title.tsx +0 -8
- package/src/tests-misc/themes/jestTestTheme/components/EmailComponent.tsx +0 -5
- package/src/tests-misc/themes/jestTestTheme/components/TermsheetComponent.tsx +0 -5
- package/src/tests-misc/themes/jestTestTheme/components/WizardComponent.tsx +0 -5
- package/src/tests-misc/themes/jestTestTheme/faltyIndex.ts +0 -3
- package/src/tests-misc/themes/jestTestTheme/faltyIndexLoader.ts +0 -1
- package/src/tests-misc/themes/jestTestTheme/index.ts +0 -13
- package/src/types/Actions.type.ts +0 -612
- package/src/types/Components.type.ts +0 -181
- package/src/types/State.type.ts +0 -323
- package/src/types/Termsheet.type.ts +0 -28
- package/src/types/api.type.ts +0 -37
- package/src/types/config.type.ts +0 -55
- package/src/types/env.type.ts +0 -5
- package/src/types/getActions.type.ts +0 -3
- package/src/types/getConnectors.type.ts +0 -5
- package/src/types/getSelectors.type.ts +0 -3
- package/src/wizard-params.ts +0 -56
- package/tsconfig.json +0 -43
package/src/redux/actions/app.ts
DELETED
|
@@ -1,249 +0,0 @@
|
|
|
1
|
-
import type { ModelV3 } from "@legalplace/models-v3-types";
|
|
2
|
-
import { StateType } from "../../types/State.type";
|
|
3
|
-
import { ActionsType } from "../../types/Actions.type";
|
|
4
|
-
import {
|
|
5
|
-
INIT_META,
|
|
6
|
-
INIT_INSTANCE,
|
|
7
|
-
UPDATE_INSTANCE_PAID,
|
|
8
|
-
INIT_PAGINATION,
|
|
9
|
-
GO_PAGE,
|
|
10
|
-
GO_NEXT_PAGE,
|
|
11
|
-
GO_PREVIOUS_PAGE,
|
|
12
|
-
UPDATE_AVAILABLE_SECTIONS,
|
|
13
|
-
UPDATE_CURRENT_APPSTATE,
|
|
14
|
-
UPDATE_CURRENT_SECTION_ID,
|
|
15
|
-
FETCH_MODEL_SUCCEEDED,
|
|
16
|
-
FETCH_MODEL_FAILED,
|
|
17
|
-
SET_DATA_STATUS,
|
|
18
|
-
UPDATE_AVAILABLE_APPSTATES,
|
|
19
|
-
INIT_CUSTOMIZATION_META,
|
|
20
|
-
FETCH_MODEL_UNHEALTHY,
|
|
21
|
-
FETCH_MODEL_USER_LOCKED,
|
|
22
|
-
INIT_CUSTOMIZATION_AUTO_DEFAULT,
|
|
23
|
-
UPDATE_INSTANCE,
|
|
24
|
-
SET_FETCH_STATUS,
|
|
25
|
-
FETCH_MODEL_NONBLOCKING,
|
|
26
|
-
SET_MODEL_UUID,
|
|
27
|
-
} from "../constants/app";
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Meta initialization action
|
|
31
|
-
* @param meta An object containing the document's id, permalink & title
|
|
32
|
-
*/
|
|
33
|
-
export const initMetaAction = (
|
|
34
|
-
meta: Omit<StateType.App.Meta, "fetchStatus">
|
|
35
|
-
): ActionsType.App.initMeta => ({
|
|
36
|
-
type: INIT_META,
|
|
37
|
-
...meta,
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* Returns a set Model Uuid action
|
|
42
|
-
*/
|
|
43
|
-
export const setModelUuidAction = (
|
|
44
|
-
modelUuid: StateType.App.Meta["modelUuid"]
|
|
45
|
-
): ActionsType.App.setModelUuid => ({
|
|
46
|
-
type: SET_MODEL_UUID,
|
|
47
|
-
modelUuid,
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* Returns a fetch model succeeded action
|
|
52
|
-
*/
|
|
53
|
-
export const fetchModelSucceededAction =
|
|
54
|
-
(): ActionsType.App.fetchModelSucceeded => ({
|
|
55
|
-
type: FETCH_MODEL_SUCCEEDED,
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
/**
|
|
59
|
-
* Returns a fetch model succeeded action
|
|
60
|
-
*/
|
|
61
|
-
export const fetchModelNonBlockingAction =
|
|
62
|
-
(): ActionsType.App.fetchModelNonBlocking => ({
|
|
63
|
-
type: FETCH_MODEL_NONBLOCKING,
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* Returns a fetch model succeeded action
|
|
68
|
-
*/
|
|
69
|
-
export const fetchModelUnhealthyAction = (
|
|
70
|
-
report: StateType.App.Meta["report"]
|
|
71
|
-
): ActionsType.App.fetchModelUnhealthy => ({
|
|
72
|
-
type: FETCH_MODEL_UNHEALTHY,
|
|
73
|
-
report,
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Returns a fetch model succeeded action
|
|
78
|
-
*/
|
|
79
|
-
export const fetchModelUserLockedAction =
|
|
80
|
-
(): ActionsType.App.fetchModelUserLocked => ({
|
|
81
|
-
type: FETCH_MODEL_USER_LOCKED,
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* Returns a fetch model failed action
|
|
86
|
-
*/
|
|
87
|
-
export const fetchModelFailedAction = (): ActionsType.App.fetchModelFailed => ({
|
|
88
|
-
type: FETCH_MODEL_FAILED,
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
/**
|
|
92
|
-
* Instance initialization action
|
|
93
|
-
* @param instance An object containing the instance's uniqid
|
|
94
|
-
* & isPaid a boolean to define if document is paid or not
|
|
95
|
-
*/
|
|
96
|
-
export const setDataStatus = (
|
|
97
|
-
dataStatus: "saved" | "unsaved" | "saving" | "failed"
|
|
98
|
-
): ActionsType.App.setDataStatus => ({
|
|
99
|
-
type: SET_DATA_STATUS,
|
|
100
|
-
dataStatus,
|
|
101
|
-
});
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Update Fetch Status in case of post fetchModel fetching
|
|
105
|
-
*/
|
|
106
|
-
export const setFetchStatus = (
|
|
107
|
-
fetchStatus: "waiting" | "succeeded" | "failed" | "unhealthy" | "userLocked"
|
|
108
|
-
): ActionsType.App.setFetchStatus => ({
|
|
109
|
-
type: SET_FETCH_STATUS,
|
|
110
|
-
fetchStatus,
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
// eslint-disable-next-line max-len
|
|
114
|
-
export const initInstanceAction = (
|
|
115
|
-
instance: StateType.App.Instance
|
|
116
|
-
): ActionsType.App.initInstance => ({
|
|
117
|
-
type: INIT_INSTANCE,
|
|
118
|
-
...instance,
|
|
119
|
-
});
|
|
120
|
-
|
|
121
|
-
export const updateInstanceAction = (
|
|
122
|
-
instance: Partial<StateType.App.Instance>
|
|
123
|
-
): ActionsType.App.updateInstance => ({
|
|
124
|
-
type: UPDATE_INSTANCE,
|
|
125
|
-
...instance,
|
|
126
|
-
});
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* Update instance paid status
|
|
130
|
-
* @param isPaid A boolean defining if document is paid or not
|
|
131
|
-
*/
|
|
132
|
-
export const updateInstancePaidAction = (
|
|
133
|
-
isPaid: boolean
|
|
134
|
-
): ActionsType.App.updateInstancePaid => ({
|
|
135
|
-
type: UPDATE_INSTANCE_PAID,
|
|
136
|
-
isPaid,
|
|
137
|
-
});
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* Initiates pagination
|
|
141
|
-
* @param pagination An object containing currentPage, currentSectionId, availableSections
|
|
142
|
-
*/
|
|
143
|
-
// eslint-disable-next-line max-len
|
|
144
|
-
export type initPaginationActionPropsType = Omit<
|
|
145
|
-
ActionsType.App.initPagination,
|
|
146
|
-
"type"
|
|
147
|
-
>;
|
|
148
|
-
export const initPaginationAction = (
|
|
149
|
-
pagination: initPaginationActionPropsType
|
|
150
|
-
): ActionsType.App.initPagination => ({
|
|
151
|
-
type: INIT_PAGINATION,
|
|
152
|
-
...pagination,
|
|
153
|
-
});
|
|
154
|
-
|
|
155
|
-
/**
|
|
156
|
-
* Updates available app states
|
|
157
|
-
* @param availableAppStates Available app states array
|
|
158
|
-
*/
|
|
159
|
-
export const updateAvailableAppStatesAction = (
|
|
160
|
-
availableAppStates: StateType.App.Pagination["availableAppStates"],
|
|
161
|
-
ingorePluginAppStateReset = false
|
|
162
|
-
): ActionsType.App.updateAvailableAppStates => ({
|
|
163
|
-
type: UPDATE_AVAILABLE_APPSTATES,
|
|
164
|
-
availableAppStates,
|
|
165
|
-
ingorePluginAppStateReset,
|
|
166
|
-
});
|
|
167
|
-
|
|
168
|
-
/**
|
|
169
|
-
* Move to specific page
|
|
170
|
-
* @param page Page number
|
|
171
|
-
*/
|
|
172
|
-
export const goPageAction = (
|
|
173
|
-
page: number,
|
|
174
|
-
pushHistory = true
|
|
175
|
-
): ActionsType.App.goPage => ({
|
|
176
|
-
type: GO_PAGE,
|
|
177
|
-
currentPage: page,
|
|
178
|
-
pushHistory,
|
|
179
|
-
});
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* Move to next page
|
|
183
|
-
*/
|
|
184
|
-
export const goNextPageAction = (): ActionsType.App.goNextPage => ({
|
|
185
|
-
type: GO_NEXT_PAGE,
|
|
186
|
-
});
|
|
187
|
-
|
|
188
|
-
/**
|
|
189
|
-
* Move to previous page
|
|
190
|
-
*/
|
|
191
|
-
export const goPreviousPageAction = (): ActionsType.App.goPreviousPage => ({
|
|
192
|
-
type: GO_PREVIOUS_PAGE,
|
|
193
|
-
});
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
* Updates current App State
|
|
197
|
-
* @param currentAppState {string}
|
|
198
|
-
*/
|
|
199
|
-
export const updateCurrentAppStateAction = (
|
|
200
|
-
currentAppState: string
|
|
201
|
-
): ActionsType.App.updateCurrentAppState => ({
|
|
202
|
-
type: UPDATE_CURRENT_APPSTATE,
|
|
203
|
-
currentAppState,
|
|
204
|
-
});
|
|
205
|
-
|
|
206
|
-
/**
|
|
207
|
-
* Update available sections
|
|
208
|
-
* @param availableSections An array containing the available section's array
|
|
209
|
-
*/
|
|
210
|
-
// eslint-disable-next-line max-len
|
|
211
|
-
export const updateAvailableSectionsAction = (
|
|
212
|
-
availableSections: number[]
|
|
213
|
-
): ActionsType.App.updateAvailableSections => ({
|
|
214
|
-
type: UPDATE_AVAILABLE_SECTIONS,
|
|
215
|
-
availableSections,
|
|
216
|
-
});
|
|
217
|
-
|
|
218
|
-
/**
|
|
219
|
-
* Updates current section id
|
|
220
|
-
* @param currentSectionId Current section's id
|
|
221
|
-
*/
|
|
222
|
-
// eslint-disable-next-line max-len
|
|
223
|
-
export const updateCurrentSectionIdAction = (
|
|
224
|
-
currentSectionId: number
|
|
225
|
-
): ActionsType.App.updateCurrentSectionId => ({
|
|
226
|
-
type: UPDATE_CURRENT_SECTION_ID,
|
|
227
|
-
currentSectionId,
|
|
228
|
-
});
|
|
229
|
-
|
|
230
|
-
/**
|
|
231
|
-
* Sets extracts customizations
|
|
232
|
-
* @param extracts ExtractV3 Array
|
|
233
|
-
*/
|
|
234
|
-
export const initCustomizationMetaAction = (
|
|
235
|
-
meta: Exclude<ModelV3["customization"]["meta"], undefined>
|
|
236
|
-
): ActionsType.App.initCustomizationMeta => ({
|
|
237
|
-
type: INIT_CUSTOMIZATION_META,
|
|
238
|
-
meta,
|
|
239
|
-
});
|
|
240
|
-
/**
|
|
241
|
-
* Sets autoDefault customizations
|
|
242
|
-
* @param disableAutoDefault autoDefault Customization object
|
|
243
|
-
*/
|
|
244
|
-
export const initCustomizationAutoDefaultAction = (
|
|
245
|
-
disableAutoDefault: StateType.App.Customization["disableAutoDefault"]
|
|
246
|
-
): ActionsType.App.initCustomizationAutoDefault => ({
|
|
247
|
-
type: INIT_CUSTOMIZATION_AUTO_DEFAULT,
|
|
248
|
-
disableAutoDefault,
|
|
249
|
-
});
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
initConditionsAction,
|
|
3
|
-
updateOptionConditionsAction,
|
|
4
|
-
updateVariableConditionsAction,
|
|
5
|
-
updateSectionConditionsAction,
|
|
6
|
-
updatePrefillersConditionsAction,
|
|
7
|
-
} from './conditions';
|
|
8
|
-
|
|
9
|
-
describe('Conditions actions test suit', () => {
|
|
10
|
-
it('initConditions Action', () => {
|
|
11
|
-
const action = initConditionsAction({
|
|
12
|
-
options: {},
|
|
13
|
-
variables: {},
|
|
14
|
-
prefillers: {},
|
|
15
|
-
validators: {
|
|
16
|
-
options: {},
|
|
17
|
-
variables: {},
|
|
18
|
-
},
|
|
19
|
-
sections: {
|
|
20
|
-
main: {},
|
|
21
|
-
},
|
|
22
|
-
documents: {},
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
expect(action).toEqual({
|
|
26
|
-
type: 'INIT_CONDITIONS',
|
|
27
|
-
options: {},
|
|
28
|
-
variables: {},
|
|
29
|
-
prefillers: {},
|
|
30
|
-
validators: {
|
|
31
|
-
options: {},
|
|
32
|
-
variables: {},
|
|
33
|
-
},
|
|
34
|
-
sections: {
|
|
35
|
-
main: {},
|
|
36
|
-
},
|
|
37
|
-
documents: {},
|
|
38
|
-
});
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
it('updateOptionConditions Action', () => {
|
|
42
|
-
const action = updateOptionConditionsAction(1, 0, true);
|
|
43
|
-
|
|
44
|
-
expect(action).toEqual({
|
|
45
|
-
type: 'UPDATE_OPTION_CONDITION',
|
|
46
|
-
id: 1,
|
|
47
|
-
index: 0,
|
|
48
|
-
value: true,
|
|
49
|
-
});
|
|
50
|
-
});
|
|
51
|
-
|
|
52
|
-
it('updateVariableConditions Action', () => {
|
|
53
|
-
const action = updateVariableConditionsAction(1, 0, true);
|
|
54
|
-
|
|
55
|
-
expect(action).toEqual({
|
|
56
|
-
type: 'UPDATE_VARIABLE_CONDITION',
|
|
57
|
-
id: 1,
|
|
58
|
-
index: 0,
|
|
59
|
-
value: true,
|
|
60
|
-
});
|
|
61
|
-
});
|
|
62
|
-
|
|
63
|
-
it('updateSectionConditions Action', () => {
|
|
64
|
-
const action = updateSectionConditionsAction(1, 'main', true);
|
|
65
|
-
|
|
66
|
-
expect(action).toEqual({
|
|
67
|
-
type: 'UPDATE_SECTION_CONDITION',
|
|
68
|
-
id: 1,
|
|
69
|
-
document: 'main',
|
|
70
|
-
value: true,
|
|
71
|
-
});
|
|
72
|
-
});
|
|
73
|
-
|
|
74
|
-
it('updatePrefillersConditions Action', () => {
|
|
75
|
-
const action = updatePrefillersConditionsAction(1, 0, [true]);
|
|
76
|
-
|
|
77
|
-
expect(action).toEqual({
|
|
78
|
-
type: 'UPDATE_PREFILLER_CONDITION',
|
|
79
|
-
id: 1,
|
|
80
|
-
index: 0,
|
|
81
|
-
value: [true],
|
|
82
|
-
});
|
|
83
|
-
});
|
|
84
|
-
});
|
|
@@ -1,135 +0,0 @@
|
|
|
1
|
-
import { ActionsType } from "../../types/Actions.type";
|
|
2
|
-
import {
|
|
3
|
-
UPDATE_OPTION_CONDITION,
|
|
4
|
-
INIT_CONDITIONS,
|
|
5
|
-
UPDATE_VARIABLE_CONDITION,
|
|
6
|
-
UPDATE_SECTION_CONDITION,
|
|
7
|
-
UPDATE_PREFILLER_CONDITION,
|
|
8
|
-
UPDATE_OPTION_VALIDATOR_CONDITION,
|
|
9
|
-
UPDATE_VARIABLE_VALIDATOR_CONDITION,
|
|
10
|
-
UPDATE_DOCUMENT_CONDITION,
|
|
11
|
-
} from "../constants/conditions";
|
|
12
|
-
import { StateType } from "../../types/State.type";
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* Initiates conditions
|
|
16
|
-
* @param conditions Initial condition's objecy
|
|
17
|
-
*/
|
|
18
|
-
export const initConditionsAction = (
|
|
19
|
-
conditions: StateType.Conditions
|
|
20
|
-
): ActionsType.Conditions.initConditions => ({
|
|
21
|
-
type: INIT_CONDITIONS,
|
|
22
|
-
...conditions,
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Update condition
|
|
27
|
-
* @param index Occurency index
|
|
28
|
-
* @param value Condition's value
|
|
29
|
-
*/
|
|
30
|
-
export const updateOptionConditionsAction = (
|
|
31
|
-
id: number,
|
|
32
|
-
index: number,
|
|
33
|
-
value: boolean
|
|
34
|
-
): ActionsType.Conditions.updateOptionCondition => ({
|
|
35
|
-
type: UPDATE_OPTION_CONDITION,
|
|
36
|
-
id,
|
|
37
|
-
index,
|
|
38
|
-
value,
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* Update condition
|
|
43
|
-
* @param index Occurency index
|
|
44
|
-
* @param value Condition's value
|
|
45
|
-
*/
|
|
46
|
-
export const updateVariableConditionsAction = (
|
|
47
|
-
id: number,
|
|
48
|
-
index: number,
|
|
49
|
-
value: boolean
|
|
50
|
-
): ActionsType.Conditions.updateVariableCondition => ({
|
|
51
|
-
type: UPDATE_VARIABLE_CONDITION,
|
|
52
|
-
id,
|
|
53
|
-
index,
|
|
54
|
-
value,
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Update condition
|
|
59
|
-
* @param value Condition's value
|
|
60
|
-
*/
|
|
61
|
-
export const updateDocumentConditionsAction = (
|
|
62
|
-
name: string,
|
|
63
|
-
index: number,
|
|
64
|
-
value: boolean
|
|
65
|
-
): ActionsType.Conditions.updateDocumentCondition => ({
|
|
66
|
-
type: UPDATE_DOCUMENT_CONDITION,
|
|
67
|
-
name,
|
|
68
|
-
value,
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* Update condition
|
|
73
|
-
* @param index Occurency index
|
|
74
|
-
* @param value Condition's value
|
|
75
|
-
*/
|
|
76
|
-
export const updateSectionConditionsAction = (
|
|
77
|
-
id: number,
|
|
78
|
-
document: string,
|
|
79
|
-
value: boolean
|
|
80
|
-
): ActionsType.Conditions.updateSectionCondition => ({
|
|
81
|
-
type: UPDATE_SECTION_CONDITION,
|
|
82
|
-
document,
|
|
83
|
-
id,
|
|
84
|
-
value,
|
|
85
|
-
});
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Update condition
|
|
89
|
-
* @param index Occurency index
|
|
90
|
-
* @param value Condition's value
|
|
91
|
-
*/
|
|
92
|
-
export const updatePrefillersConditionsAction = (
|
|
93
|
-
id: number,
|
|
94
|
-
index: number,
|
|
95
|
-
value: boolean[]
|
|
96
|
-
): ActionsType.Conditions.updatePrefillerCondition => ({
|
|
97
|
-
type: UPDATE_PREFILLER_CONDITION,
|
|
98
|
-
id,
|
|
99
|
-
index,
|
|
100
|
-
value,
|
|
101
|
-
});
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Update condition
|
|
105
|
-
* @param index Occurency index
|
|
106
|
-
* @param value Condition's value
|
|
107
|
-
*/
|
|
108
|
-
// eslint-disable-next-line max-len
|
|
109
|
-
export const updateOptionValidatorConditionsAction = (
|
|
110
|
-
id: number,
|
|
111
|
-
index: number,
|
|
112
|
-
value: boolean
|
|
113
|
-
): ActionsType.Conditions.updateOptionValidatorCondition => ({
|
|
114
|
-
type: UPDATE_OPTION_VALIDATOR_CONDITION,
|
|
115
|
-
id,
|
|
116
|
-
index,
|
|
117
|
-
value,
|
|
118
|
-
});
|
|
119
|
-
|
|
120
|
-
/**
|
|
121
|
-
* Update condition
|
|
122
|
-
* @param index Occurency index
|
|
123
|
-
* @param value Condition's value
|
|
124
|
-
*/
|
|
125
|
-
// eslint-disable-next-line max-len
|
|
126
|
-
export const updateVariableValidatorConditionsAction = (
|
|
127
|
-
id: number,
|
|
128
|
-
index: number,
|
|
129
|
-
value: boolean
|
|
130
|
-
): ActionsType.Conditions.updateVariableValidatorCondition => ({
|
|
131
|
-
type: UPDATE_VARIABLE_VALIDATOR_CONDITION,
|
|
132
|
-
id,
|
|
133
|
-
index,
|
|
134
|
-
value,
|
|
135
|
-
});
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
initOptionAction,
|
|
3
|
-
initVariableAction,
|
|
4
|
-
updateOptionAction,
|
|
5
|
-
updateVariableAction,
|
|
6
|
-
addMultipleOccurencyAction,
|
|
7
|
-
deleteMultipleOccurencyAction,
|
|
8
|
-
} from './inputs';
|
|
9
|
-
import {
|
|
10
|
-
UPDATE_OPTION_INPUT,
|
|
11
|
-
INIT_VARIABLE,
|
|
12
|
-
INIT_OPTION,
|
|
13
|
-
UPDATE_VARIABLE_INPUT,
|
|
14
|
-
ADD_MULTIPLE_OCCURENCY,
|
|
15
|
-
DELETE_MULTIPLE_OCCURENCY,
|
|
16
|
-
} from '../constants/inputs';
|
|
17
|
-
|
|
18
|
-
describe('Inputs actions test suit', () => {
|
|
19
|
-
// Init option action
|
|
20
|
-
it('initOption Action', () => {
|
|
21
|
-
const action = initOptionAction(123, [true]);
|
|
22
|
-
|
|
23
|
-
return expect(action).toStrictEqual({
|
|
24
|
-
type: INIT_OPTION,
|
|
25
|
-
id: 123,
|
|
26
|
-
values: [true],
|
|
27
|
-
});
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
// Init variable action
|
|
31
|
-
it('initVariable Action', () => {
|
|
32
|
-
const action = initVariableAction(123, ['']);
|
|
33
|
-
|
|
34
|
-
return expect(action).toStrictEqual({
|
|
35
|
-
type: INIT_VARIABLE,
|
|
36
|
-
id: 123,
|
|
37
|
-
values: [''],
|
|
38
|
-
});
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
// Update option action
|
|
42
|
-
it('updateOption Action', () => {
|
|
43
|
-
const action = updateOptionAction(123, true, 3);
|
|
44
|
-
|
|
45
|
-
return expect(action).toStrictEqual({
|
|
46
|
-
type: UPDATE_OPTION_INPUT,
|
|
47
|
-
id: 123,
|
|
48
|
-
value: true,
|
|
49
|
-
index: 3,
|
|
50
|
-
});
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
// Update variable action
|
|
54
|
-
it('updateVariable Action', () => {
|
|
55
|
-
const action = updateVariableAction(123, 'Hello', 1);
|
|
56
|
-
|
|
57
|
-
return expect(action).toStrictEqual({
|
|
58
|
-
type: UPDATE_VARIABLE_INPUT,
|
|
59
|
-
id: 123,
|
|
60
|
-
value: 'Hello',
|
|
61
|
-
index: 1,
|
|
62
|
-
});
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
// Add multiple occurency action
|
|
66
|
-
it('addMultipleOccurency Action', () => {
|
|
67
|
-
const action = addMultipleOccurencyAction(123);
|
|
68
|
-
|
|
69
|
-
return expect(action).toStrictEqual({
|
|
70
|
-
type: ADD_MULTIPLE_OCCURENCY,
|
|
71
|
-
id: 123,
|
|
72
|
-
});
|
|
73
|
-
});
|
|
74
|
-
|
|
75
|
-
// Delete multiple occurency action
|
|
76
|
-
it('deleteMultipleOccurency Action', () => {
|
|
77
|
-
const action = deleteMultipleOccurencyAction(123, 1);
|
|
78
|
-
|
|
79
|
-
return expect(action).toStrictEqual({
|
|
80
|
-
type: DELETE_MULTIPLE_OCCURENCY,
|
|
81
|
-
id: 123,
|
|
82
|
-
index: 1,
|
|
83
|
-
});
|
|
84
|
-
});
|
|
85
|
-
});
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
import { StateType } from "../../types/State.type";
|
|
2
|
-
import { ActionsType } from "../../types/Actions.type";
|
|
3
|
-
import {
|
|
4
|
-
INIT_INPUTS,
|
|
5
|
-
INIT_OPTION,
|
|
6
|
-
INIT_VARIABLE,
|
|
7
|
-
UPDATE_OPTION_INPUT,
|
|
8
|
-
UPDATE_VARIABLE_INPUT,
|
|
9
|
-
ADD_MULTIPLE_OCCURENCY,
|
|
10
|
-
DELETE_MULTIPLE_OCCURENCY,
|
|
11
|
-
} from "../constants/inputs";
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Initiates inputs
|
|
15
|
-
* @param inputs inputs object
|
|
16
|
-
* @param references (optional) references object
|
|
17
|
-
*/
|
|
18
|
-
export const initInputsAction = (
|
|
19
|
-
inputs: StateType.Inputs,
|
|
20
|
-
references?: StateType.References
|
|
21
|
-
): ActionsType.Inputs.initInputs => ({
|
|
22
|
-
type: INIT_INPUTS,
|
|
23
|
-
inputs,
|
|
24
|
-
references,
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Initiates option's input
|
|
29
|
-
* @param id Option's id
|
|
30
|
-
* @param values Option's initial values
|
|
31
|
-
*/
|
|
32
|
-
export const initOptionAction = (
|
|
33
|
-
id: number,
|
|
34
|
-
values: boolean[]
|
|
35
|
-
): ActionsType.Inputs.initOption => ({
|
|
36
|
-
type: INIT_OPTION,
|
|
37
|
-
id,
|
|
38
|
-
values,
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* Updating option's input
|
|
43
|
-
* @param id option's id
|
|
44
|
-
* @param value option's value
|
|
45
|
-
* @param index occurency's index
|
|
46
|
-
*/
|
|
47
|
-
export const updateOptionAction = (
|
|
48
|
-
id: number,
|
|
49
|
-
value: boolean,
|
|
50
|
-
index: number
|
|
51
|
-
): ActionsType.Inputs.updateOptionInput => ({
|
|
52
|
-
type: UPDATE_OPTION_INPUT,
|
|
53
|
-
id,
|
|
54
|
-
value,
|
|
55
|
-
index,
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
/**
|
|
59
|
-
* Initiates variable's input
|
|
60
|
-
* @param id Variable's id
|
|
61
|
-
* @param values Variable's initial values
|
|
62
|
-
*/
|
|
63
|
-
export const initVariableAction = (
|
|
64
|
-
id: number,
|
|
65
|
-
values: (string | number)[]
|
|
66
|
-
): ActionsType.Inputs.initVariable => ({
|
|
67
|
-
type: INIT_VARIABLE,
|
|
68
|
-
id,
|
|
69
|
-
values,
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
/**
|
|
73
|
-
* Updating variable's input
|
|
74
|
-
* @param id variable's id
|
|
75
|
-
* @param value variable's value
|
|
76
|
-
* @param index occurency's index
|
|
77
|
-
*/
|
|
78
|
-
export const updateVariableAction = (
|
|
79
|
-
id: number,
|
|
80
|
-
value: string | number,
|
|
81
|
-
index: number
|
|
82
|
-
): ActionsType.Inputs.updateVariableInput => ({
|
|
83
|
-
type: UPDATE_VARIABLE_INPUT,
|
|
84
|
-
id,
|
|
85
|
-
value,
|
|
86
|
-
index,
|
|
87
|
-
});
|
|
88
|
-
|
|
89
|
-
/**
|
|
90
|
-
* Adding multiple's occurency
|
|
91
|
-
* @param id Root option's id
|
|
92
|
-
*/
|
|
93
|
-
export const addMultipleOccurencyAction = (
|
|
94
|
-
id: number
|
|
95
|
-
): ActionsType.Inputs.addMultipleOccurency => ({
|
|
96
|
-
type: ADD_MULTIPLE_OCCURENCY,
|
|
97
|
-
id,
|
|
98
|
-
});
|
|
99
|
-
|
|
100
|
-
/**
|
|
101
|
-
* Deleting multiple's occurency
|
|
102
|
-
* @param id Root option's id
|
|
103
|
-
*/
|
|
104
|
-
export const deleteMultipleOccurencyAction = (
|
|
105
|
-
id: number,
|
|
106
|
-
index: number
|
|
107
|
-
): ActionsType.Inputs.deleteMultipleOccurency => ({
|
|
108
|
-
type: DELETE_MULTIPLE_OCCURENCY,
|
|
109
|
-
id,
|
|
110
|
-
index,
|
|
111
|
-
});
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as app from "./app";
|
|
2
|
-
import * as conditions from "./conditions";
|
|
3
|
-
import * as inputs from "./inputs";
|
|
4
|
-
import * as mandatories from "./mandatories";
|
|
5
|
-
import * as references from "./references";
|
|
6
|
-
import * as smartscript from "./smartscript";
|
|
7
|
-
import * as user from "./user";
|
|
8
|
-
import * as dataSaga from "./sagas/data";
|
|
9
|
-
import * as modelSaga from "./sagas/model";
|
|
10
|
-
import * as userSaga from "./sagas/user";
|
|
11
|
-
|
|
12
|
-
export const actionsLibrary = {
|
|
13
|
-
...app,
|
|
14
|
-
...conditions,
|
|
15
|
-
...inputs,
|
|
16
|
-
...mandatories,
|
|
17
|
-
...references,
|
|
18
|
-
...smartscript,
|
|
19
|
-
...user,
|
|
20
|
-
...dataSaga,
|
|
21
|
-
...modelSaga,
|
|
22
|
-
...userSaga,
|
|
23
|
-
};
|