@zohodesk/library-platform 1.0.1 → 1.0.2-exp.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/es/bc/field-validation/Constants.js +4 -0
- package/es/bc/field-validation/EventHandlers.js +1 -0
- package/es/bc/field-validation/Events.js +106 -0
- package/es/bc/field-validation/FieldTypes.js +20 -0
- package/es/bc/field-validation/Properties.js +11 -0
- package/es/bc/field-validation/index.js +5 -0
- package/es/bc/index.js +2 -0
- package/es/bc/list-selection/Constants.js +8 -1
- package/es/bc/list-selection/Properties.js +25 -12
- package/es/bc/local-storage/Constants.js +2 -1
- package/es/bc/local-storage/Event.js +21 -0
- package/es/bc/local-storage/Properties.js +1 -10
- package/es/bc/sort-by/Properties.js +20 -15
- package/es/bc/sort-by/index.js +2 -0
- package/es/bc/table-column-resizer/Constants.js +5 -5
- package/es/bc/table-column-resizer/Events.js +114 -0
- package/es/bc/table-column-resizer/Properties.js +27 -14
- package/es/bc/zdata-source/Actions.js +67 -0
- package/es/bc/zdata-source/Constants.js +17 -0
- package/es/bc/zdata-source/EventHandlers.js +2 -0
- package/es/bc/zdata-source/Symbols.js +5 -0
- package/es/bc/zfield/ActionHandlers.js +1 -1
- package/es/bc/zform/Constants.js +1 -0
- package/es/bc/zform/EventHandlers.js +1 -0
- package/es/bc/zform/Events.js +6 -0
- package/es/bc/zform/Properties.js +87 -0
- package/es/bc/zform/Symbol.js +24 -0
- package/es/bc/zform/ZFormModeEnum.js +8 -0
- package/es/bc/zhttp/Properties.js +11 -1
- package/es/bc/zhttp/index.js +2 -0
- package/es/bc/zlist/EventHandlers.js +1 -1
- package/es/bc/zlist/Properties.js +35 -30
- package/es/bc/zrecord/Actions.js +13 -1
- package/es/bc/zrecord/Constants.js +6 -1
- package/es/cc/action-icon/Model.js +6 -2
- package/es/cc/action-icon/Properties.js +49 -0
- package/es/cc/action-location/Properties.js +39 -3
- package/es/cc/checkbox/Constants.js +4 -0
- package/es/cc/checkbox/Properties.js +17 -0
- package/es/cc/component/properties/PropertiesConverter.js +23 -0
- package/es/cc/date/Constants.js +11 -0
- package/es/cc/date/Events.js +20 -0
- package/es/cc/date/Properties.js +74 -0
- package/es/cc/date/index.js +3 -0
- package/es/cc/empty-state/index.js +1 -0
- package/es/cc/ephi-tag/Properties.js +1 -0
- package/es/cc/ephi-tag/index.js +1 -0
- package/es/cc/fields/currency/Properties.js +26 -0
- package/es/cc/fields/decimal/Properties.js +19 -0
- package/es/cc/fields/email/Properties.js +10 -0
- package/es/cc/fields/field/Constants.js +7 -1
- package/es/cc/fields/field/Properties.js +73 -4
- package/es/cc/fields/field/Types.js +16 -16
- package/es/cc/fields/multi-line/Properties.js +22 -19
- package/es/cc/fields/multi-select/Properties.js +4 -2
- package/es/cc/fields/number/Properties.js +19 -0
- package/es/cc/fields/percent/Properties.js +19 -0
- package/es/cc/fields/phone/Properties.js +19 -0
- package/es/cc/fields/pick-list/Properties.js +5 -2
- package/es/cc/fields/text/Properties.js +28 -0
- package/es/cc/fields/url/Properties.js +19 -0
- package/es/cc/form/Constants.js +11 -0
- package/es/cc/form/Events.js +53 -0
- package/es/cc/form/Properties.js +22 -0
- package/es/cc/form-connected/Properties.js +1 -0
- package/es/cc/index.js +4 -0
- package/es/cc/info-icon/Properties.js +10 -0
- package/es/cc/info-icon/index.js +1 -0
- package/es/cc/label/Properties.js +36 -0
- package/es/cc/label/index.js +1 -0
- package/es/cc/multi-select/Constants.js +11 -0
- package/es/cc/multi-select/Events.js +23 -0
- package/es/cc/multi-select/Properties.js +85 -0
- package/es/cc/multi-select/index.js +3 -0
- package/es/cc/section/Constants.js +9 -0
- package/es/cc/section/Events.js +51 -0
- package/es/cc/section/Properties.js +86 -0
- package/es/cc/section/index.js +2 -0
- package/es/cc/select/Constants.js +13 -0
- package/es/cc/select/Events.js +20 -0
- package/es/cc/select/Properties.js +74 -0
- package/es/cc/select/index.js +3 -0
- package/es/cc/slot/Properties.js +24 -0
- package/es/cc/switch/Events.js +15 -0
- package/es/cc/switch/index.js +1 -1
- package/es/cc/table-connected/Properties.js +30 -57
- package/es/cc/table-connected/constants/Events.js +7 -0
- package/es/cc/table-connected/constants/index.js +1 -0
- package/es/cc/table-connected/index.js +4 -0
- package/es/cc/table-list/Constants.js +6 -0
- package/es/cc/table-list/Properties.js +182 -327
- package/es/cc/table-list/data-types/Header.js +14 -7
- package/es/cc/table-list/data-types/RowCursor.js +8 -0
- package/es/cc/table-list/model/RowModel.js +2 -4
- package/es/cc/table-list/model/TableModel.js +2 -2
- package/es/cc/table-list/row/Properties.js +15 -10
- package/es/cc/textarea/Constants.js +11 -0
- package/es/cc/textarea/Events.js +20 -0
- package/es/cc/textarea/Properties.js +68 -0
- package/es/cc/textarea/index.js +3 -0
- package/es/cc/textbox/Constants.js +13 -0
- package/es/cc/textbox/Data.js +8 -0
- package/es/cc/textbox/Events.js +22 -0
- package/es/cc/textbox/Properties.js +83 -0
- package/es/cc/textbox/index.js +3 -0
- package/es/desk-frameworks/form-connected/frameworks/EventHandlersFactory.js +24 -0
- package/es/desk-frameworks/form-connected/frameworks/FormConnected.js +5 -0
- package/es/desk-frameworks/form-connected/frameworks/FormConnectedFactory.js +33 -0
- package/es/desk-frameworks/form-connected/frameworks/FormConnectedView.js +28 -0
- package/es/desk-frameworks/form-connected/frameworks/FormSdkFactory.js +35 -0
- package/es/desk-frameworks/index.js +2 -1
- package/es/desk-frameworks/table-connected/adapters/controllers/AbstractController.js +8 -0
- package/es/desk-frameworks/table-connected/adapters/controllers/ResizeByMouseController.js +20 -0
- package/es/desk-frameworks/table-connected/adapters/controllers/ResizeEndController.js +16 -0
- package/es/desk-frameworks/table-connected/adapters/controllers/ResizeFinishController.js +45 -0
- package/es/desk-frameworks/table-connected/adapters/controllers/ResizeStartController.js +33 -0
- package/es/desk-frameworks/table-connected/adapters/controllers/ScrollController.js +15 -0
- package/es/desk-frameworks/table-connected/frameworks/EventHandlersFactory.js +51 -1
- package/es/desk-frameworks/table-connected/frameworks/ListSdkFactory.js +118 -2
- package/es/desk-frameworks/table-connected/frameworks/TableConnectedFactory.js +27 -7
- package/es/desk-frameworks/table-connected/frameworks/TableConnectedView.js +23 -13
- package/es/index.js +1 -2
- package/es/library/behaviours/field-validation/adapters/controllers/AbstractController.js +9 -0
- package/es/library/behaviours/field-validation/adapters/controllers/ValidateFieldController.js +32 -0
- package/es/library/behaviours/field-validation/adapters/controllers/ValidateFieldsController.js +31 -0
- package/es/library/behaviours/field-validation/adapters/gateway/Repository.js +23 -0
- package/es/library/behaviours/field-validation/adapters/gateway/Service.js +18 -0
- package/es/library/behaviours/field-validation/applications/interfaces/input/FieldData.js +17 -0
- package/es/library/behaviours/field-validation/applications/usecases/AbstractUseCase.js +15 -0
- package/es/library/behaviours/field-validation/applications/usecases/ValidateField.js +29 -0
- package/es/library/behaviours/field-validation/applications/usecases/ValidateFields.js +28 -0
- package/es/library/behaviours/field-validation/domain/FieldValidation.js +94 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/BooleanValidation.js +28 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/CurrencyValidation.js +49 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/DateTimeValidation.js +24 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/DateValidation.js +24 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/DecimalValidation.js +49 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/EmailValidation.js +28 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/IntegerValidation.js +39 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/LookUpValidation.js +24 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/MultiSelectValidation.js +26 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/PercentValidation.js +28 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/PhoneValidation.js +39 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/PicklistValidation.js +24 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/TextAreaValidation.js +39 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/TextBoxValidation.js +39 -0
- package/es/library/behaviours/field-validation/domain/field-vise-validations/URLValidation.js +28 -0
- package/es/library/behaviours/field-validation/domain/interfaces/FieldTypes.js +20 -0
- package/es/library/behaviours/field-validation/domain/interfaces/ValidationsEnum.js +22 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/ILookUpField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/IMultiSelectField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/IPercentField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/IPhoneField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/IPicklistField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/ITextAreaField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/ITextBoxField.js +0 -0
- package/es/library/behaviours/field-validation/domain/interfaces/fields/IURLField.js +0 -0
- package/es/library/behaviours/field-validation/frameworks/ui/EventHandlerFactory.js +23 -0
- package/es/library/behaviours/field-validation/frameworks/ui/FieldValidationBehaviourFactory.js +27 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/BooleanFieldValidation.test.js +137 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/CurrencyFieldValidation.test.js +228 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/DateFieldValidation.test.js +108 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/DateTimeFieldValidation.test.js +108 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/DecimalFieldValidation.test.js +257 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/EmailFieldValidation.test.js +139 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/FieldValidationBehaviour.test.js +171 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/IntegerFieldValidation.test.js +168 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/LookUpFieldValidation.test.js +108 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/MultiSelectFieldValidation.test.js +79 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/PercentFieldValidation.test.js +108 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/PhoneFieldValidation.test.js +168 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/PicklistFieldValidation.test.js +79 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/TextAreaFieldValidation.test.js +170 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/TextBoxFieldValidation.test.js +170 -0
- package/es/library/behaviours/field-validation/frameworks/ui/__tests__/URLFieldValidation.test.js +108 -0
- package/es/library/behaviours/field-validation/frameworks/utils/FormBasicValidationAdaptor.js +228 -0
- package/es/library/behaviours/field-validation/frameworks/utils/__tests__/formValidate.test.js +284 -0
- package/es/library/behaviours/field-validation/frameworks/utils/formValidate.js +334 -0
- package/es/library/behaviours/list-selection/adapters/controllers/AllSelectionController.js +5 -2
- package/es/library/behaviours/list-selection/adapters/controllers/DeselectController.js +26 -0
- package/es/library/behaviours/list-selection/adapters/controllers/RangeSelectionController.js +4 -2
- package/es/library/behaviours/list-selection/adapters/controllers/SelectController.js +26 -0
- package/es/library/behaviours/list-selection/adapters/controllers/SelectionController.js +4 -2
- package/es/library/behaviours/list-selection/adapters/gateways/Repository.js +5 -5
- package/es/library/behaviours/list-selection/adapters/gateways/Service.js +13 -5
- package/es/library/behaviours/list-selection/applications/usecases/AllItemSelection.js +20 -0
- package/es/library/behaviours/list-selection/applications/usecases/Deselect.js +21 -0
- package/es/library/behaviours/list-selection/applications/usecases/ItemsSelection.js +21 -0
- package/es/library/behaviours/list-selection/applications/usecases/RangeSelection.js +21 -0
- package/es/library/behaviours/list-selection/applications/usecases/Select.js +21 -0
- package/es/library/behaviours/list-selection/domain/entities/ListItemSelection.js +171 -0
- package/es/library/behaviours/list-selection/frameworks/ActionHandlerFactory.js +5 -1
- package/es/library/behaviours/local-storage/adapters/controllers/AbstractController.js +7 -0
- package/es/library/behaviours/local-storage/adapters/controllers/SetDataController.js +22 -0
- package/es/library/behaviours/local-storage/adapters/gateways/LocalStorageRepository.js +26 -0
- package/es/library/behaviours/local-storage/adapters/gateways/Service.js +14 -0
- package/es/library/behaviours/local-storage/adapters/presenters/Presenter.js +38 -0
- package/es/library/behaviours/local-storage/applications/interfaces/output/IPresenter.js +0 -0
- package/es/library/behaviours/local-storage/applications/usecases/SetDataUseCase.js +17 -0
- package/es/library/behaviours/local-storage/domain/entities/Storage.js +28 -0
- package/es/library/behaviours/local-storage/frameworks/LocalStorageBehaviourFactory.js +28 -0
- package/es/library/behaviours/sort-by/adapters/gateway/Repository.js +1 -1
- package/es/library/behaviours/sort-by/adapters/gateway/Service.js +1 -1
- package/es/library/behaviours/sort-by/domain/entities/SortBy.js +42 -0
- package/es/library/behaviours/sort-by/frameworks/ui/SortByBehaviourFactory.js +2 -2
- package/es/library/behaviours/table-column-resizer/Readme.md +141 -0
- package/es/library/behaviours/table-column-resizer/ReadmeActionAsEvent.md +141 -0
- package/es/library/behaviours/table-column-resizer/adapters/controllers/AbstractController.js +7 -0
- package/es/library/behaviours/table-column-resizer/adapters/controllers/ResizeByMouseController.js +21 -0
- package/es/library/behaviours/table-column-resizer/adapters/controllers/ResizeByScrollController.js +18 -0
- package/es/library/behaviours/table-column-resizer/adapters/controllers/ResizeEndController.js +21 -0
- package/es/library/behaviours/table-column-resizer/adapters/controllers/ResizeStartController.js +32 -0
- package/es/library/behaviours/table-column-resizer/adapters/gateways/Repository.js +32 -0
- package/es/library/behaviours/table-column-resizer/adapters/gateways/Service.js +23 -0
- package/es/library/behaviours/table-column-resizer/adapters/gateways/TableElementService.js +36 -0
- package/es/library/behaviours/table-column-resizer/adapters/presenters/AutoScroll.js +50 -0
- package/es/library/behaviours/table-column-resizer/adapters/presenters/Presenter.js +53 -0
- package/es/library/behaviours/table-column-resizer/applications/usecases/AbstractUsecase.js +20 -0
- package/es/library/behaviours/table-column-resizer/applications/usecases/ResizeByMouseUsecase.js +30 -0
- package/es/library/behaviours/table-column-resizer/applications/usecases/ResizeByScrollUsecase.js +27 -0
- package/es/library/behaviours/table-column-resizer/applications/usecases/ResizeEndUsecase.js +33 -0
- package/es/library/behaviours/table-column-resizer/applications/usecases/ResizeStartUsecase.js +39 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/ColumnResizer.js +125 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/Constants.js +3 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/MinMaxLimiter.js +11 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/Mouse.js +16 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/ResizeColumnCalculator.js +84 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/ResizerAutoScrollCalculator.js +44 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/ResizingColumn.js +83 -0
- package/es/library/behaviours/table-column-resizer/domain/entities/Table.js +68 -0
- package/es/library/behaviours/table-column-resizer/frameworks/TableColumnResizerBehaviorFactory.js +38 -0
- package/es/library/behaviours/text-to-field-click/adapters/gateway/Repository.js +1 -1
- package/es/library/behaviours/text-to-field-click/domain/entities/FieldEventConverter.js +19 -0
- package/es/library/behaviours/text-to-field-click/frameworks/ui/EventHandlersFactory.js +1 -1
- package/es/library/custom-component/adapters/gateways/event-manager/EventManager.js +1 -1
- package/es/library/custom-component/adapters/gateways/service/Service.js +6 -6
- package/es/library/custom-component/applications/entities-factory/BehavioursFactory.js +43 -0
- package/es/library/custom-component/applications/entities-factory/ComponentFactory.js +47 -0
- package/es/library/custom-component/applications/entities-factory/EventHandlersFactory.js +8 -0
- package/es/library/custom-component/applications/entities-factory/PropertiesFactory.js +22 -0
- package/es/library/custom-component/applications/usecases/UnmountUseCase.js +25 -0
- package/es/library/custom-component/applications/usecases/UpdatePropertyUseCase.js +29 -0
- package/es/library/custom-component/applications/usecases/UpdateStateUseCase.js +20 -0
- package/es/library/custom-component/domain/entities/Behaviour.js +54 -0
- package/es/library/custom-component/domain/entities/Component.js +257 -0
- package/es/library/custom-component/domain/entities/DefaultAppendToActionPayload.js +10 -0
- package/es/library/custom-component/domain/entities/Event.js +32 -0
- package/es/library/custom-component/domain/entities/Properties.js +156 -0
- package/es/library/custom-component/domain/entities/Property.js +65 -0
- package/es/library/custom-component/domain/entities/interfaces/IUpdateHelper.js +0 -0
- package/es/library/custom-component/frameworks/json-schema-validator/Validator.js +19 -3
- package/es/library/custom-component/frameworks/ui/Compare.js +25 -0
- package/es/library/custom-component/frameworks/ui/CreateCustomComponent.js +27 -5
- package/es/library/custom-component/frameworks/ui/CreateSlotComponent.js +26 -0
- package/es/library/custom-component/frameworks/ui/__testcases__/CreateCustomComponent.spec.js +113 -0
- package/es/library/dot/components/action-location/frameworks/ui/ActionComponentMapping.js +7 -0
- package/es/library/dot/components/action-location/frameworks/ui/ActionLocationView.js +8 -29
- package/es/library/dot/components/actions-renderer/frameworks/ui/ActionsRenderer.js +9 -0
- package/es/library/dot/components/actions-renderer/frameworks/ui/ActionsRendererView.js +37 -0
- package/es/library/dot/components/form/adapters/presenter/TransformState.js +57 -0
- package/es/library/dot/components/form/frameworks/ui/EventHandlerFactory.js +54 -0
- package/es/library/dot/components/form/frameworks/ui/Form.js +14 -0
- package/es/library/dot/components/form/frameworks/ui/FormView.js +43 -0
- package/es/library/dot/components/form/frameworks/ui/__test__/Form.test.js +146 -0
- package/es/library/dot/components/form/frameworks/ui/css/Form.module.css +29 -0
- package/es/library/dot/components/form/frameworks/ui/sub-components/Sections.js +32 -0
- package/es/library/dot/components/form-fields/checkbox/adapters/presenter/TransformState.js +22 -0
- package/es/library/dot/components/form-fields/checkbox/frameworks/ui/Checkbox.js +14 -0
- package/es/library/dot/components/form-fields/checkbox/frameworks/ui/CheckboxView.js +78 -0
- package/es/library/dot/components/form-fields/checkbox/frameworks/ui/EventHandlerFactory.js +68 -0
- package/es/library/dot/components/form-fields/checkbox/frameworks/ui/__test__/Checkbox.test.js +78 -0
- package/es/library/dot/components/form-fields/currency/adapters/presenter/TransformState.js +81 -0
- package/es/library/dot/components/form-fields/currency/frameworks/ui/Currency.js +14 -0
- package/es/library/dot/components/form-fields/currency/frameworks/ui/CurrencyView.js +47 -0
- package/es/library/dot/components/form-fields/currency/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/currency/frameworks/ui/__test__/Currency.test.js +40 -0
- package/es/library/dot/components/form-fields/date/adapters/presenter/TransformState.js +22 -0
- package/es/library/dot/components/form-fields/date/frameworks/ui/Date.js +14 -0
- package/es/library/dot/components/form-fields/date/frameworks/ui/DateView.js +45 -0
- package/es/library/dot/components/form-fields/date/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/date/frameworks/ui/__test__/Date.test.js +32 -0
- package/es/library/dot/components/form-fields/datetime/adapters/presenter/TransformState.js +22 -0
- package/es/library/dot/components/form-fields/datetime/frameworks/ui/DateTime.js +14 -0
- package/es/library/dot/components/form-fields/datetime/frameworks/ui/DateTimeView.js +46 -0
- package/es/library/dot/components/form-fields/datetime/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/datetime/frameworks/ui/__test__/DateTime.test.js +32 -0
- package/es/library/dot/components/form-fields/decimal/adapters/presenter/TransformState.js +31 -0
- package/es/library/dot/components/form-fields/decimal/frameworks/ui/Decimal.js +14 -0
- package/es/library/dot/components/form-fields/decimal/frameworks/ui/DecimalView.js +47 -0
- package/es/library/dot/components/form-fields/decimal/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/decimal/frameworks/ui/__test__/Decimal.test.js +43 -0
- package/es/library/dot/components/form-fields/email/adapters/presenter/TransformState.js +23 -0
- package/es/library/dot/components/form-fields/email/frameworks/ui/Email.js +14 -0
- package/es/library/dot/components/form-fields/email/frameworks/ui/EmailView.js +47 -0
- package/es/library/dot/components/form-fields/email/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/email/frameworks/ui/__test__/Email.test.js +40 -0
- package/es/library/dot/components/form-fields/ephi-tag/frameworks/ui/EPHITag.js +10 -0
- package/es/library/dot/components/form-fields/ephi-tag/frameworks/ui/EPHITagView.js +21 -0
- package/es/library/dot/components/form-fields/ephi-tag/frameworks/ui/css/EPHITag.module.css +3 -0
- package/es/library/dot/components/form-fields/field/__test__/common.js +163 -0
- package/es/library/dot/components/form-fields/index.js +15 -0
- package/es/library/dot/components/form-fields/info-icon/frameworks/ui/InfoIcon.js +10 -0
- package/es/library/dot/components/form-fields/info-icon/frameworks/ui/InfoIconView.js +21 -0
- package/es/library/dot/components/form-fields/info-icon/frameworks/ui/css/InfoIcon.module.css +3 -0
- package/es/library/dot/components/form-fields/multi-select/adapters/presenter/TransformState.js +31 -0
- package/es/library/dot/components/form-fields/multi-select/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/multi-select/frameworks/ui/MultiSelect.js +14 -0
- package/es/library/dot/components/form-fields/multi-select/frameworks/ui/MultiSelectView.js +59 -0
- package/es/library/dot/components/form-fields/multi-select/frameworks/ui/__test__/MultiSelect.test.js +74 -0
- package/es/library/dot/components/form-fields/number/adapters/presenter/TransformState.js +31 -0
- package/es/library/dot/components/form-fields/number/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/number/frameworks/ui/Number.js +14 -0
- package/es/library/dot/components/form-fields/number/frameworks/ui/NumberView.js +47 -0
- package/es/library/dot/components/form-fields/number/frameworks/ui/__test__/Number.test.js +43 -0
- package/es/library/dot/components/form-fields/percentage/adapters/presenter/TransformState.js +31 -0
- package/es/library/dot/components/form-fields/percentage/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/percentage/frameworks/ui/Percentage.js +14 -0
- package/es/library/dot/components/form-fields/percentage/frameworks/ui/PercentageView.js +47 -0
- package/es/library/dot/components/form-fields/percentage/frameworks/ui/__test__/Percentage.test.js +43 -0
- package/es/library/dot/components/form-fields/phone/adapters/presenter/TransformState.js +31 -0
- package/es/library/dot/components/form-fields/phone/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/phone/frameworks/ui/Phone.js +14 -0
- package/es/library/dot/components/form-fields/phone/frameworks/ui/PhoneView.js +47 -0
- package/es/library/dot/components/form-fields/phone/frameworks/ui/__test__/Phone.test.js +43 -0
- package/es/library/dot/components/form-fields/pick-list/adapters/presenter/TransformState.js +23 -0
- package/es/library/dot/components/form-fields/pick-list/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/pick-list/frameworks/ui/PickList.js +14 -0
- package/es/library/dot/components/form-fields/pick-list/frameworks/ui/PickListView.js +59 -0
- package/es/library/dot/components/form-fields/pick-list/frameworks/ui/__test__/PickList.test.js +72 -0
- package/es/library/dot/components/form-fields/textarea/adapters/presenter/TransformState.js +23 -0
- package/es/library/dot/components/form-fields/textarea/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/textarea/frameworks/ui/TextArea.js +14 -0
- package/es/library/dot/components/form-fields/textarea/frameworks/ui/TextAreaView.js +47 -0
- package/es/library/dot/components/form-fields/textarea/frameworks/ui/__test__/TextArea.test.js +59 -0
- package/es/library/dot/components/form-fields/textbox/adapters/presenter/TransformState.js +32 -0
- package/es/library/dot/components/form-fields/textbox/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/textbox/frameworks/ui/TextBox.js +14 -0
- package/es/library/dot/components/form-fields/textbox/frameworks/ui/TextBoxView.js +47 -0
- package/es/library/dot/components/form-fields/textbox/frameworks/ui/__test__/TextBox.test.js +85 -0
- package/es/library/dot/components/form-fields/url/adapters/presenter/TransformState.js +31 -0
- package/es/library/dot/components/form-fields/url/frameworks/ui/EventHandlerFactory.js +70 -0
- package/es/library/dot/components/form-fields/url/frameworks/ui/Url.js +14 -0
- package/es/library/dot/components/form-fields/url/frameworks/ui/UrlView.js +47 -0
- package/es/library/dot/components/form-fields/url/frameworks/ui/__test__/Url.test.js +43 -0
- package/es/library/dot/components/section/adapters/presenter/TransFormState.js +26 -0
- package/es/library/dot/components/section/frameworks/ui/EventHandlerFactory.js +60 -0
- package/es/library/dot/components/section/frameworks/ui/Section.js +15 -0
- package/es/library/dot/components/section/frameworks/ui/SectionView.js +51 -0
- package/es/library/dot/components/section/frameworks/ui/__test__/Section.test.js +76 -0
- package/es/library/dot/components/table-list/adapters/presenters/TableTranslator.js +9 -4
- package/es/library/dot/components/table-list/frameworks/hooks/useLatestCallBack.js +9 -0
- package/es/library/dot/components/table-list/frameworks/hooks/useMouseResizable.js +49 -0
- package/es/library/dot/components/table-list/frameworks/ui/TableList.js +1 -15
- package/es/library/dot/components/table-list/frameworks/ui/TableListView.js +20 -14
- package/es/library/dot/components/table-list/frameworks/ui/css/TableList.module.css +10 -0
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/Header.js +21 -10
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/Rows.js +12 -14
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/ActionColumn.js +3 -2
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/ColumnResizer.js +43 -1
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/HeaderData.js +26 -10
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/Headers.js +0 -4
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/header/SelectAll.js +5 -4
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/Columns.js +2 -6
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/Row.js +24 -14
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/RowActions.js +10 -4
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/RowData.js +18 -7
- package/es/library/dot/components/table-list/frameworks/ui/sub-components/row/RowSelection.js +1 -2
- package/es/library/dot/legacy-to-new-arch/action-icon/frameworks/ui/ActionIcon.js +27 -0
- package/es/library/dot/legacy-to-new-arch/action-icon/frameworks/ui/ActionIconView.js +110 -0
- package/es/library/dot/legacy-to-new-arch/action-icon/frameworks/ui/css/ActionIcon.module.css +3 -0
- package/es/library/dot/legacy-to-new-arch/checkbox/frameworks/ui/Checkbox.js +3 -3
- package/es/library/dot/legacy-to-new-arch/checkbox/frameworks/ui/CheckboxView.js +12 -1
- package/es/library/dot/legacy-to-new-arch/date/frameworks/ui/Date.js +12 -0
- package/es/library/dot/legacy-to-new-arch/date/frameworks/ui/DateView.js +56 -0
- package/es/library/dot/legacy-to-new-arch/index.js +1 -1
- package/es/library/dot/legacy-to-new-arch/label/frameworks/ui/Label.js +10 -0
- package/es/library/dot/legacy-to-new-arch/label/frameworks/ui/LabelView.js +31 -0
- package/es/library/dot/legacy-to-new-arch/label/frameworks/ui/css/Label.module.css +21 -0
- package/es/library/dot/legacy-to-new-arch/label/frameworks/ui/sub-components/ui/LabelAction.js +9 -0
- package/es/library/dot/legacy-to-new-arch/label/frameworks/ui/sub-components/ui/LabelActionView.js +38 -0
- package/es/library/dot/legacy-to-new-arch/label/frameworks/ui/sub-components/ui/css/LabelAction.module.css +4 -0
- package/es/library/dot/legacy-to-new-arch/multi-select/frameworks/ui/MultiSelect.js +11 -0
- package/es/library/dot/legacy-to-new-arch/multi-select/frameworks/ui/MultiSelectView.js +55 -0
- package/es/library/dot/legacy-to-new-arch/select/frameworks/ui/Select.js +12 -0
- package/es/library/dot/legacy-to-new-arch/select/frameworks/ui/SelectView.js +59 -0
- package/es/library/dot/legacy-to-new-arch/table-field-components/lookup-field/frameworks/ui/LookupFieldView.js +7 -6
- package/es/library/dot/legacy-to-new-arch/text-area/frameworks/ui/TextArea.js +11 -0
- package/es/library/dot/legacy-to-new-arch/text-area/frameworks/ui/TextAreaView.js +52 -0
- package/es/library/dot/legacy-to-new-arch/textbox/frameworks/ui/TextBox.js +12 -0
- package/es/library/dot/legacy-to-new-arch/textbox/frameworks/ui/TextBoxView.js +55 -0
- package/es/library/index.js +6 -1
- package/es/library/slot/frameworks/ui/ConvertSlotToComponent.js +23 -0
- package/es/library/slot/index.js +1 -0
- package/es/library/translator-common/adapters/presenter/TransFormState.js +6 -0
- package/es/library/translator-common/index.js +1 -0
- package/es/platform/client-actions/Readme.md +31 -0
- package/es/platform/client-actions/bc/zclient-actions/Constants.js +11 -0
- package/es/platform/client-actions/bc/zclient-actions/EventHandlers.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/Readme.md +31 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/ClientActionBehaviourExecutorController.js +27 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/FailureController.js +28 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/FetchStateStopController.js +21 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/MountController.js +25 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/NoContentController.js +23 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/SetClientActionsController.js +24 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/controllers/SuccessController.js +28 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/gateways/Repository.js +28 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/gateways/Service.js +35 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/presenters/Presenter.js +24 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/entities-factory/ClientActionFactory.js +12 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/entities-factory/ClientActionManagerFactory.js +10 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/gateways/IService.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/ExecuteActionBehaviourUseCase.js +33 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/FailureUseCase.js +22 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/FetchStateStopUseCase.js +25 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/InitializeUseCase.js +17 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/NoContentUseCase.js +27 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/SetClientActionsUseCase.js +21 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/usecases/SuccessUseCase.js +22 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/ClientAction.js +65 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/ClientActionManager.js +141 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/ClientActions.js +50 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/EventMapping.js +36 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/EventMappings.js +15 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/GetClientActionsStrategy.js +44 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/UIComponentMapping.js +41 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IClientAction.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IClientActionExecuteStrategy.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IClientActionManager.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IClientActions.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IError.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IEvent.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IEventMapping.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IEventMappings.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IPayload.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/IUIComponentMapping.js +0 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/PayloadValueMappingModel.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/PropsMeta.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/State.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/StrategyMeta.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/SubMeta.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/UIComponentMappingModel.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/domain/entities/interfaces/UserDetailsModel.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/frameworks/ActionsHandlersFactory.js +47 -0
- package/es/platform/client-actions/behaviour/zclient-actions/frameworks/ClientActionsBehaviourFactory.js +12 -0
- package/es/platform/client-actions/cc/action-event-mediator/Properties.js +34 -0
- package/es/platform/client-actions/cc/dynamic-action-component/Properties.js +51 -0
- package/es/platform/client-actions/components/action-event-mediator/adapters/controllers/MountController.js +18 -0
- package/es/platform/client-actions/components/action-event-mediator/adapters/controllers/PropertiesChangeController.js +26 -0
- package/es/platform/client-actions/components/action-event-mediator/adapters/controllers/UnmountController.js +18 -0
- package/es/platform/client-actions/components/action-event-mediator/adapters/gateway/Repository.js +36 -0
- package/es/platform/client-actions/components/action-event-mediator/adapters/presenters/Presenter.js +22 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/interfaces/UseCaseDependencies.js +1 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/interfaces/gateways/IRepository.js +0 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/interfaces/input/PropertiesChangeUseCaseInputModel.js +1 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/interfaces/output/IPresenter.js +0 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/usecases/AbstractUseCase.js +15 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/usecases/DestroyUseCase.js +13 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/usecases/InitializeUseCase.js +13 -0
- package/es/platform/client-actions/components/action-event-mediator/applications/usecases/PropertiesChangeUseCase.js +17 -0
- package/es/platform/client-actions/components/action-event-mediator/domain/entities/ActionEventMediatorEntity.js +108 -0
- package/es/platform/client-actions/components/action-event-mediator/domain/entities/interfaces/IActionLocation.js +1 -0
- package/es/platform/client-actions/components/action-event-mediator/domain/entities/interfaces/IState.js +1 -0
- package/es/platform/client-actions/components/action-event-mediator/frameworks/ui/ActionEventMediator.js +13 -0
- package/es/platform/client-actions/components/action-event-mediator/frameworks/ui/ActionEventMediatorView.js +19 -0
- package/es/platform/client-actions/components/action-event-mediator/frameworks/ui/EventHandlersFactory.js +30 -0
- package/es/platform/client-actions/components/dynamic-component/domain/entities/interfaces/IState.js +1 -0
- package/es/platform/client-actions/components/dynamic-component/frameworks/ui/DynamicActionComponent.js +9 -0
- package/es/platform/client-actions/components/dynamic-component/frameworks/ui/DynamicActionComponentView.js +34 -0
- package/es/platform/client-actions/components/interfaces/ActionViewModel.js +7 -0
- package/es/platform/client-actions/components/interfaces/EventMappingViewModel.js +0 -0
- package/es/platform/client-actions/components/row-actions-renderer/domain/entities/interfaces/IState.js +1 -0
- package/es/platform/client-actions/components/row-actions-renderer/frameworks/ui/RowActionsRenderer.js +12 -0
- package/es/platform/client-actions/components/row-actions-renderer/frameworks/ui/RowActionsRenderer.module.css +17 -0
- package/es/platform/client-actions/components/row-actions-renderer/frameworks/ui/RowActionsRendererView.js +30 -0
- package/es/platform/client-actions/template-resolver/index.js +44 -0
- package/es/platform/client-actions/template-resolver/interfaces/ITemplate.js +1 -0
- package/es/platform/client-actions/translators/client-actions-translator/index.js +29 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalEmptyString.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalEndsWith.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalEquals.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalGreaterThan.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalGreaterThanOrEquals.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalIn.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalIsEmpty.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalIsNotEmpty.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalLessThan.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalLessThanOrEquals.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalLike.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalNotEquals.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalNotLike.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/EvalStartsWith.js +4 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/GetResolvedContextFieldValue.js +8 -0
- package/es/platform/client-actions/translators/condition-resolver/field-evaluators/index.js +58 -0
- package/es/platform/client-actions/translators/condition-resolver/index.js +33 -0
- package/es/platform/client-actions/translators/condition-resolver/pattern-evaluator/PatternValidator.js +86 -0
- package/es/platform/client-actions/translators/condition-resolver/pattern-evaluator/index.js +96 -0
- package/es/platform/client-actions/translators/context-resolver/index.js +54 -0
- package/es/platform/client-actions/translators/interfaces/IContext.js +1 -0
- package/es/platform/client-actions/translators/interfaces/IState.js +1 -0
- package/es/platform/data-source/dbc/index.js +1 -0
- package/es/platform/data-source/http-template/createRecord.js +27 -0
- package/es/platform/data-source/http-template/deleteRecord.js +27 -0
- package/es/platform/data-source/http-template/deleteRecords.js +28 -0
- package/es/platform/data-source/http-template/fetchDependencyMappings.js +18 -0
- package/es/platform/data-source/http-template/fetchLayoutRules.js +29 -0
- package/es/platform/data-source/http-template/fetchMyForm.js +19 -0
- package/es/platform/data-source/http-template/fetchMyFormLayout.js +43 -0
- package/es/platform/data-source/http-template/fetchValidationRules.js +29 -0
- package/es/platform/data-source/http-template/getAvailableFields.js +29 -0
- package/es/platform/data-source/http-template/getClientActions.js +23 -0
- package/es/platform/data-source/http-template/getRecords.js +49 -0
- package/es/platform/data-source/http-template/getSelectedFields.js +29 -0
- package/es/platform/data-source/http-template/updateRecord.js +35 -0
- package/es/platform/data-source/index.js +34 -0
- package/es/platform/data-source/utils/transformer/CreateCf.js +13 -0
- package/es/platform/zdata-source/adapters/controllers/AbstractController.js +8 -0
- package/es/platform/zdata-source/adapters/controllers/DataSourceExecutorController.js +31 -0
- package/es/platform/zdata-source/adapters/gateways/Repository.js +24 -0
- package/es/platform/zdata-source/adapters/gateways/Service.js +27 -0
- package/es/platform/zdata-source/adapters/gateways/TemplateHelpers.js +51 -0
- package/es/platform/zdata-source/adapters/presenters/Presenter.js +35 -0
- package/es/platform/zdata-source/applications/entities-factory/APITemplatesFactory.js +14 -0
- package/es/platform/zdata-source/applications/entities-factory/DataSourceFactory.js +9 -0
- package/es/platform/zdata-source/applications/interfaces/InputDependencies.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/gateways/IRepository.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/gateways/IService.js +0 -0
- package/es/platform/zdata-source/applications/interfaces/gateways/ITemplateHelpers.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/gateways/State.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/input/ExecuteActionInputModel.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/input/FailureInputModel.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/input/NoContentInputModel.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/input/RegisterInputModel.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/input/SuccessInputModel.js +1 -0
- package/es/platform/zdata-source/applications/interfaces/output/IPresenter.js +1 -0
- package/es/platform/zdata-source/applications/usecases/AbstractUseCase.js +17 -0
- package/es/platform/zdata-source/applications/usecases/ExecuteActionUseCase.js +22 -0
- package/es/platform/zdata-source/applications/usecases/FailureUseCase.js +26 -0
- package/es/platform/zdata-source/applications/usecases/NoContentUseCase.js +25 -0
- package/es/platform/zdata-source/applications/usecases/SuccessUseCase.js +31 -0
- package/es/platform/zdata-source/domain/entities/DataSource.js +116 -0
- package/es/platform/zdata-source/domain/entities/interfaces/APIDetailsModel.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/APITemplateModel.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/APITemplatesModel.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/BehaviourState.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/EventModel.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/IAPITemplate.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/IAPITemplates.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/IDataSource.js +0 -0
- package/es/platform/zdata-source/domain/entities/interfaces/ITemplateHelpers.js +1 -0
- package/es/platform/zdata-source/domain/entities/interfaces/MetaData.js +1 -0
- package/es/platform/zdata-source/frameworks/DataBrokerBehaviourFactory.js +12 -0
- package/es/platform/zdata-source/frameworks/EventHandlersFactory.js +37 -0
- package/es/platform/zfield/adapters/gateways/Repository.js +1 -1
- package/es/platform/zfield/adapters/gateways/Service.js +6 -6
- package/es/platform/zfield/applications/entities-factory/FieldsManagerBuilder.js +42 -0
- package/es/platform/zfield/applications/interfaces/UsecaseDependencies.js +1 -0
- package/es/platform/zfield/applications/interfaces/gateways/IRepository.js +1 -0
- package/es/platform/zfield/applications/interfaces/gateways/IRestApi.js +1 -0
- package/es/platform/zfield/applications/interfaces/gateways/IService.js +1 -0
- package/es/platform/zfield/applications/interfaces/input/ExecuteActionInputModel.js +1 -0
- package/es/platform/zfield/applications/interfaces/input/FetchInputModel.js +2 -0
- package/es/platform/zfield/applications/interfaces/input/InitialInputModel.js +1 -0
- package/es/platform/zfield/applications/interfaces/input/InputModel.js +1 -0
- package/es/platform/zfield/applications/interfaces/input/RefetchInputModel.js +1 -0
- package/es/platform/zfield/applications/interfaces/input/SetValueInputModel.js +1 -0
- package/es/platform/zfield/applications/interfaces/output/IPresenter.js +1 -0
- package/es/platform/zfield/applications/usecases/ExecuteActionUseCase.js +20 -0
- package/es/platform/zfield/applications/usecases/InitializeUseCase.js +20 -0
- package/es/platform/zfield/applications/usecases/RefetchUseCase.js +20 -0
- package/es/platform/zfield/domain/entities/fields-manager/AvailableFieldsManager.js +105 -0
- package/es/platform/zfield/domain/entities/fields-manager/FieldsManager.js +102 -0
- package/es/platform/zfield/domain/entities/fields-manager/SelectedFieldsManager.js +105 -0
- package/es/platform/zfield/domain/entities/interfaces/ActionModel.js +1 -0
- package/es/platform/zfield/domain/entities/interfaces/BehaviourState.js +1 -0
- package/es/platform/zfield/domain/entities/interfaces/FieldModel.js +1 -0
- package/es/platform/zfield/domain/entities/interfaces/IField.js +1 -0
- package/es/platform/zfield/domain/entities/interfaces/IFieldManger.js +1 -0
- package/es/platform/zfield/domain/entities/interfaces/MetaData.js +1 -0
- package/es/platform/zfield/frameworks/ActionHandlerFactory.js +4 -4
- package/es/platform/zform/adapters/controllers/AbstractController.js +10 -0
- package/es/platform/zform/adapters/controllers/DependenciesController.js +23 -0
- package/es/platform/zform/adapters/controllers/DependenciesRequestController.js +20 -0
- package/es/platform/zform/adapters/controllers/FieldValueChangeController.js +23 -0
- package/es/platform/zform/adapters/controllers/FormSubmitController.js +22 -0
- package/es/platform/zform/adapters/controllers/IntializeController.js +28 -0
- package/es/platform/zform/adapters/controllers/LayoutRulesRequestController.js +20 -0
- package/es/platform/zform/adapters/controllers/LayoutRulesSuccessController.js +22 -0
- package/es/platform/zform/adapters/controllers/MyFormRequestController.js +20 -0
- package/es/platform/zform/adapters/controllers/MyFromSuccessController.js +23 -0
- package/es/platform/zform/adapters/controllers/MyLayoutSuccessController.js +29 -0
- package/es/platform/zform/adapters/controllers/SetFieldErrorMessageController.js +22 -0
- package/es/platform/zform/adapters/controllers/ValidateErrorMessageController.js +22 -0
- package/es/platform/zform/adapters/controllers/ValidateFieldRequestController.js +23 -0
- package/es/platform/zform/adapters/controllers/ValidationRulesRequestController.js +20 -0
- package/es/platform/zform/adapters/controllers/ValidationRulesSuccessController.js +23 -0
- package/es/platform/zform/adapters/gateway/FormRepository.js +79 -0
- package/es/platform/zform/adapters/gateway/Service.js +68 -0
- package/es/platform/zform/adapters/presenter/FormPresenter.js +24 -0
- package/es/platform/zform/adapters/presenter/FormTranslator.js +185 -0
- package/es/platform/zform/applications/interfaces/UsecaseDependencies.js +1 -0
- package/es/platform/zform/applications/interfaces/gateways/ILayoutRuleApplier.js +0 -0
- package/es/platform/zform/applications/interfaces/gateways/IRepository.js +1 -0
- package/es/platform/zform/applications/interfaces/gateways/IService.js +1 -0
- package/es/platform/zform/applications/interfaces/gateways/IValidator.js +0 -0
- package/es/platform/zform/applications/interfaces/input/Actions.js +0 -0
- package/es/platform/zform/applications/interfaces/input/Condition.js +0 -0
- package/es/platform/zform/applications/interfaces/input/DependenciesSuccessUseCaseInputModel.js +0 -0
- package/es/platform/zform/applications/interfaces/input/FieldCondition.js +0 -0
- package/es/platform/zform/applications/interfaces/input/FieldValueChangeRequestInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/InitializeInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/LayoutRulesSuccessUseCaseInputModel.js +0 -0
- package/es/platform/zform/applications/interfaces/input/MyFormSuccessUseCaseInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/MyLayoutSuccessUseCaseInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/SetFieldErrorMessageInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/ValidateErrorMessageInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/ValidateFieldRequestInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/ValidationRulesSuccessInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/input/ZFormInputModel.js +1 -0
- package/es/platform/zform/applications/interfaces/output/IPresenter.js +0 -0
- package/es/platform/zform/applications/interfaces/output/ZFormOutputModel.js +1 -0
- package/es/platform/zform/applications/usecases/AbstractUseCase.js +18 -0
- package/es/platform/zform/applications/usecases/DependenciesRequestUseCase.js +13 -0
- package/es/platform/zform/applications/usecases/DependenciesSuccessUseCase.js +21 -0
- package/es/platform/zform/applications/usecases/FieldValueChangeRequestUseCase.js +36 -0
- package/es/platform/zform/applications/usecases/FormSubmitUseCase.js +55 -0
- package/es/platform/zform/applications/usecases/InitializeUseCase.js +43 -0
- package/es/platform/zform/applications/usecases/LayoutRulesRequestUseCase.js +13 -0
- package/es/platform/zform/applications/usecases/LayoutRulesSuccessUseCase.js +32 -0
- package/es/platform/zform/applications/usecases/MyFormRequestUseCase.js +13 -0
- package/es/platform/zform/applications/usecases/MyFormSuccessUseCase.js +52 -0
- package/es/platform/zform/applications/usecases/MyLayoutSuccessUseCase.js +136 -0
- package/es/platform/zform/applications/usecases/SetFieldErrorMessageUseCase.js +17 -0
- package/es/platform/zform/applications/usecases/ValidateErrorMessageUseCase.js +33 -0
- package/es/platform/zform/applications/usecases/ValidateFieldRequestUseCase.js +56 -0
- package/es/platform/zform/applications/usecases/ValidationRulesRequestUseCase.js +13 -0
- package/es/platform/zform/applications/usecases/ValidationRulesSuccessUseCase.js +20 -0
- package/es/platform/zform/domain/ZDependencyMapping.js +62 -0
- package/es/platform/zform/domain/ZField.js +170 -0
- package/es/platform/zform/domain/ZForm.js +478 -0
- package/es/platform/zform/domain/ZLayout.js +25 -0
- package/es/platform/zform/domain/ZLayoutRule.js +86 -0
- package/es/platform/zform/domain/ZSection.js +113 -0
- package/es/platform/zform/domain/ZValidationRule.js +79 -0
- package/es/platform/zform/domain/interfaces/FieldCondition.js +1 -0
- package/es/platform/zform/domain/interfaces/IDependencyMapping.js +0 -0
- package/es/platform/zform/domain/interfaces/ILayout.js +0 -0
- package/es/platform/zform/domain/interfaces/ILayoutRuleHelper.js +1 -0
- package/es/platform/zform/domain/interfaces/IValidationRule.js +0 -0
- package/es/platform/zform/domain/interfaces/IValidationRuleHelper.js +1 -0
- package/es/platform/zform/domain/interfaces/IZField.js +0 -0
- package/es/platform/zform/domain/interfaces/IZForm.js +1 -0
- package/es/platform/zform/domain/interfaces/IZLayoutRule.js +0 -0
- package/es/platform/zform/domain/interfaces/IZSection.js +0 -0
- package/es/platform/zform/domain/interfaces/ZLayoutRuleData.js +1 -0
- package/es/platform/zform/domain/interfaces/ZValidationRuleData.js +1 -0
- package/es/platform/zform/frameworks/layout-rules/LayoutRuleApplier.js +64 -0
- package/es/platform/zform/frameworks/layout-rules/applyFieldLayoutRules.js +29 -0
- package/es/platform/zform/frameworks/layout-rules/applySectionLayoutRules.js +28 -0
- package/es/platform/zform/frameworks/layout-rules/calculateLayoutRulesResult.js +228 -0
- package/es/platform/zform/frameworks/layout-rules/constructFieldIdAndSectionIdMap.js +10 -0
- package/es/platform/zform/frameworks/layout-rules/expressionEval.js +130 -0
- package/es/platform/zform/frameworks/layout-rules/getLayoutRuleAppliedFieldProperties.js +60 -0
- package/es/platform/zform/frameworks/layout-rules/getLayoutRuleAppliedSectionProperties.js +35 -0
- package/es/platform/zform/frameworks/layout-rules/runSingleFieldCondition.js +60 -0
- package/es/platform/zform/frameworks/layout-rules/selectors.js +9 -0
- package/es/platform/zform/frameworks/layout-rules/validationTypeMapper.js +20 -0
- package/es/platform/zform/frameworks/layout-rules/validator.js +331 -0
- package/es/platform/zform/frameworks/ui/EventHandlerFactory.js +226 -0
- package/es/platform/zform/frameworks/ui/ZFormBehaviourFactory.js +31 -0
- package/es/platform/zform/frameworks/validation-rules/Validator.js +44 -0
- package/es/platform/zform/frameworks/validation-rules/expressionEval.js +123 -0
- package/es/platform/zform/frameworks/validation-rules/utils.js +552 -0
- package/es/platform/zform/frameworks/validation-rules/validationRules.js +126 -0
- package/es/platform/zhttp/applications/interfaces/InputDependencies.js +1 -0
- package/es/platform/zhttp/applications/interfaces/UseCase.js +1 -0
- package/es/platform/zhttp/applications/interfaces/gateway/IFetchGateWay.js +1 -0
- package/es/platform/zhttp/applications/interfaces/input/FetchInputModel.js +1 -0
- package/es/platform/zhttp/frameworks/ActionsHandlerFactory.js +1 -1
- package/es/platform/zhttp/frameworks/ZHttpBehaviourFactory.js +2 -1
- package/es/platform/zlist/adapters/controllers/DeleteSuccessController.js +25 -0
- package/es/platform/zlist/adapters/controllers/UpdateSuccessController.js +25 -0
- package/es/platform/zlist/adapters/gateways/Repository.js +13 -10
- package/es/platform/zlist/adapters/gateways/Service.js +18 -10
- package/es/platform/zlist/adapters/presenters/TableTranslator.js +81 -12
- package/es/platform/zlist/adapters/presenters/translators/ColumnAlignmentTranslator.js +11 -0
- package/es/platform/zlist/adapters/presenters/translators/ColumnSizeTranslator.js +23 -0
- package/es/platform/zlist/adapters/presenters/translators/ColumnTranslator.js +16 -8
- package/es/platform/zlist/adapters/presenters/translators/Header.js +10 -4
- package/es/platform/zlist/adapters/presenters/translators/HeadersTranslator.js +5 -2
- package/es/platform/zlist/adapters/presenters/translators/ResizerStateTranslator.js +98 -0
- package/es/platform/zlist/adapters/presenters/translators/Row.js +13 -5
- package/es/platform/zlist/adapters/presenters/translators/RowActionTranslator.js +20 -13
- package/es/platform/zlist/adapters/presenters/translators/RowsTranslator.js +9 -5
- package/es/platform/zlist/adapters/presenters/translators/actions/ActionsTranslator.js +89 -0
- package/es/platform/zlist/adapters/presenters/translators/interfaces/Context.js +1 -0
- package/es/platform/zlist/adapters/presenters/translators/interfaces/FieldComponentMapping.js +1 -0
- package/es/platform/zlist/adapters/presenters/translators/interfaces/ModifiedFieldWidths.js +1 -0
- package/es/platform/zlist/adapters/presenters/translators/interfaces/PreferencesProperties.js +1 -0
- package/es/platform/zlist/adapters/presenters/utils/calculateFieldWidths.js +34 -0
- package/es/platform/zlist/applications/entities-factory/ListFactory.js +16 -0
- package/es/platform/zlist/applications/interfaces/State.js +1 -0
- package/es/platform/zlist/applications/interfaces/UseCaseDependencies.js +1 -0
- package/es/platform/zlist/applications/interfaces/gateways/IRepository.js +1 -0
- package/es/platform/zlist/applications/interfaces/gateways/IService.js +1 -0
- package/es/platform/zlist/applications/interfaces/gateways/ISortBy.js +1 -0
- package/es/platform/zlist/applications/interfaces/gateways/ITransformState.js +0 -0
- package/es/platform/zlist/applications/interfaces/input/DeleteMultipleRecordUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/DeleteSingleRecordUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/FetchMoreInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/FieldChangeUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/InitializeInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/PropertiesChangeUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/RecordExecuteFailedUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/RecordExecuteSucceededUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/RecordUpdateUseCaseInput.js +1 -0
- package/es/platform/zlist/applications/interfaces/input/SortingInputModel.js +1 -0
- package/es/platform/zlist/applications/usecases/DeleteSuccessUseCase.js +19 -0
- package/es/platform/zlist/applications/usecases/UpdateSuccessUseCase.js +19 -0
- package/es/platform/zlist/domain/entities/List.js +329 -0
- package/es/platform/zlist/domain/entities/interfaces/ActionModel.js +1 -0
- package/es/platform/zlist/domain/entities/interfaces/ApiPropsModel.js +1 -0
- package/es/platform/zlist/domain/entities/interfaces/IList.js +1 -0
- package/es/platform/zlist/domain/entities/interfaces/Properties.js +1 -0
- package/es/platform/zlist/domain/entities/interfaces/RecordExecuteAfterMetaData.js +1 -0
- package/es/platform/zlist/frameworks/EventHandlersFactory.js +17 -23
- package/es/platform/zrecord/adapters/controllers/CreateRecordController.js +28 -0
- package/es/platform/zrecord/adapters/gateways/Repository.js +1 -1
- package/es/platform/zrecord/adapters/gateways/Service.js +17 -13
- package/es/platform/zrecord/applications/entities-factory/RecordFactory.js +12 -0
- package/es/platform/zrecord/applications/entities-factory/RecordsManagerFactory.js +10 -0
- package/es/platform/zrecord/applications/interfaces/InputDependencies.js +1 -0
- package/es/platform/zrecord/applications/interfaces/gateways/IRepository.js +1 -0
- package/es/platform/zrecord/applications/interfaces/gateways/IService.js +0 -0
- package/es/platform/zrecord/applications/interfaces/gateways/State.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/AppendRecordsInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/CreateRecordInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/DeleteMultipleRecordInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/ExecuteActionInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/FailureInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/FetchMoreInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/FetchStateStopInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/FieldChangeUseCaseInput.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/InitializeInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/NoContentInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/RecordUpdateLocalUseCaseInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/RefetchInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/SetRecordsInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/input/SuccessInputModel.js +1 -0
- package/es/platform/zrecord/applications/interfaces/output/IPresenter.js +1 -0
- package/es/platform/zrecord/applications/usecases/AbstractUseCase.js +17 -0
- package/es/platform/zrecord/applications/usecases/CreateRecordUseCase.js +28 -0
- package/es/platform/zrecord/applications/usecases/ExecuteActionUseCase.js +33 -0
- package/es/platform/zrecord/applications/usecases/FetchMoreUseCase.js +29 -0
- package/es/platform/zrecord/applications/usecases/InitializeUseCase.js +17 -0
- package/es/platform/zrecord/applications/usecases/RefetchUseCase.js +27 -0
- package/es/platform/zrecord/domain/entities/DeleteMultipleRecordStrategy.js +61 -0
- package/es/platform/zrecord/domain/entities/DeleteRecordStrategy.js +63 -0
- package/es/platform/zrecord/domain/entities/GetRecordsStrategy.js +58 -0
- package/es/platform/zrecord/domain/entities/RecordsManager.js +250 -0
- package/es/platform/zrecord/domain/entities/UpdateRecordStrategy.js +56 -0
- package/es/platform/zrecord/domain/entities/interfaces/BehaviourState.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/EventModel.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/ICustomFieldValues.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/IRecord.js +0 -0
- package/es/platform/zrecord/domain/entities/interfaces/IRecordExecuteStrategy.js +0 -0
- package/es/platform/zrecord/domain/entities/interfaces/IRecordName.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/IRecords.js +0 -0
- package/es/platform/zrecord/domain/entities/interfaces/IRecordsManager.js +0 -0
- package/es/platform/zrecord/domain/entities/interfaces/RecordModel.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/RecordsModel.js +1 -0
- package/es/platform/zrecord/domain/entities/interfaces/StrategyMeta.js +1 -0
- package/es/platform/zrecord/frameworks/ActionsHandlersFactory.js +5 -2
- package/package.json +45 -25
- package/es/bc/zdata-broker/Actions.js +0 -67
- package/es/bc/zdata-broker/Constants.js +0 -16
- package/es/bc/zdata-broker/EventHandlers.js +0 -2
- package/es/bc/zdata-broker/Symbols.js +0 -5
- package/es/cc/switch/Actions.js +0 -15
- package/es/cc/table-list/behaviour-properties/ResizerConfig.js +0 -18
- package/es/cc/table-list/behaviour-properties/SelectionConfig.js +0 -17
- package/es/cc/table-list/behaviour-properties/SortByConfig.js +0 -14
- package/es/cc/table-list/behaviour-properties/index.js +0 -3
- package/es/library/behaviours/list-selection/entities/ListItemSelection.js +0 -93
- package/es/library/behaviours/list-selection/usecases/interactors/AllItemSelection.js +0 -16
- package/es/library/behaviours/list-selection/usecases/interactors/ItemsSelection.js +0 -19
- package/es/library/behaviours/list-selection/usecases/interactors/RangeSelection.js +0 -19
- package/es/library/behaviours/sort-by/entities/SortBy.js +0 -42
- package/es/library/behaviours/text-to-field-click/entities/FieldEventConverter.js +0 -19
- package/es/library/custom-component/entities/Behaviour.js +0 -54
- package/es/library/custom-component/entities/Component.js +0 -218
- package/es/library/custom-component/entities/DefaultAppendToActionPayload.js +0 -10
- package/es/library/custom-component/entities/Events.js +0 -23
- package/es/library/custom-component/entities/Properties.js +0 -152
- package/es/library/custom-component/entities/Property.js +0 -63
- package/es/library/custom-component/entities/__tests__/Action.spec.js +0 -19
- package/es/library/custom-component/entities/__tests__/ActionHandlers.spec.js +0 -15
- package/es/library/custom-component/entities/__tests__/Behaviour.spec.js +0 -52
- package/es/library/custom-component/entities/__tests__/Component.spec.js +0 -109
- package/es/library/custom-component/usecases/entities-factory/BehavioursFactory.js +0 -42
- package/es/library/custom-component/usecases/entities-factory/ComponentFactory.js +0 -47
- package/es/library/custom-component/usecases/entities-factory/EventHandlersFactory.js +0 -8
- package/es/library/custom-component/usecases/entities-factory/PropertiesFactory.js +0 -15
- package/es/library/custom-component/usecases/interactors/UnmountUseCase.js +0 -25
- package/es/library/custom-component/usecases/interactors/UpdatePropertyUseCase.js +0 -29
- package/es/library/custom-component/usecases/interactors/UpdateStateUseCase.js +0 -17
- package/es/library/dot/legacy-to-new-arch/action-icon/ActionIcon.js +0 -11
- package/es/library/dot/legacy-to-new-arch/action-icon/ActionIconView.js +0 -30
- package/es/platform/data-broker/http-template/deleteRecord.js +0 -27
- package/es/platform/data-broker/http-template/deleteRecords.js +0 -28
- package/es/platform/data-broker/http-template/getAvailableFields.js +0 -29
- package/es/platform/data-broker/http-template/getRecords.js +0 -49
- package/es/platform/data-broker/http-template/getSelectedFields.js +0 -29
- package/es/platform/data-broker/http-template/getUIActions.js +0 -22
- package/es/platform/data-broker/http-template/updateRecord.js +0 -35
- package/es/platform/data-broker/index.js +0 -22
- package/es/platform/data-broker/utils/transformer/CreateCf.js +0 -13
- package/es/platform/zdata-broker/adapters/controllers/ActionExecutorController.js +0 -31
- package/es/platform/zdata-broker/adapters/gateways/Repository.js +0 -24
- package/es/platform/zdata-broker/adapters/gateways/Service.js +0 -27
- package/es/platform/zdata-broker/adapters/gateways/TemplateHelpers.js +0 -30
- package/es/platform/zdata-broker/adapters/presenters/Presenter.js +0 -35
- package/es/platform/zdata-broker/entities/DataBroker.js +0 -116
- package/es/platform/zdata-broker/entities/interfaces/MetaData.js +0 -1
- package/es/platform/zdata-broker/frameworks/DataBrokerBehaviourFactory.js +0 -12
- package/es/platform/zdata-broker/frameworks/EventHandlersFactory.js +0 -42
- package/es/platform/zdata-broker/usecases/entities-factory/APITemplatesFactory.js +0 -14
- package/es/platform/zdata-broker/usecases/entities-factory/DataBrokerFactory.js +0 -10
- package/es/platform/zdata-broker/usecases/interactors/ExecuteActionUseCase.js +0 -22
- package/es/platform/zdata-broker/usecases/interactors/FailureUseCase.js +0 -26
- package/es/platform/zdata-broker/usecases/interactors/NoContentUseCase.js +0 -25
- package/es/platform/zdata-broker/usecases/interactors/SuccessUseCase.js +0 -31
- package/es/platform/zdata-broker/usecases/interfaces/gateways/ITemplateHelpers.js +0 -1
- package/es/platform/zfield/entities/fields-manager/AvailableFieldsManager.js +0 -105
- package/es/platform/zfield/entities/fields-manager/FieldsManager.js +0 -102
- package/es/platform/zfield/entities/fields-manager/SelectedFieldsManager.js +0 -105
- package/es/platform/zfield/entities/interfaces/MetaData.js +0 -1
- package/es/platform/zfield/usecases/entities-factory/FieldsManagerBuilder.js +0 -42
- package/es/platform/zfield/usecases/interactors/ExecuteActionUseCase.js +0 -20
- package/es/platform/zfield/usecases/interactors/InitializeUseCase.js +0 -20
- package/es/platform/zfield/usecases/interactors/RefetchUseCase.js +0 -20
- package/es/platform/zfield/usecases/interfaces/gateways/ITemplateHelpers.js +0 -1
- package/es/platform/zfield/usecases/interfaces/input/FetchInputModel.js +0 -2
- package/es/platform/zlist/entities/List.js +0 -299
- package/es/platform/zlist/usecases/entities-factory/ListFactory.js +0 -15
- package/es/platform/zrecord/entities/DeleteMultipleRecordStrategy.js +0 -61
- package/es/platform/zrecord/entities/DeleteRecordStrategy.js +0 -63
- package/es/platform/zrecord/entities/GetRecordsStrategy.js +0 -58
- package/es/platform/zrecord/entities/RecordsManager.js +0 -220
- package/es/platform/zrecord/entities/UpdateRecordStrategy.js +0 -56
- package/es/platform/zrecord/usecases/entities-factory/RecordFactory.js +0 -12
- package/es/platform/zrecord/usecases/entities-factory/RecordsManagerFactory.js +0 -10
- package/es/platform/zrecord/usecases/interactors/ExecuteActionUseCase.js +0 -33
- package/es/platform/zrecord/usecases/interactors/FetchMoreUseCase.js +0 -29
- package/es/platform/zrecord/usecases/interactors/InitializeUseCase.js +0 -17
- package/es/platform/zrecord/usecases/interactors/RefetchUseCase.js +0 -27
- /package/es/bc/local-storage/{ActionHandlers.js → EventHandlers.js} +0 -0
- /package/es/bc/table-column-resizer/{ActionHandlers.js → EventHandlers.js} +0 -0
- /package/es/{cc/table-list/data-types/ResizerConfig.js → bc/table-column-resizer/types/ResizeConfig.js} +0 -0
- /package/es/{library/behaviours/list-selection/entities/interfaces/IListItemSelection.js → bc/table-column-resizer/types/ResizerBehaviourState.js} +0 -0
- /package/es/bc/{zdata-broker → zdata-source}/Properties.js +0 -0
- /package/es/{library/behaviours/list-selection/entities/interfaces/ListSelectionModel.js → cc/action-location/Action.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/UseCase.js → cc/action-location/ActionLocation.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/UseCaseDependencies.js → cc/component/Slot.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/gateways/IRepository.js → cc/component/SlotComponent.js} +0 -0
- /package/es/{library/custom-component/entities/interfaces/IUpdateHelper.js → cc/form/index.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/gateways/IService.js → cc/label/Data.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/input/AllSelectionInputModel.js → cc/table-list/data-types/ResizerUiState.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/input/DestructInputModel.js → cc/table-list/data-types/RowAction.js} +0 -0
- /package/es/{library/behaviours/list-selection/usecases/interfaces/input/InitializeInputModel.js → cc/table-list/data-types/RowActionsConfig.js} +0 -0
- /package/es/library/behaviours/{sort-by/usecases → field-validation/applications}/interfaces/UseCaseDependencies.js +0 -0
- /package/es/library/behaviours/{sort-by/usecases → field-validation/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/library/behaviours/{sort-by/usecases → field-validation/applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/behaviours/{list-selection/usecases/interfaces/input/RangeSelectionInputModel.js → field-validation/applications/interfaces/input/FieldValidationInputModel.js} +0 -0
- /package/es/library/behaviours/{list-selection/usecases/interfaces/input/SelectionInputModel.js → field-validation/applications/interfaces/input/ValidateFieldsInputModel.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/IDataBroker.js → library/behaviours/field-validation/domain/interfaces/IField.js} +0 -0
- /package/es/library/behaviours/{list-selection/usecases/interfaces/output/BehaviourStateModel.js → field-validation/domain/interfaces/IFieldValidation.js} +0 -0
- /package/es/library/behaviours/{list-selection/usecases/interfaces/output/IPresenter.js → field-validation/domain/interfaces/IFieldViseValidation.js} +0 -0
- /package/es/library/behaviours/{sort-by/entities/interfaces/ISortBy.js → field-validation/domain/interfaces/ValidationResult.js} +0 -0
- /package/es/library/behaviours/{sort-by/usecases/interfaces/input/SortByInputModel.js → field-validation/domain/interfaces/ValidationsArray.js} +0 -0
- /package/es/library/behaviours/{sort-by/usecases/interfaces/output/IPresenter.js → field-validation/domain/interfaces/ValidationsMap.js} +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/gateways/IService.js → library/behaviours/field-validation/domain/interfaces/fields/IBooleanField.js} +0 -0
- /package/es/{platform/zlist/usecases/interfaces/gateways/ITransformState.js → library/behaviours/field-validation/domain/interfaces/fields/ICurrencyField.js} +0 -0
- /package/es/{platform/zrecord/entities/interfaces/IRecord.js → library/behaviours/field-validation/domain/interfaces/fields/IDateField.js} +0 -0
- /package/es/{platform/zrecord/entities/interfaces/IRecordExecuteStrategy.js → library/behaviours/field-validation/domain/interfaces/fields/IDateTimeField.js} +0 -0
- /package/es/{platform/zrecord/entities/interfaces/IRecords.js → library/behaviours/field-validation/domain/interfaces/fields/IDecimalField.js} +0 -0
- /package/es/{platform/zrecord/entities/interfaces/IRecordsManager.js → library/behaviours/field-validation/domain/interfaces/fields/IEmailField.js} +0 -0
- /package/es/{platform/zrecord/usecases/interfaces/gateways/IService.js → library/behaviours/field-validation/domain/interfaces/fields/IIntegerField.js} +0 -0
- /package/es/library/{custom-component/usecases → behaviours/list-selection/applications}/interfaces/UseCase.js +0 -0
- /package/es/library/behaviours/{text-to-field-click/usecases → list-selection/applications}/interfaces/UseCaseDependencies.js +0 -0
- /package/es/library/behaviours/{text-to-field-click/usecases → list-selection/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/library/{custom-component/usecases → behaviours/list-selection/applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/behaviours/{sort-by/usecases/interfaces/output/SortByOutputModel.js → list-selection/applications/interfaces/input/AllSelectionInputModel.js} +0 -0
- /package/es/library/behaviours/{text-to-field-click/entities/interfaces/IFieldEventConverter.js → list-selection/applications/interfaces/input/DeselectInputModel.js} +0 -0
- /package/es/library/behaviours/{text-to-field-click/usecases/interfaces/input/ClickUseCaseInputModel.js → list-selection/applications/interfaces/input/DestructInputModel.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IBehaviour.js → behaviours/list-selection/applications/interfaces/input/InitializeInputModel.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IComponent.js → behaviours/list-selection/applications/interfaces/input/RangeSelectionInputModel.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IEvent.js → behaviours/list-selection/applications/interfaces/input/SelectInputModel.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IEventHandler.js → behaviours/list-selection/applications/interfaces/input/SelectionInputModel.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IEventHandlerHelpers.js → behaviours/list-selection/applications/interfaces/output/BehaviourStateModel.js} +0 -0
- /package/es/{platform/zdata-broker/usecases → library/behaviours/list-selection/applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/Destruct.js +0 -0
- /package/es/library/behaviours/list-selection/{usecases/interactors → applications/usecases}/Initialize.js +0 -0
- /package/es/library/{custom-component/entities/interfaces/IEventHandlers.js → behaviours/list-selection/domain/entities/interfaces/IListItemSelection.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IEventWrapper.js → behaviours/list-selection/domain/entities/interfaces/ListSelectionModel.js} +0 -0
- /package/es/library/{custom-component/usecases → behaviours/local-storage/applications}/interfaces/InputDependencies.js +0 -0
- /package/es/library/{custom-component/usecases → behaviours/local-storage/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/{platform/zfield/usecases → library/behaviours/local-storage/applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/{custom-component/entities/interfaces/ILifeCycleAction.js → behaviours/local-storage/applications/interfaces/input/SetDataInput.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IPayload.js → behaviours/local-storage/applications/interfaces/input/StateStructure.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces → library/behaviours/local-storage/applications/interfaces/output}/BehaviourState.js +0 -0
- /package/es/{platform/zdata-broker/usecases/interactors → library/behaviours/local-storage/applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/{custom-component/entities/interfaces/IProperties.js → behaviours/local-storage/domain/entities/interfaces/IStorage.js} +0 -0
- /package/es/{platform/zlist/usecases → library/behaviours/sort-by/applications}/interfaces/UseCaseDependencies.js +0 -0
- /package/es/{platform/zdata-broker/usecases → library/behaviours/sort-by/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/{platform/zlist/usecases → library/behaviours/sort-by/applications}/interfaces/gateways/IService.js +0 -0
- /package/es/library/{custom-component/entities/interfaces/IProperty.js → behaviours/sort-by/applications/interfaces/input/SortByInputModel.js} +0 -0
- /package/es/{platform/zfield/usecases → library/behaviours/sort-by/applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/library/{custom-component/entities/interfaces/ISchema.js → behaviours/sort-by/applications/interfaces/output/SortByOutputModel.js} +0 -0
- /package/es/library/behaviours/sort-by/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/behaviours/sort-by/{usecases/interactors → applications/usecases}/SortBy.js +0 -0
- /package/es/{platform/zlist/usecases/interfaces/gateways → library/behaviours/sort-by/domain/entities/interfaces}/ISortBy.js +0 -0
- /package/es/library/{custom-component/entities/interfaces/IState.js → behaviours/table-column-resizer/adapters/controllers/interfaces/ActionHandlerParams.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IStyle.js → behaviours/table-column-resizer/adapters/controllers/interfaces/IController.js} +0 -0
- /package/es/library/{custom-component/entities/interfaces/IValidator.js → behaviours/table-column-resizer/adapters/controllers/interfaces/ResizeByMouseActionHandlerParams.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/OutputDependencies.js → behaviours/table-column-resizer/adapters/controllers/interfaces/ResizeByScrollActionHandlerParams.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/gateways/IEventManager.js → behaviours/table-column-resizer/adapters/controllers/interfaces/ResizeEndActionHandlerParams.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/gateways/IJSONValidator.js → behaviours/table-column-resizer/adapters/controllers/interfaces/ResizeStartActionHandlerParams.js} +0 -0
- /package/es/{platform/zdata-broker/usecases → library/behaviours/table-column-resizer/applications}/interfaces/InputDependencies.js +0 -0
- /package/es/library/{custom-component/usecases/interfaces/input/DispatchInputModel.js → behaviours/table-column-resizer/applications/interfaces/gateways/IRepo.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/input/InitailizeInputModel.js → behaviours/table-column-resizer/applications/interfaces/gateways/IService.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/input/UpdatePropertiesInputModel.js → behaviours/table-column-resizer/applications/interfaces/gateways/ITableElementService.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/input/UpdateStateInputModel.js → behaviours/table-column-resizer/applications/interfaces/input/ResizeByMouseInputModel.js} +0 -0
- /package/es/library/{custom-component/usecases/interfaces/output/OutputBoundary.js → behaviours/table-column-resizer/applications/interfaces/input/ResizeByScrollInputModel.js} +0 -0
- /package/es/{platform/data-broker/dbc/index.js → library/behaviours/table-column-resizer/applications/interfaces/input/ResizeEndInputModel.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/APIDetailsModel.js → library/behaviours/table-column-resizer/applications/interfaces/input/ResizeStartInputModel.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/APITemplateModel.js → library/behaviours/table-column-resizer/applications/interfaces/input/StateStructure.js} +0 -0
- /package/es/{platform/zfield/entities/interfaces → library/behaviours/table-column-resizer/applications/interfaces/output}/BehaviourState.js +0 -0
- /package/es/{platform/zrecord/usecases → library/behaviours/table-column-resizer/applications}/interfaces/output/IPresenter.js +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/APITemplatesModel.js → library/behaviours/table-column-resizer/domain/entities/interfaces/ColumnResizerRestoreModel.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/EventModel.js → library/behaviours/table-column-resizer/domain/entities/interfaces/ElementResizeInfo.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/IAPITemplate.js → library/behaviours/table-column-resizer/domain/entities/interfaces/IColumnResizer.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/IAPITemplates.js → library/behaviours/table-column-resizer/domain/entities/interfaces/ResizeColumnCalculatorRestoreModel.js} +0 -0
- /package/es/{platform/zdata-broker/entities/interfaces/ITemplateHelpers.js → library/behaviours/table-column-resizer/domain/entities/interfaces/ResizerEndResult.js} +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/gateways/State.js → library/behaviours/table-column-resizer/domain/entities/interfaces/ResizingColumnRestoreModel.js} +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/input/ExecuteActionInputModel.js → library/behaviours/text-to-field-click/applications/interfaces/UseCaseDependencies.js} +0 -0
- /package/es/{platform/zfield/usecases → library/behaviours/text-to-field-click/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/input/FailureInputModel.js → library/behaviours/text-to-field-click/applications/interfaces/input/ClickUseCaseInputModel.js} +0 -0
- /package/es/library/behaviours/text-to-field-click/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/behaviours/text-to-field-click/{usecases/interactors → applications/usecases}/ClickUseCase.js +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/input/NoContentInputModel.js → library/behaviours/text-to-field-click/domain/entities/interfaces/IFieldEventConverter.js} +0 -0
- /package/es/{platform/zhttp/usecases → library/custom-component/applications}/interfaces/InputDependencies.js +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/input/RegisterInputModel.js → library/custom-component/applications/interfaces/OutputDependencies.js} +0 -0
- /package/es/{platform/zhttp/usecases → library/custom-component/applications}/interfaces/UseCase.js +0 -0
- /package/es/{platform/zdata-broker/usecases/interfaces/input/SuccessInputModel.js → library/custom-component/applications/interfaces/gateways/IEventManager.js} +0 -0
- /package/es/{platform/zfield/entities/interfaces/ActionModel.js → library/custom-component/applications/interfaces/gateways/IJSONValidator.js} +0 -0
- /package/es/{platform/zlist/usecases → library/custom-component/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/{platform/zfield/entities/interfaces/FieldModel.js → library/custom-component/applications/interfaces/gateways/IService.js} +0 -0
- /package/es/{platform/zfield/entities/interfaces/IField.js → library/custom-component/applications/interfaces/input/DispatchInputModel.js} +0 -0
- /package/es/{platform/zfield/entities/interfaces/IFieldManger.js → library/custom-component/applications/interfaces/input/InitailizeInputModel.js} +0 -0
- /package/es/{platform/zfield/usecases/interfaces/UsecaseDependencies.js → library/custom-component/applications/interfaces/input/UpdatePropertiesInputModel.js} +0 -0
- /package/es/{platform/zfield/usecases/interfaces/gateways/IRestApi.js → library/custom-component/applications/interfaces/input/UpdateStateInputModel.js} +0 -0
- /package/es/{platform/zfield/usecases/interfaces/input/ExecuteActionInputModel.js → library/custom-component/applications/interfaces/output/OutputBoundary.js} +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/DispatchUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
- /package/es/library/custom-component/{usecases/interactors → applications/usecases}/MountUseCase.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/EventHandler.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/EventHandlers.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/LifeCycleAction.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Payload.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Schema.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/State.js +0 -0
- /package/es/library/custom-component/{entities → domain/entities}/Style.js +0 -0
- /package/es/{platform/zrecord → library/custom-component/domain}/entities/interfaces/EventModel.js +0 -0
- /package/es/{platform/zfield/usecases/interfaces/input/InitialInputModel.js → library/custom-component/domain/entities/interfaces/IBehaviour.js} +0 -0
- /package/es/{platform/zfield/usecases/interfaces/input/InputModel.js → library/custom-component/domain/entities/interfaces/IComponent.js} +0 -0
- /package/es/{platform/zfield/usecases/interfaces/input/RefetchInputModel.js → library/custom-component/domain/entities/interfaces/IEvent.js} +0 -0
- /package/es/{platform/zfield/usecases/interfaces/input/SetValueInputModel.js → library/custom-component/domain/entities/interfaces/IEventHandler.js} +0 -0
- /package/es/{platform/zhttp/usecases/interfaces/gateway/IFetchGateWay.js → library/custom-component/domain/entities/interfaces/IEventHandlerHelpers.js} +0 -0
- /package/es/{platform/zhttp/usecases/interfaces/input/FetchInputModel.js → library/custom-component/domain/entities/interfaces/IEventHandlers.js} +0 -0
- /package/es/{platform/zlist/adapters/presenters/translators/interfaces/FieldUiMapping.js → library/custom-component/domain/entities/interfaces/IEventWrapper.js} +0 -0
- /package/es/{platform/zlist/adapters/presenters/translators/interfaces/PageContext.js → library/custom-component/domain/entities/interfaces/ILifeCycleAction.js} +0 -0
- /package/es/{platform/zlist/entities/interfaces/ActionModel.js → library/custom-component/domain/entities/interfaces/IPayload.js} +0 -0
- /package/es/{platform/zlist/entities/interfaces/ApiPropsModel.js → library/custom-component/domain/entities/interfaces/IProperties.js} +0 -0
- /package/es/{platform/zlist/entities/interfaces/IList.js → library/custom-component/domain/entities/interfaces/IProperty.js} +0 -0
- /package/es/{platform/zlist/entities/interfaces/Properties.js → library/custom-component/domain/entities/interfaces/ISchema.js} +0 -0
- /package/es/{platform/zlist/entities/interfaces/RecordExecuteAfterMetaData.js → library/custom-component/domain/entities/interfaces/IState.js} +0 -0
- /package/es/{platform/zlist/usecases/interfaces/State.js → library/custom-component/domain/entities/interfaces/IStyle.js} +0 -0
- /package/es/{platform/zlist/usecases/interfaces/input/DeleteMultipleRecordUseCaseInput.js → library/custom-component/domain/entities/interfaces/IValidator.js} +0 -0
- /package/es/platform/{zdata-broker → client-actions/behaviour/zclient-actions}/adapters/controllers/AbstractController.js +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/DeleteSingleRecordUseCaseInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/ClientActionModel.js} +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/FetchMoreInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/ComponentPropertiesModel.js} +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/FieldChangeUseCaseInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/ConditionFieldModel.js} +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/InitializeInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/ConditionModel.js} +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/PropertiesChangeUseCaseInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/EventMappingModel.js} +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/RecordExecuteFailedUseCaseInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/IError.js} +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/InputDependencies.js +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/RecordExecuteSucceededUseCaseInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/PayloadValueMappingModel.js} +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/RecordUpdateUseCaseInput.js → client-actions/behaviour/zclient-actions/applications/interfaces/PropsMeta.js} +0 -0
- /package/es/platform/{zrecord/entities → client-actions/behaviour/zclient-actions/applications}/interfaces/StrategyMeta.js +0 -0
- /package/es/platform/{zlist/usecases/interfaces/input/SortingInputModel.js → client-actions/behaviour/zclient-actions/applications/interfaces/UIComponentMappingModel.js} +0 -0
- /package/es/platform/{zrecord/entities/interfaces/BehaviourState.js → client-actions/behaviour/zclient-actions/applications/interfaces/UserDetailsModel.js} +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/gateways/IRepository.js +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/gateways/State.js +0 -0
- /package/es/platform/{zrecord/entities/interfaces/ICustomFieldValues.js → client-actions/behaviour/zclient-actions/applications/interfaces/input/ExecuteActionBehaviourInputModel.js} +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/input/FailureInputModel.js +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/input/FetchStateStopInputModel.js +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/input/InitializeInputModel.js +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/input/NoContentInputModel.js +0 -0
- /package/es/platform/{zrecord/entities/interfaces/IRecordName.js → client-actions/behaviour/zclient-actions/applications/interfaces/input/SetClientActionsInputModel.js} +0 -0
- /package/es/platform/{zrecord/usecases → client-actions/behaviour/zclient-actions/applications}/interfaces/input/SuccessInputModel.js +0 -0
- /package/es/platform/{zrecord/entities/interfaces/RecordModel.js → client-actions/behaviour/zclient-actions/applications/interfaces/output/IPresenter.js} +0 -0
- /package/es/platform/{zrecord/usecases/interactors → client-actions/behaviour/zclient-actions/applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/{zrecord/entities/interfaces/RecordsModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/BehaviourState.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/AppendRecordsInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/ClientActionModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/DeleteMultipleRecordInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/ClientActionsModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/ExecuteActionInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/ComponentPropertiesModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/FetchMoreInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/ConditionFieldModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/FieldChangeUseCaseInput.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/ConditionModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/RecordUpdateLocalUseCaseInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/EventMappingModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/RefetchInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/EventModel.js} +0 -0
- /package/es/platform/{zrecord/usecases/interfaces/input/SetRecordsInputModel.js → client-actions/behaviour/zclient-actions/domain/entities/interfaces/IAction.js} +0 -0
- /package/es/platform/{data-broker → data-source}/utils/transformer/Transformer.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source}/adapters/controllers/FailureController.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source}/adapters/controllers/NoContentController.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source}/adapters/controllers/RegisterController.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source}/adapters/controllers/SuccessController.js +0 -0
- /package/es/platform/{zdata-broker/usecases/interactors → zdata-source/applications/usecases}/RegisterUseCase.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source/domain}/entities/APITemplate.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source/domain}/entities/APITemplates.js +0 -0
- /package/es/platform/{zdata-broker → zdata-source/domain}/entities/interfaces/ApiEnum.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/entities-factory/FieldBuilder.js +0 -0
- /package/es/platform/zfield/{usecases → applications}/entities-factory/FieldFactory.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchFailureUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchNoContentUseCase.js +0 -0
- /package/es/platform/zfield/{usecases/interactors → applications/usecases}/FetchSuccessUseCase.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/BooleanField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/CurrencyField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/DateField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/DateTimeField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/EmailField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/Field.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/LookupField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/MultiLineField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/MultiSelectField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/PercentageField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/PhoneField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/PickListField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/SingleLineField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/URLField.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/index.js +0 -0
- /package/es/platform/zfield/{entities → domain/entities}/interfaces/FieldApiName.js +0 -0
- /package/es/platform/zhttp/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zhttp/{usecases/interactors → applications/usecases}/FetchUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/AbstractUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/DeleteMultipleRecordUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/DeleteSingleRecordUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/FetchMoreUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/FieldChangeUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/InitializeUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/PropertiesChangeUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordExecuteFailedUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordExecuteSucceededUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/RecordUpdateUseCase.js +0 -0
- /package/es/platform/zlist/{usecases/interactors → applications/usecases}/SortUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/AppendRecordsUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/DeleteMultipleRecordUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FailureUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FetchStateStopUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/FieldChangeUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/NoContentUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/RecordUpdateLocalUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/SetRecordsUseCase.js +0 -0
- /package/es/platform/zrecord/{usecases/interactors → applications/usecases}/SuccessUseCase.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/CustomFieldValues.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/Record.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/Records.js +0 -0
- /package/es/platform/zrecord/{entities → domain/entities}/interfaces/ApiEnum.js +0 -0
|
@@ -0,0 +1,552 @@
|
|
|
1
|
+
/* eslint-disable default-case */
|
|
2
|
+
|
|
3
|
+
/* eslint-disable no-param-reassign */
|
|
4
|
+
export function getMissedFields() {
|
|
5
|
+
let rules = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
6
|
+
let fieldMapper = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
7
|
+
let missedFields = []; // let missedFieldsDetail = {};
|
|
8
|
+
|
|
9
|
+
let allFieldNames = Object.keys(fieldMapper);
|
|
10
|
+
|
|
11
|
+
function pushMissedField(fieldDetails) {
|
|
12
|
+
let {
|
|
13
|
+
displayLabel,
|
|
14
|
+
fieldName
|
|
15
|
+
} = fieldDetails;
|
|
16
|
+
|
|
17
|
+
if (allFieldNames.indexOf(fieldName) === -1 && missedFields.indexOf(fieldName) === -1 && displayLabel) {
|
|
18
|
+
missedFields.push(displayLabel);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
rules.forEach(rule => {
|
|
23
|
+
let {
|
|
24
|
+
fieldConditions = []
|
|
25
|
+
} = rule;
|
|
26
|
+
fieldConditions.forEach(fieldCondition => {
|
|
27
|
+
let {
|
|
28
|
+
conditions = [],
|
|
29
|
+
actions = {}
|
|
30
|
+
} = fieldCondition;
|
|
31
|
+
let {
|
|
32
|
+
setMandatoryFields = []
|
|
33
|
+
} = actions;
|
|
34
|
+
conditions.forEach(condition => {
|
|
35
|
+
pushMissedField(condition);
|
|
36
|
+
});
|
|
37
|
+
setMandatoryFields.forEach(setMandatoryField => {
|
|
38
|
+
pushMissedField(setMandatoryField);
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
return missedFields;
|
|
43
|
+
}
|
|
44
|
+
export function getStatusMappingObj(statusMapping) {
|
|
45
|
+
let mappingObj = {
|
|
46
|
+
open: [],
|
|
47
|
+
closed: [],
|
|
48
|
+
onhold: [],
|
|
49
|
+
completed: []
|
|
50
|
+
};
|
|
51
|
+
statusMapping.forEach(status => {
|
|
52
|
+
let {
|
|
53
|
+
statusType,
|
|
54
|
+
name
|
|
55
|
+
} = status;
|
|
56
|
+
|
|
57
|
+
if (statusType === 'Open') {
|
|
58
|
+
mappingObj.open.push(name);
|
|
59
|
+
} else if (statusType === 'On Hold') {
|
|
60
|
+
mappingObj.onhold.push(name);
|
|
61
|
+
} else if (statusType === 'Closed') {
|
|
62
|
+
mappingObj.closed.push(name);
|
|
63
|
+
} else if (statusType === 'Completed') {
|
|
64
|
+
mappingObj.completed.push(name);
|
|
65
|
+
}
|
|
66
|
+
});
|
|
67
|
+
return mappingObj;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
function checkFieldsAvailableInForm() {
|
|
71
|
+
let conditions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
72
|
+
let fieldMapper = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
73
|
+
return conditions.every(condition => {
|
|
74
|
+
let allFieldNames = Object.keys(fieldMapper);
|
|
75
|
+
let {
|
|
76
|
+
fieldName
|
|
77
|
+
} = condition;
|
|
78
|
+
|
|
79
|
+
if (allFieldNames.indexOf(fieldName) >= 0) {
|
|
80
|
+
return true;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
return false;
|
|
84
|
+
});
|
|
85
|
+
} //ignoreFields: assignee, multiselect, reminder, department, resolution
|
|
86
|
+
// moduleEntityObj = {department: {}, contact:{}, account:{}, product:{}}
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
function getFieldValue(fieldId, fieldUIStates, fieldDetails, moduleEntityObj) {
|
|
90
|
+
let {
|
|
91
|
+
type: fieldType,
|
|
92
|
+
apiName: fieldName
|
|
93
|
+
} = fieldDetails[fieldId];
|
|
94
|
+
let {
|
|
95
|
+
value,
|
|
96
|
+
createNew
|
|
97
|
+
} = fieldUIStates[fieldId];
|
|
98
|
+
return value;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
function validateCondition() {
|
|
102
|
+
let type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
103
|
+
let condition = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
104
|
+
let value = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
|
|
105
|
+
let formValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '';
|
|
106
|
+
let statusMapping = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};
|
|
107
|
+
{
|
|
108
|
+
formValue = formValue === null ? '' : formValue;
|
|
109
|
+
const Types = {
|
|
110
|
+
TEXT: 'Text',
|
|
111
|
+
EMAIL: 'Email',
|
|
112
|
+
PHONE: 'Phone',
|
|
113
|
+
URL: 'URL',
|
|
114
|
+
TEXTAREA: 'Textarea',
|
|
115
|
+
LOOKUP: 'LookUp',
|
|
116
|
+
NUMBER: 'Number',
|
|
117
|
+
PERCENT: 'Percent',
|
|
118
|
+
CURRENCY: 'Currency',
|
|
119
|
+
DECIMAL: 'Decimal',
|
|
120
|
+
BOOLEAN: 'Boolean',
|
|
121
|
+
DATETIME: 'DateTime',
|
|
122
|
+
DATE: 'Date',
|
|
123
|
+
PICKLIST: 'Picklist',
|
|
124
|
+
RADIO: 'Radio',
|
|
125
|
+
FAX: 'Fax'
|
|
126
|
+
};
|
|
127
|
+
const COMMON_COMPARATORS = {
|
|
128
|
+
ISEMPTY: 'is empty',
|
|
129
|
+
ISNOTEMPTY: 'is not empty'
|
|
130
|
+
};
|
|
131
|
+
const TEXT_COMPARATORS = {
|
|
132
|
+
IS: 'is',
|
|
133
|
+
ISNT: "isn't",
|
|
134
|
+
STARTSWITH: 'starts with',
|
|
135
|
+
ENDSWITH: 'ends with',
|
|
136
|
+
CONTAINS: 'contains',
|
|
137
|
+
DOESNTCONTAIN: "doesn't contain"
|
|
138
|
+
};
|
|
139
|
+
const NUMBER_COMPARATORS = {
|
|
140
|
+
EQUAL: '=',
|
|
141
|
+
NOTEQUAL: '<>',
|
|
142
|
+
LESSTHAN: '<',
|
|
143
|
+
LESSTHANEQUAL: '<=',
|
|
144
|
+
GREATERTHAN: '>',
|
|
145
|
+
GREATERTHANEQUAL: '>='
|
|
146
|
+
};
|
|
147
|
+
const DATE_COMPARATORS = {
|
|
148
|
+
ISAFTER: 'is after',
|
|
149
|
+
ISBEFORE: 'is before',
|
|
150
|
+
BETWEEN: 'between',
|
|
151
|
+
NOTBETWEEN: 'not between'
|
|
152
|
+
};
|
|
153
|
+
const STATUS_COMPARATORS = {
|
|
154
|
+
ISOPEN: 'is OPEN',
|
|
155
|
+
ISONHOLD: 'is ON HOLD',
|
|
156
|
+
ISCLOSED: 'is CLOSED',
|
|
157
|
+
ISCOMPLETED: 'is COMPLETED'
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
const validateText = function () {
|
|
161
|
+
let condition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
162
|
+
let value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
163
|
+
let formValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
|
|
164
|
+
let matched = false;
|
|
165
|
+
|
|
166
|
+
if (condition === COMMON_COMPARATORS.ISEMPTY) {
|
|
167
|
+
matched = formValue === '';
|
|
168
|
+
} else if (condition === COMMON_COMPARATORS.ISNOTEMPTY) {
|
|
169
|
+
matched = formValue !== '';
|
|
170
|
+
} else {
|
|
171
|
+
value = value !== null ? value.toLowerCase().trim() : '';
|
|
172
|
+
formValue = formValue !== null ? formValue.toLowerCase().trim() : '';
|
|
173
|
+
|
|
174
|
+
switch (condition) {
|
|
175
|
+
case TEXT_COMPARATORS.IS:
|
|
176
|
+
matched = formValue === value;
|
|
177
|
+
break;
|
|
178
|
+
|
|
179
|
+
case TEXT_COMPARATORS.ISNT:
|
|
180
|
+
matched = formValue !== value;
|
|
181
|
+
break;
|
|
182
|
+
|
|
183
|
+
case TEXT_COMPARATORS.STARTSWITH:
|
|
184
|
+
matched = formValue.startsWith(value);
|
|
185
|
+
break;
|
|
186
|
+
|
|
187
|
+
case TEXT_COMPARATORS.ENDSWITH:
|
|
188
|
+
matched = formValue.endsWith(value);
|
|
189
|
+
break;
|
|
190
|
+
|
|
191
|
+
case TEXT_COMPARATORS.CONTAINS:
|
|
192
|
+
matched = formValue.indexOf(value) !== -1;
|
|
193
|
+
break;
|
|
194
|
+
|
|
195
|
+
case TEXT_COMPARATORS.DOESNTCONTAIN:
|
|
196
|
+
matched = formValue.indexOf(value) === -1;
|
|
197
|
+
break;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
return matched;
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
const validateNumber = function () {
|
|
205
|
+
let condition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
206
|
+
let value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
207
|
+
let formValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
|
|
208
|
+
let matched = false;
|
|
209
|
+
|
|
210
|
+
if (condition === COMMON_COMPARATORS.ISEMPTY) {
|
|
211
|
+
matched = formValue === '';
|
|
212
|
+
} else if (condition === COMMON_COMPARATORS.ISNOTEMPTY) {
|
|
213
|
+
matched = formValue !== '';
|
|
214
|
+
} else {
|
|
215
|
+
if (formValue === '') {
|
|
216
|
+
return false;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
value = parseFloat(value);
|
|
220
|
+
formValue = parseFloat(formValue);
|
|
221
|
+
|
|
222
|
+
switch (condition) {
|
|
223
|
+
case NUMBER_COMPARATORS.EQUAL:
|
|
224
|
+
matched = formValue === value;
|
|
225
|
+
break;
|
|
226
|
+
|
|
227
|
+
case NUMBER_COMPARATORS.NOTEQUAL:
|
|
228
|
+
matched = formValue !== value;
|
|
229
|
+
break;
|
|
230
|
+
|
|
231
|
+
case NUMBER_COMPARATORS.LESSTHAN:
|
|
232
|
+
matched = formValue < value;
|
|
233
|
+
break;
|
|
234
|
+
|
|
235
|
+
case NUMBER_COMPARATORS.LESSTHANEQUAL:
|
|
236
|
+
matched = formValue <= value;
|
|
237
|
+
break;
|
|
238
|
+
|
|
239
|
+
case NUMBER_COMPARATORS.GREATERTHAN:
|
|
240
|
+
matched = formValue > value;
|
|
241
|
+
break;
|
|
242
|
+
|
|
243
|
+
case NUMBER_COMPARATORS.GREATERTHANEQUAL:
|
|
244
|
+
matched = formValue >= value;
|
|
245
|
+
break;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
return matched;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
const validateBoolean = function () {
|
|
253
|
+
let condition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
254
|
+
let value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
255
|
+
let formValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
|
|
256
|
+
formValue = String(formValue) || 'false';
|
|
257
|
+
value = String(value) || 'false';
|
|
258
|
+
let matched = false;
|
|
259
|
+
|
|
260
|
+
switch (condition) {
|
|
261
|
+
case TEXT_COMPARATORS.IS:
|
|
262
|
+
matched = formValue === value;
|
|
263
|
+
break;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
return matched;
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
const validateDate = function () {
|
|
270
|
+
let condition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
271
|
+
let value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
272
|
+
let formValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
|
|
273
|
+
let matched = false;
|
|
274
|
+
|
|
275
|
+
if (condition === COMMON_COMPARATORS.ISEMPTY) {
|
|
276
|
+
matched = formValue === '';
|
|
277
|
+
} else if (condition === COMMON_COMPARATORS.ISNOTEMPTY) {
|
|
278
|
+
matched = formValue !== '';
|
|
279
|
+
} else {
|
|
280
|
+
if (formValue === '') {
|
|
281
|
+
return false;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
formValue = new Date(formValue);
|
|
285
|
+
|
|
286
|
+
if (condition === DATE_COMPARATORS.BETWEEN || condition === DATE_COMPARATORS.NOTBETWEEN) {
|
|
287
|
+
const beforeVal = new Date(value[0]);
|
|
288
|
+
const afterVal = new Date(value[1]);
|
|
289
|
+
|
|
290
|
+
switch (condition) {
|
|
291
|
+
case DATE_COMPARATORS.BETWEEN:
|
|
292
|
+
matched = formValue.getTime() - beforeVal.getTime() >= 0 && formValue.getTime() - afterVal.getTime() <= 0;
|
|
293
|
+
break;
|
|
294
|
+
|
|
295
|
+
case DATE_COMPARATORS.NOTBETWEEN:
|
|
296
|
+
matched = !(formValue.getTime() - beforeVal.getTime() >= 0 && formValue.getTime() - afterVal.getTime() <= 0);
|
|
297
|
+
break;
|
|
298
|
+
}
|
|
299
|
+
} else {
|
|
300
|
+
value = new Date(value);
|
|
301
|
+
|
|
302
|
+
switch (condition) {
|
|
303
|
+
case TEXT_COMPARATORS.IS:
|
|
304
|
+
matched = formValue.getTime() - value.getTime() === 0;
|
|
305
|
+
break;
|
|
306
|
+
|
|
307
|
+
case TEXT_COMPARATORS.ISNT:
|
|
308
|
+
matched = formValue !== '' && formValue.getTime() - value.getTime() !== 0;
|
|
309
|
+
break;
|
|
310
|
+
|
|
311
|
+
case DATE_COMPARATORS.ISAFTER:
|
|
312
|
+
matched = formValue.getTime() - value.getTime() > 0;
|
|
313
|
+
break;
|
|
314
|
+
|
|
315
|
+
case DATE_COMPARATORS.ISBEFORE:
|
|
316
|
+
matched = formValue.getTime() - value.getTime() < 0;
|
|
317
|
+
break;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
return matched;
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
const validatePicklist = function () {
|
|
326
|
+
let condition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
327
|
+
let value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
328
|
+
let formValue = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
|
|
329
|
+
let statusMapping = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
|
|
330
|
+
|
|
331
|
+
if ([STATUS_COMPARATORS.ISOPEN, STATUS_COMPARATORS.ISONHOLD, STATUS_COMPARATORS.ISCLOSED, STATUS_COMPARATORS.ISCOMPLETED].indexOf(condition) !== -1) {
|
|
332
|
+
let matched = false;
|
|
333
|
+
|
|
334
|
+
switch (condition) {
|
|
335
|
+
case STATUS_COMPARATORS.ISOPEN:
|
|
336
|
+
matched = statusMapping.open.indexOf(formValue) !== -1;
|
|
337
|
+
break;
|
|
338
|
+
|
|
339
|
+
case STATUS_COMPARATORS.ISONHOLD:
|
|
340
|
+
matched = statusMapping.onhold.indexOf(formValue) !== -1;
|
|
341
|
+
break;
|
|
342
|
+
|
|
343
|
+
case STATUS_COMPARATORS.ISCLOSED:
|
|
344
|
+
matched = statusMapping.closed.indexOf(formValue) !== -1;
|
|
345
|
+
break;
|
|
346
|
+
|
|
347
|
+
case STATUS_COMPARATORS.ISCOMPLETED:
|
|
348
|
+
matched = statusMapping.completed.indexOf(formValue) !== -1;
|
|
349
|
+
break;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
return matched;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
formValue = formValue === '-None-' ? null : formValue;
|
|
356
|
+
return validateText(condition, value, formValue);
|
|
357
|
+
};
|
|
358
|
+
|
|
359
|
+
const getRelatedDateISOString = (dateValue, isDateField) => {
|
|
360
|
+
if (dateValue === '${CURRENTTIME}') {
|
|
361
|
+
let currentDateObj = new Date();
|
|
362
|
+
dateValue = currentDateObj.toISOString();
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
if (isDateField) {
|
|
366
|
+
dateValue += 'T00:00:00.000Z';
|
|
367
|
+
} else {
|
|
368
|
+
let dateObj = new Date(dateValue);
|
|
369
|
+
dateObj.setSeconds(0);
|
|
370
|
+
dateObj.setMilliseconds(0);
|
|
371
|
+
dateValue = dateObj.toISOString();
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
return dateValue;
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
switch (type) {
|
|
378
|
+
case Types.TEXT:
|
|
379
|
+
case Types.EMAIL:
|
|
380
|
+
case Types.PHONE:
|
|
381
|
+
case Types.URL:
|
|
382
|
+
case Types.TEXTAREA:
|
|
383
|
+
case Types.LOOKUP:
|
|
384
|
+
case Types.FAX:
|
|
385
|
+
return validateText(condition, value, formValue);
|
|
386
|
+
|
|
387
|
+
case Types.NUMBER:
|
|
388
|
+
case Types.PERCENT:
|
|
389
|
+
case Types.CURRENCY:
|
|
390
|
+
case Types.DECIMAL:
|
|
391
|
+
return validateNumber(condition, value, formValue);
|
|
392
|
+
|
|
393
|
+
case Types.BOOLEAN:
|
|
394
|
+
return validateBoolean(condition, value, formValue);
|
|
395
|
+
|
|
396
|
+
case Types.DATETIME:
|
|
397
|
+
case Types.DATE:
|
|
398
|
+
if (condition !== COMMON_COMPARATORS.ISNOTEMPTY && condition !== COMMON_COMPARATORS.ISEMPTY) {
|
|
399
|
+
if (type === Types.DATE) {
|
|
400
|
+
value = getRelatedDateISOString(value, true);
|
|
401
|
+
} else {
|
|
402
|
+
if (condition === DATE_COMPARATORS.BETWEEN || condition === DATE_COMPARATORS.NOTBETWEEN) {
|
|
403
|
+
value[0] = getRelatedDateISOString(value[0], false);
|
|
404
|
+
value[1] = getRelatedDateISOString(value[1], false);
|
|
405
|
+
} else {
|
|
406
|
+
value = getRelatedDateISOString(value, false);
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
return validateDate(condition, value, formValue);
|
|
412
|
+
|
|
413
|
+
case Types.PICKLIST:
|
|
414
|
+
case Types.RADIO:
|
|
415
|
+
return validatePicklist(condition, value, formValue, statusMapping);
|
|
416
|
+
|
|
417
|
+
default:
|
|
418
|
+
return false;
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
function getConditionsMatchedResult() {
|
|
424
|
+
let conditions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
425
|
+
let fieldUIStates = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
426
|
+
let fieldMapper = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
427
|
+
let fieldDetails = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
|
|
428
|
+
let statusMapping = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];
|
|
429
|
+
let moduleEntityObj = arguments.length > 5 ? arguments[5] : undefined;
|
|
430
|
+
let result = {};
|
|
431
|
+
|
|
432
|
+
if (!checkFieldsAvailableInForm(conditions, fieldMapper)) {
|
|
433
|
+
return result;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
conditions.forEach((condition, conditionIndex) => {
|
|
437
|
+
let {
|
|
438
|
+
fieldName,
|
|
439
|
+
condition: conditionName,
|
|
440
|
+
value: values = []
|
|
441
|
+
} = condition;
|
|
442
|
+
let fieldId = fieldMapper[fieldName];
|
|
443
|
+
let {
|
|
444
|
+
type: fieldType
|
|
445
|
+
} = fieldDetails[fieldId];
|
|
446
|
+
let formValue = getFieldValue(fieldId, fieldUIStates, fieldDetails, moduleEntityObj);
|
|
447
|
+
let matched = false;
|
|
448
|
+
|
|
449
|
+
if (conditionName === 'between' || conditionName === 'not between') {
|
|
450
|
+
matched = validateCondition(fieldType, conditionName, values, formValue, statusMapping);
|
|
451
|
+
} else {
|
|
452
|
+
matched = values.some(value => {
|
|
453
|
+
if (validateCondition(fieldType, conditionName, value, formValue, statusMapping)) {
|
|
454
|
+
return true;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
return false;
|
|
458
|
+
});
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
result[conditionIndex + 1] = matched;
|
|
462
|
+
});
|
|
463
|
+
return result;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
function validatePattern() {
|
|
467
|
+
let pattern = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
468
|
+
let matchedResult = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
469
|
+
|
|
470
|
+
let evalExpression = pattern => Function(`return (${pattern})`);
|
|
471
|
+
|
|
472
|
+
pattern = pattern.replace(/and/g, '&&').replace(/or/g, '||');
|
|
473
|
+
let newPattern = '';
|
|
474
|
+
let patternLen = pattern.length;
|
|
475
|
+
|
|
476
|
+
for (let i = 0; i < patternLen; i++) {
|
|
477
|
+
let char = pattern[i];
|
|
478
|
+
|
|
479
|
+
if (char !== '(' && char !== ')' && char !== '&' && char !== '|') {
|
|
480
|
+
char = parseInt(char);
|
|
481
|
+
char = matchedResult[char] || false;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
newPattern += char;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
return evalExpression(newPattern)();
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
export function getPassedFormRules() {
|
|
491
|
+
let rules = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
492
|
+
let fieldUIStates = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
493
|
+
let fieldMapper = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
494
|
+
let fieldDetails = arguments.length > 3 ? arguments[3] : undefined;
|
|
495
|
+
let statusMapping = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];
|
|
496
|
+
let moduleEntityObj = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {};
|
|
497
|
+
let customValidators = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : {};
|
|
498
|
+
let passedRules = [];
|
|
499
|
+
statusMapping = getStatusMappingObj(statusMapping);
|
|
500
|
+
rules.forEach(rule => {
|
|
501
|
+
let allFieldNames = Object.keys(fieldMapper);
|
|
502
|
+
let {
|
|
503
|
+
fieldName,
|
|
504
|
+
fieldConditions
|
|
505
|
+
} = rule;
|
|
506
|
+
|
|
507
|
+
if (allFieldNames.indexOf(fieldName) !== -1) {
|
|
508
|
+
fieldConditions.forEach(fieldCondition => {
|
|
509
|
+
let {
|
|
510
|
+
conditions,
|
|
511
|
+
pattern,
|
|
512
|
+
actions,
|
|
513
|
+
validator
|
|
514
|
+
} = fieldCondition;
|
|
515
|
+
|
|
516
|
+
if (validator) {
|
|
517
|
+
let {
|
|
518
|
+
scriptId
|
|
519
|
+
} = validator;
|
|
520
|
+
|
|
521
|
+
if (customValidators[scriptId]) {
|
|
522
|
+
let value = getFieldValue(fieldMapper[fieldName], fieldUIStates, fieldDetails, moduleEntityObj);
|
|
523
|
+
let isValid = customValidators[scriptId](value);
|
|
524
|
+
|
|
525
|
+
if (!isValid) {
|
|
526
|
+
let obj = {
|
|
527
|
+
fieldName,
|
|
528
|
+
actions
|
|
529
|
+
};
|
|
530
|
+
passedRules.push(obj);
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
} else {
|
|
534
|
+
let matchedResult = getConditionsMatchedResult(conditions, fieldUIStates, fieldMapper, fieldDetails, statusMapping, moduleEntityObj);
|
|
535
|
+
|
|
536
|
+
if (Object.keys(matchedResult).length > 0) {
|
|
537
|
+
let isValid = validatePattern(pattern, matchedResult);
|
|
538
|
+
|
|
539
|
+
if (isValid) {
|
|
540
|
+
let obj = {
|
|
541
|
+
fieldName,
|
|
542
|
+
actions
|
|
543
|
+
};
|
|
544
|
+
passedRules.push(obj);
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
});
|
|
549
|
+
}
|
|
550
|
+
});
|
|
551
|
+
return passedRules;
|
|
552
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
/* eslint-disable import/prefer-default-export */
|
|
2
|
+
import { getPassedFormRules } from "./utils";
|
|
3
|
+
|
|
4
|
+
function getValidRules() {
|
|
5
|
+
let validationRules = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
6
|
+
let fieldMapper = arguments.length > 1 ? arguments[1] : undefined;
|
|
7
|
+
let fieldUIStates = arguments.length > 2 ? arguments[2] : undefined;
|
|
8
|
+
let validateOnlyShowedFields = arguments.length > 3 ? arguments[3] : undefined;
|
|
9
|
+
return validationRules.filter(rule => {
|
|
10
|
+
const {
|
|
11
|
+
fieldName
|
|
12
|
+
} = rule;
|
|
13
|
+
const fieldId = fieldMapper[fieldName];
|
|
14
|
+
|
|
15
|
+
if (fieldId) {
|
|
16
|
+
const {
|
|
17
|
+
isShowOnLayoutRuleApplied: isShow
|
|
18
|
+
} = fieldUIStates[fieldId];
|
|
19
|
+
return validateOnlyShowedFields ? isShow : true;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return false;
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default function getValidationRuleActionsData() {
|
|
27
|
+
let validationRules = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
28
|
+
let fieldUIStates = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
29
|
+
let formFields = arguments.length > 2 ? arguments[2] : undefined;
|
|
30
|
+
let customValidators = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
|
|
31
|
+
let statusMapping = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];
|
|
32
|
+
let moduleEntityObj = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {};
|
|
33
|
+
let validateOnlyShowedFields = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : true;
|
|
34
|
+
const {
|
|
35
|
+
fieldDetails,
|
|
36
|
+
fieldMapper
|
|
37
|
+
} = formFields;
|
|
38
|
+
const validValidationRules = getValidRules(validationRules, fieldMapper, fieldUIStates, validateOnlyShowedFields);
|
|
39
|
+
const passedRules = getPassedFormRules(validValidationRules, fieldUIStates, fieldMapper, fieldDetails, statusMapping, moduleEntityObj, customValidators);
|
|
40
|
+
const validationRuleActionsData = {};
|
|
41
|
+
let errorFieldId = '';
|
|
42
|
+
let isError = false;
|
|
43
|
+
let removeOldMessages = [];
|
|
44
|
+
const errorObj = {};
|
|
45
|
+
let hasErrorInHiddenFields = false;
|
|
46
|
+
let hasErrorInDisplayFields = false;
|
|
47
|
+
let errorFields = []; // Revamp the logic
|
|
48
|
+
|
|
49
|
+
validValidationRules.forEach(rule => {
|
|
50
|
+
// clear old validation rule message
|
|
51
|
+
const {
|
|
52
|
+
fieldName
|
|
53
|
+
} = rule;
|
|
54
|
+
const fieldId = fieldMapper[fieldName];
|
|
55
|
+
const {
|
|
56
|
+
messageObj
|
|
57
|
+
} = fieldUIStates[fieldId] || {};
|
|
58
|
+
const {
|
|
59
|
+
validationRuleMessage: message
|
|
60
|
+
} = messageObj || {};
|
|
61
|
+
|
|
62
|
+
if (message && fieldId) {
|
|
63
|
+
validationRuleActionsData[fieldId] = {
|
|
64
|
+
validationRuleMessage: ''
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
removeOldMessages = { ...validationRuleActionsData
|
|
69
|
+
};
|
|
70
|
+
let firstFieldId = '';
|
|
71
|
+
let firstDisplayedErrorFieldId = '';
|
|
72
|
+
passedRules.forEach(data => {
|
|
73
|
+
const {
|
|
74
|
+
actions = {},
|
|
75
|
+
fieldName
|
|
76
|
+
} = data || {};
|
|
77
|
+
const fieldId = fieldMapper[fieldName];
|
|
78
|
+
const {
|
|
79
|
+
alert = ''
|
|
80
|
+
} = actions;
|
|
81
|
+
firstFieldId = fieldMapper[passedRules[0].fieldName]; // let { messageObj } = fieldUIStates[fieldId] || {};
|
|
82
|
+
// let { validationRuleMessage: message } = messageObj || {};
|
|
83
|
+
// same field possible to throw 2 message.That case should be show 1st error msg
|
|
84
|
+
|
|
85
|
+
const {
|
|
86
|
+
validationRuleMessage = ''
|
|
87
|
+
} = validationRuleActionsData[fieldId] || {};
|
|
88
|
+
|
|
89
|
+
if (fieldId && !validationRuleMessage) {
|
|
90
|
+
validationRuleActionsData[fieldId] = {
|
|
91
|
+
validationRuleMessage: alert
|
|
92
|
+
};
|
|
93
|
+
errorObj[fieldId] = {
|
|
94
|
+
validationRuleMessage: alert
|
|
95
|
+
};
|
|
96
|
+
const {
|
|
97
|
+
isShowOnLayoutRuleApplied: isShow
|
|
98
|
+
} = fieldUIStates[fieldId];
|
|
99
|
+
|
|
100
|
+
if (isShow) {
|
|
101
|
+
hasErrorInDisplayFields = true;
|
|
102
|
+
|
|
103
|
+
if (!firstDisplayedErrorFieldId) {
|
|
104
|
+
firstDisplayedErrorFieldId = fieldId;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
errorFields.push(fieldId);
|
|
108
|
+
} else {
|
|
109
|
+
hasErrorInHiddenFields = true;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
errorFieldId = firstFieldId;
|
|
114
|
+
isError = !!passedRules.length;
|
|
115
|
+
return {
|
|
116
|
+
data: validationRuleActionsData,
|
|
117
|
+
errorFieldId,
|
|
118
|
+
isError,
|
|
119
|
+
removeOldMessages,
|
|
120
|
+
errorObj,
|
|
121
|
+
hasErrorInDisplayFields,
|
|
122
|
+
hasErrorInHiddenFields,
|
|
123
|
+
firstDisplayedErrorFieldId,
|
|
124
|
+
errorFields
|
|
125
|
+
};
|
|
126
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FETCH } from "../../../bc/zhttp/Constants";
|
|
2
2
|
import FetchController from "../adapters/controllers/FetchController";
|
|
3
|
-
import FetchUseCase from "../usecases/
|
|
3
|
+
import FetchUseCase from "../applications/usecases/FetchUseCase";
|
|
4
4
|
import FetchGateWay from "../adapters/gateway/FetchGateWay";
|
|
5
5
|
|
|
6
6
|
class ActionsHandlersFactory {
|