@farris/jit-engine 1.3.222 → 1.3.223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/lib/mobileapp/vue/code-generator/app-manager/vue-app-model-provider-manager.js +17 -17
- package/lib/mobileapp/vue/code-generator/app-manager/vue-app-modelentity-manager.js +17 -17
- package/lib/mobileapp/vue/code-generator/app-manager/vue-app-modelproxy-manager.js +17 -17
- package/lib/mobileapp/vue/code-generator/app-manager/vue-app-modelrepository-manager.js +20 -20
- package/lib/mobileapp/vue/code-generator/devkit-manager/app-expression-manager.js +17 -17
- package/lib/mobileapp/vue/code-generator/devkit-manager/app-indexvue-manager.js +63 -63
- package/lib/mobileapp/vue/code-generator/devkit-manager/app-router-manager.js +30 -30
- package/lib/mobileapp/vue/code-generator/devkit-manager/app-validation-rule-manager.js +16 -16
- package/lib/mobileapp/vue/code-generator/devkit-manager/devkit-file-manager.js +12 -12
- package/lib/mobileapp/vue/code-generator/devkit-manager/devkit-parameter-generator.js +6 -6
- package/lib/mobileapp/vue/code-generator/devkit-manager/index.js +14 -14
- package/lib/mobileapp/vue/code-generator/file-generator/abstract-file-generator.js +24 -24
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/index.js +13 -13
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-expression.js +73 -73
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-filter-generator.js +24 -24
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-extraImports-generator.js +18 -18
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-resource-generator.js +19 -19
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-index-vue-generator.js +80 -80
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-entity-generator.js +172 -172
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-provider-generator.js +37 -37
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-proxy-generator.js +126 -126
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-model-repository-generator.js +63 -63
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-router-generator.js +58 -58
- package/lib/mobileapp/vue/code-generator/file-generator/app-generator/vue-app-validation-rule.js +35 -35
- package/lib/mobileapp/vue/code-generator/file-generator/file-generator-context.js +14 -14
- package/lib/mobileapp/vue/code-generator/file-generator/file-generator-factory.js +34 -34
- package/lib/mobileapp/vue/code-generator/file-generator/file-generator-manager.js +13 -13
- package/lib/mobileapp/vue/code-generator/file-generator/file-generator-response.js +15 -15
- package/lib/mobileapp/vue/code-generator/file-generator/file-generator-type.js +10 -10
- package/lib/mobileapp/vue/code-generator/file-generator/i-file-generator.js +2 -2
- package/lib/mobileapp/vue/code-generator/file-generator/index.js +15 -15
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-bindingdata-generator.js +30 -30
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-component-generator.js +212 -212
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-form-generator.js +133 -133
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-handler-generator.js +99 -99
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-provider-generator.js +132 -132
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-statemachine-generator.js +72 -72
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-uistate-generator.js +61 -61
- package/lib/mobileapp/vue/code-generator/file-generator/page-generator/page-viewmodel-generator.js +95 -95
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/app-vue-generator.js +21 -21
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/babel-config-js-generator.js +20 -20
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/gitignore-generator.js +37 -37
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/main-ts-generator.js +25 -25
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/package-json-generator.js +64 -64
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/readme-md-generator.js +33 -33
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/router-generator.js +56 -56
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/shims-tsx-d-ts-generator.js +28 -28
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/shimx-vue-d-ts-generator.js +44 -44
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/tsconfig-json-generator.js +52 -52
- package/lib/mobileapp/vue/code-generator/file-generator/project-generator/vue-config-js-generator.js +34 -34
- package/lib/mobileapp/vue/code-generator/file-generator-filter.js +17 -17
- package/lib/mobileapp/vue/code-generator/file-generator-path-manager.js +43 -43
- package/lib/mobileapp/vue/code-generator/index.js +14 -14
- package/lib/mobileapp/vue/code-generator/page-manager/page-binding-data-manager.js +21 -21
- package/lib/mobileapp/vue/code-generator/page-manager/page-command-handler-manager.js +20 -20
- package/lib/mobileapp/vue/code-generator/page-manager/page-component-manager.js +46 -46
- package/lib/mobileapp/vue/code-generator/page-manager/page-form-manager.js +20 -20
- package/lib/mobileapp/vue/code-generator/page-manager/page-parameter-generator.js +13 -13
- package/lib/mobileapp/vue/code-generator/page-manager/page-provider-manager.js +21 -21
- package/lib/mobileapp/vue/code-generator/page-manager/page-statemachine-manager.js +21 -21
- package/lib/mobileapp/vue/code-generator/page-manager/page-uistate-manager.js +10 -10
- package/lib/mobileapp/vue/code-generator/page-manager/page-viewmodel-manager.js +21 -21
- package/lib/mobileapp/vue/code-generator/workspace-manager/workspace-file-manager.js +54 -54
- package/lib/mobileapp/vue/domstructure/devkit/befproxy/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-content.js +56 -56
- package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-operation-parameter.js +67 -67
- package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-operation.js +66 -66
- package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy-service.js +46 -46
- package/lib/mobileapp/vue/domstructure/devkit/befproxy/vue-bef-proxy.js +33 -33
- package/lib/mobileapp/vue/domstructure/devkit/command/vue-command-config.js +79 -79
- package/lib/mobileapp/vue/domstructure/devkit/command/vue-handler.js +36 -36
- package/lib/mobileapp/vue/domstructure/devkit/command/vue-link.js +22 -22
- package/lib/mobileapp/vue/domstructure/devkit/command/vue-parameter-description.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/command/vue-parameter.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/command/vue-shortcut.js +27 -27
- package/lib/mobileapp/vue/domstructure/devkit/component/index.js +14 -14
- package/lib/mobileapp/vue/domstructure/devkit/component/vue-component-ref.js +40 -40
- package/lib/mobileapp/vue/domstructure/devkit/component/vue-component.js +45 -45
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-dynamic-object.js +10 -10
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-entity.js +61 -61
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-enum.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-field.js +49 -49
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-list.js +10 -10
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-object.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/entity/vue-valid-rule.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/form/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/devkit/form/vue-child-form.js +33 -33
- package/lib/mobileapp/vue/domstructure/devkit/form/vue-control.js +98 -98
- package/lib/mobileapp/vue/domstructure/devkit/form/vue-form-config.js +40 -40
- package/lib/mobileapp/vue/domstructure/devkit/form/vue-form-type.js +8 -8
- package/lib/mobileapp/vue/domstructure/devkit/form/vue-form-valid-rule.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/i-devkit-entity.js +2 -2
- package/lib/mobileapp/vue/domstructure/devkit/index.js +17 -17
- package/lib/mobileapp/vue/domstructure/devkit/module/vue-language-config.js +19 -19
- package/lib/mobileapp/vue/domstructure/devkit/module/vue-module.js +32 -32
- package/lib/mobileapp/vue/domstructure/devkit/repository/vue-repository.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/routing/routing.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/service/vue-service.js +40 -40
- package/lib/mobileapp/vue/domstructure/devkit/statemachine/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-action.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-render-state.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-state.js +24 -24
- package/lib/mobileapp/vue/domstructure/devkit/statemachine/vue-statemachine.js +47 -47
- package/lib/mobileapp/vue/domstructure/devkit/states/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/devkit/states/vue-states.js +57 -57
- package/lib/mobileapp/vue/domstructure/devkit/viewmodel/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/devkit/viewmodel/vue-viewmodel.js +117 -117
- package/lib/mobileapp/vue/domstructure/devkit/vue-appmodule.js +30 -30
- package/lib/mobileapp/vue/domstructure/devkit/vue-devkit.js +71 -71
- package/lib/mobileapp/vue/domstructure/devkit/vue-solution.js +38 -38
- package/lib/mobileapp/vue/domstructure/i-entity-tojson.js +2 -2
- package/lib/mobileapp/vue/domstructure/i-entity.js +2 -2
- package/lib/mobileapp/vue/domstructure/index.js +14 -14
- package/lib/mobileapp/vue/domstructure/internal-entity/i-project-data.js +2 -2
- package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-convertor.js +10 -10
- package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-entity.js +43 -43
- package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-page.js +26 -26
- package/lib/mobileapp/vue/domstructure/internal-entity/page-flow/vue-page-flow-project.js +26 -26
- package/lib/mobileapp/vue/domstructure/internal-entity/vue-app-index-vue-parameter.js +6 -6
- package/lib/mobileapp/vue/domstructure/internal-entity/vue-app-router-entity.js +14 -14
- package/lib/mobileapp/vue/domstructure/internal-entity/vue-engine-context.js +6 -6
- package/lib/mobileapp/vue/domstructure/internal-entity/vue-page-component-generate-parameter.js +6 -6
- package/lib/mobileapp/vue/domstructure/ui/basic/action-bar/action-bar.js +56 -56
- package/lib/mobileapp/vue/domstructure/ui/basic/action-bar/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/basic/button/button.js +38 -38
- package/lib/mobileapp/vue/domstructure/ui/basic/button/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/basic/image/image.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/basic/image/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/basic/index.js +20 -20
- package/lib/mobileapp/vue/domstructure/ui/basic/nav-bar/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/basic/nav-bar/vue-nav-bar.js +44 -44
- package/lib/mobileapp/vue/domstructure/ui/basic/search/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/basic/search/search.js +38 -38
- package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/index.js +14 -14
- package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/sidebar-item.js +41 -41
- package/lib/mobileapp/vue/domstructure/ui/basic/sidebar/sidebar.js +41 -41
- package/lib/mobileapp/vue/domstructure/ui/basic/tab/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/basic/tab/vue-tab-bar.js +35 -35
- package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/index.js +15 -15
- package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar-area.js +34 -34
- package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar-item.js +31 -31
- package/lib/mobileapp/vue/domstructure/ui/basic/toolbar/vue-toolbar.js +41 -41
- package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-info.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/business/approval/approval-logs.js +45 -45
- package/lib/mobileapp/vue/domstructure/ui/business/approval/index.js +14 -14
- package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-entry.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-file.js +28 -28
- package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment-uploader.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/business/attachment/attachment.js +28 -28
- package/lib/mobileapp/vue/domstructure/ui/business/attachment/image-uploader.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/business/attachment/index.js +17 -17
- package/lib/mobileapp/vue/domstructure/ui/business/filter/filter.js +38 -38
- package/lib/mobileapp/vue/domstructure/ui/business/filter/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/business/index.js +16 -16
- package/lib/mobileapp/vue/domstructure/ui/business/scroll-navbar.js +31 -31
- package/lib/mobileapp/vue/domstructure/ui/common/vue-appearance.js +24 -24
- package/lib/mobileapp/vue/domstructure/ui/common/vue-binding.js +41 -41
- package/lib/mobileapp/vue/domstructure/ui/common/vue-display.js +48 -48
- package/lib/mobileapp/vue/domstructure/ui/common/vue-margin.js +30 -30
- package/lib/mobileapp/vue/domstructure/ui/common/vue-padding.js +30 -30
- package/lib/mobileapp/vue/domstructure/ui/common/vue-position.js +38 -38
- package/lib/mobileapp/vue/domstructure/ui/common/vue-size.js +30 -30
- package/lib/mobileapp/vue/domstructure/ui/common/vue-state.js +22 -22
- package/lib/mobileapp/vue/domstructure/ui/common/vue-toolbar.js +22 -22
- package/lib/mobileapp/vue/domstructure/ui/common/vue-variable.js +61 -61
- package/lib/mobileapp/vue/domstructure/ui/container/card.js +35 -35
- package/lib/mobileapp/vue/domstructure/ui/container/field-set.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/container/index.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/container/vue-container.js +49 -49
- package/lib/mobileapp/vue/domstructure/ui/container/vue-content-container.js +33 -33
- package/lib/mobileapp/vue/domstructure/ui/container/vue-float-container.js +17 -17
- package/lib/mobileapp/vue/domstructure/ui/container/vue-form.js +35 -35
- package/lib/mobileapp/vue/domstructure/ui/container/vue-item-container.js +48 -48
- package/lib/mobileapp/vue/domstructure/ui/container/vue-page-container.js +11 -11
- package/lib/mobileapp/vue/domstructure/ui/container/vue-page-content-container.js +11 -11
- package/lib/mobileapp/vue/domstructure/ui/container/vue-page-footer-container.js +11 -11
- package/lib/mobileapp/vue/domstructure/ui/container/vue-page-header-container.js +11 -11
- package/lib/mobileapp/vue/domstructure/ui/container/vue-section.js +45 -45
- package/lib/mobileapp/vue/domstructure/ui/container/vue-tab-page.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/container/vue-tabs.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/display/banner/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/display/banner/vue-banner.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/display/calendar/calendar.js +32 -32
- package/lib/mobileapp/vue/domstructure/ui/display/calendar/index.js +14 -14
- package/lib/mobileapp/vue/domstructure/ui/display/calendar/schedule.js +31 -31
- package/lib/mobileapp/vue/domstructure/ui/display/html-template/html-template.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/display/html-template/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/display/index.js +18 -18
- package/lib/mobileapp/vue/domstructure/ui/display/list-view/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/display/list-view/vue-list-view.js +54 -54
- package/lib/mobileapp/vue/domstructure/ui/display/staff-info/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/display/staff-info/staff-info.js +48 -48
- package/lib/mobileapp/vue/domstructure/ui/display/static-text/index.js +13 -13
- package/lib/mobileapp/vue/domstructure/ui/display/static-text/static-text.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/i-ui-entity.js +2 -2
- package/lib/mobileapp/vue/domstructure/ui/index.js +17 -17
- package/lib/mobileapp/vue/domstructure/ui/input/area-picker.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/calendar-input.js +32 -32
- package/lib/mobileapp/vue/domstructure/ui/input/checkbox-group.js +35 -35
- package/lib/mobileapp/vue/domstructure/ui/input/common.js +78 -78
- package/lib/mobileapp/vue/domstructure/ui/input/custom-box.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/date-picker.js +33 -33
- package/lib/mobileapp/vue/domstructure/ui/input/html-preview.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/index.js +32 -31
- package/lib/mobileapp/vue/domstructure/ui/input/index.js.map +1 -1
- package/lib/mobileapp/vue/domstructure/ui/input/lookup-department.js +36 -26
- package/lib/mobileapp/vue/domstructure/ui/input/lookup-department.js.map +1 -1
- package/lib/mobileapp/vue/domstructure/ui/input/lookup-employee.js +36 -26
- package/lib/mobileapp/vue/domstructure/ui/input/lookup-employee.js.map +1 -1
- package/lib/mobileapp/vue/domstructure/ui/input/lookup-input.js +32 -32
- package/lib/mobileapp/vue/domstructure/ui/input/number.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/picker-relation.js +27 -0
- package/lib/mobileapp/vue/domstructure/ui/input/picker-relation.js.map +1 -0
- package/lib/mobileapp/vue/domstructure/ui/input/picker.js +35 -35
- package/lib/mobileapp/vue/domstructure/ui/input/radio-group.js +35 -35
- package/lib/mobileapp/vue/domstructure/ui/input/rich-text-editor.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/switch-input.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/text-area.js +41 -41
- package/lib/mobileapp/vue/domstructure/ui/input/text-box-external.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/text-box.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/text-scan.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/input/text-telphone.js +26 -26
- package/lib/mobileapp/vue/domstructure/ui/vue-base-component.js +93 -93
- package/lib/mobileapp/vue/jit-engine-executor/index.js +13 -13
- package/lib/mobileapp/vue/jit-engine-executor/mobile-vue-engine-executor.js +42 -42
- package/lib/mobileapp/vue/pug-generator/i-pug-generator.js +2 -2
- package/lib/mobileapp/vue/pug-generator/index.js +15 -15
- package/lib/mobileapp/vue/pug-generator/pug-generator-context.js +10 -10
- package/lib/mobileapp/vue/pug-generator/pug-generator-manager.js +18 -18
- package/lib/mobileapp/vue/pug-generator/pug-generator-response.js +14 -14
- package/lib/mobileapp/vue/pug-generator/pug-generator.js +25 -25
- package/lib/mobileapp/vue/pug-generator/pug-template-type-enum.js +8 -8
- package/lib/mobileapp/vue/pug-template/config/devkit-template-config.js +19 -19
- package/lib/mobileapp/vue/pug-template/config/template-config-manager.js +25 -25
- package/lib/mobileapp/vue/pug-template/config/template-config-parameter.js +9 -9
- package/lib/mobileapp/vue/pug-template/config/template-config-type-enum.js +8 -8
- package/lib/mobileapp/vue/pug-template/config/ui-template-config.js +159 -157
- package/lib/mobileapp/vue/pug-template/config/ui-template-config.js.map +1 -1
- package/lib/mobileapp/vue/pug-template/pug-template-manager.js +20 -20
- package/lib/mobileapp/vue/sourcefile-operation/abstract-sourcefile-operation.js +39 -39
- package/lib/mobileapp/vue/sourcefile-operation/command-sourcefile-operation.js +14 -14
- package/lib/mobileapp/vue/sourcefile-operation/eapi-soucefile-operation.js +17 -17
- package/lib/mobileapp/vue/sourcefile-operation/frm-sourcefile-operation.js +14 -14
- package/lib/mobileapp/vue/sourcefile-operation/i-sourcefile-operation.js +2 -2
- package/lib/mobileapp/vue/sourcefile-operation/pageflow-sourcefile-operation.js +13 -13
- package/lib/mobileapp/vue/sourcefile-operation/resource-sourcefile-operation.js +14 -14
- package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-factory.js +42 -42
- package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-manager-parameter.js +13 -13
- package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-manager.js +29 -29
- package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-options.js +16 -16
- package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-response.js +14 -14
- package/lib/mobileapp/vue/sourcefile-operation/sourcefile-operation-type.js +12 -12
- package/lib/mobileapp/vue/sourcefile-operation/statemachine-sourcefile-operation.js +15 -15
- package/lib/mobileapp/vue/static/.editorconfig +9 -9
- package/lib/mobileapp/vue/static/.prettierrc +6 -6
- package/lib/mobileapp/vue/static/README.md +18 -18
- package/lib/mobileapp/vue/static/babel.config.js +13 -13
- package/lib/mobileapp/vue/static/src/app.vue +7 -7
- package/lib/mobileapp/vue/static/src/main.ts +9 -9
- package/lib/mobileapp/vue/static/src/shims-vue.d.ts +32 -32
- package/lib/mobileapp/vue/static/tsconfig.json +20 -20
- package/lib/mobileapp/vue/task/vue-engine-task.js +82 -82
- package/lib/mobileapp/vue/task/vue-recursiveGenerateDevkit.js +288 -288
- package/lib/mobileapp/vue/utility/devkit/form-file-executor.js +121 -121
- package/lib/mobileapp/vue/utility/devkit/vue-component-creator.js +126 -126
- package/lib/mobileapp/vue/utility/devkit/vue-devkit-creator.js +21 -21
- package/lib/mobileapp/vue/utility/devkit/vue-devkit-object-name-creator.js +52 -52
- package/lib/mobileapp/vue/utility/devkit/vue-entities-creator.js +26 -26
- package/lib/mobileapp/vue/utility/devkit/vue-entity-creator.js +46 -46
- package/lib/mobileapp/vue/utility/devkit/vue-entity-name-creator.js +10 -10
- package/lib/mobileapp/vue/utility/devkit/vue-field-creator.js +222 -222
- package/lib/mobileapp/vue/utility/devkit/vue-form-creator.js +88 -88
- package/lib/mobileapp/vue/utility/devkit/vue-handlers-creator.js +38 -38
- package/lib/mobileapp/vue/utility/devkit/vue-module-creator.js +56 -56
- package/lib/mobileapp/vue/utility/devkit/vue-repository-creator.js +46 -46
- package/lib/mobileapp/vue/utility/devkit/vue-routing-creator.js +15 -15
- package/lib/mobileapp/vue/utility/devkit/vue-statemachine-creator.js +39 -39
- package/lib/mobileapp/vue/utility/devkit/vue-viewmodels-creator.js +498 -498
- package/lib/mobileapp/vue/utility/helper/fs-helper.js +6 -6
- package/lib/mobileapp/vue/utility/helper/json-helper.js +6 -6
- package/lib/mobileapp/vue/utility/helper/string-helper.js +6 -6
- package/lib/mobileapp/vue/utility/index.js +15 -15
- package/lib/mobileapp/vue/utility/mobileapp-vue-constant.js +40 -40
- package/lib/mobileapp/vue/utility/parameter-collector/abstract-vue-parameter-collector.js +6 -6
- package/lib/mobileapp/vue/utility/parameter-collector/i-vue-parameter-collector.js +2 -2
- package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/index.js +13 -13
- package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-control-collector-parameter.js +34 -34
- package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-control-collector.js +49 -49
- package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-ref-collector.js +35 -35
- package/lib/mobileapp/vue/utility/parameter-collector/page-component-collector/page-component-ref-parameter.js +30 -30
- package/lib/mobileapp/vue/utility/parameter-collector/vue-parameter-collector-options.js +6 -6
- package/lib/mobileapp/vue/utility/parameter-collector/vue-parameter-collector.response.js +9 -9
- package/lib/mobileapp/vue/utility/return-response.js +11 -11
- package/lib/mobileapp/vue/utility/template-generator/abstract-page-generator.js +14 -14
- package/lib/mobileapp/vue/utility/template-generator/page-child-component-generator.js +18 -18
- package/lib/mobileapp/vue/utility/template-generator/page-component-control-generator.js +24 -24
- package/lib/mobileapp/vue/utility/template-generator/page-component-external-generator.js +38 -38
- package/lib/mobileapp/vue/utility/template-generator/page-component-ref-generator.js +18 -18
- package/lib/mobileapp/vue/utility/template-generator/page-statemachine-generator.js +69 -69
- package/lib/mobileapp/vue/utility/type-convert.js +33 -33
- package/lib/mobileapp/vue/utility/vue-config-helper.js +31 -31
- package/lib/mobileapp/vue/utility/vue-content-type-creator.js +79 -78
- package/lib/mobileapp/vue/utility/vue-content-type-creator.js.map +1 -1
- package/lib/mobileapp/vue/utility/vue-control-dom-type-mapping.js +47 -47
- package/lib/mobileapp/vue/utility/vue-event-viewmodel-modifier.js +103 -103
- package/lib/mobileapp/vue/utility/vue-object-creator.js +34 -34
- package/lib/template/ui/mobilevue/action-bar.pug +10 -10
- package/lib/template/ui/mobilevue/approval-info.pug +18 -18
- package/lib/template/ui/mobilevue/approval-logs.pug +11 -11
- package/lib/template/ui/mobilevue/area-picker.pug +51 -51
- package/lib/template/ui/mobilevue/attachment-entry.pug +17 -17
- package/lib/template/ui/mobilevue/attachment-file.pug +20 -20
- package/lib/template/ui/mobilevue/attachment-uploader.pug +18 -18
- package/lib/template/ui/mobilevue/attachment.pug +28 -28
- package/lib/template/ui/mobilevue/banner.pug +4 -4
- package/lib/template/ui/mobilevue/button.pug +22 -22
- package/lib/template/ui/mobilevue/calendar-input.pug +61 -61
- package/lib/template/ui/mobilevue/calendar.pug +27 -27
- package/lib/template/ui/mobilevue/card.pug +19 -19
- package/lib/template/ui/mobilevue/checkbox-group.pug +51 -51
- package/lib/template/ui/mobilevue/component-ref.pug +3 -3
- package/lib/template/ui/mobilevue/container.pug +9 -9
- package/lib/template/ui/mobilevue/contentcontainer.pug +11 -11
- package/lib/template/ui/mobilevue/custom-box.pug +56 -56
- package/lib/template/ui/mobilevue/date-time-picker.pug +55 -55
- package/lib/template/ui/mobilevue/field-set.pug +15 -15
- package/lib/template/ui/mobilevue/filter.pug +23 -23
- package/lib/template/ui/mobilevue/form.pug +7 -7
- package/lib/template/ui/mobilevue/html-preview.pug +21 -21
- package/lib/template/ui/mobilevue/image-uploader.pug +15 -15
- package/lib/template/ui/mobilevue/image.pug +11 -11
- package/lib/template/ui/mobilevue/list-view.pug +80 -80
- package/lib/template/ui/mobilevue/lookup-department.pug +92 -89
- package/lib/template/ui/mobilevue/lookup-employee.pug +93 -91
- package/lib/template/ui/mobilevue/lookup-input.pug +93 -92
- package/lib/template/ui/mobilevue/nav-bar.pug +30 -30
- package/lib/template/ui/mobilevue/number.pug +48 -48
- package/lib/template/ui/mobilevue/picker-relation.pug +32 -0
- package/lib/template/ui/mobilevue/picker.pug +56 -56
- package/lib/template/ui/mobilevue/radio-group.pug +52 -52
- package/lib/template/ui/mobilevue/rich-text-editor.pug +55 -55
- package/lib/template/ui/mobilevue/schedule.pug +13 -13
- package/lib/template/ui/mobilevue/scroll-navbar.pug +13 -13
- package/lib/template/ui/mobilevue/search.pug +19 -19
- package/lib/template/ui/mobilevue/section.pug +33 -33
- package/lib/template/ui/mobilevue/sidebar-item.pug +9 -9
- package/lib/template/ui/mobilevue/sidebar.pug +11 -11
- package/lib/template/ui/mobilevue/staff-info.pug +12 -12
- package/lib/template/ui/mobilevue/static-text.pug +1 -1
- package/lib/template/ui/mobilevue/steps.pug +8 -8
- package/lib/template/ui/mobilevue/switch.pug +43 -43
- package/lib/template/ui/mobilevue/tab-bar.pug +13 -13
- package/lib/template/ui/mobilevue/tabpage.pug +14 -14
- package/lib/template/ui/mobilevue/tabs.pug +16 -16
- package/lib/template/ui/mobilevue/text-area.pug +44 -44
- package/lib/template/ui/mobilevue/text-box-external.pug +64 -64
- package/lib/template/ui/mobilevue/text-box.pug +58 -58
- package/lib/template/ui/mobilevue/text-scan.pug +51 -51
- package/lib/template/ui/mobilevue/text-telphone.pug +34 -34
- package/lib/template/ui/mobilevue/toolbar-area.pug +9 -9
- package/lib/template/ui/mobilevue/toolbar-item.pug +14 -14
- package/lib/template/ui/mobilevue/toolbar.pug +5 -5
- package/package.json +1 -1
- package/lib/domstructure/.DS_Store +0 -0
- package/lib/domstructure/devkit/.DS_Store +0 -0
- package/lib/domstructure/ui/.DS_Store +0 -0
- package/lib/entity/.DS_Store +0 -0
- package/lib/generator/.DS_Store +0 -0
- package/lib/mobileapp/vue/static/.gitignore +0 -13
- package/lib/mobileapp/vue/static/.npmignore +0 -13
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FrmSourceFileOperation = void 0;
|
|
4
|
-
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
-
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
6
|
-
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
7
|
-
class FrmSourceFileOperation extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
8
|
-
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
9
|
-
const resourceJsonFileName = fileNameWithoutExtension + jit_constant_1.JITConstant.JsonExtension;
|
|
10
|
-
const defaultFileOperationOperations = this.getDefaultFileOperationOptions(`the form file not exists,the form file path is ${toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, resourceJsonFileName)}`);
|
|
11
|
-
return super.readWithFileName(fileBasePath, resourceJsonFileName, defaultFileOperationOperations);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.FrmSourceFileOperation = FrmSourceFileOperation;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FrmSourceFileOperation = void 0;
|
|
4
|
+
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
+
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
6
|
+
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
7
|
+
class FrmSourceFileOperation extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
8
|
+
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
9
|
+
const resourceJsonFileName = fileNameWithoutExtension + jit_constant_1.JITConstant.JsonExtension;
|
|
10
|
+
const defaultFileOperationOperations = this.getDefaultFileOperationOptions(`the form file not exists,the form file path is ${toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, resourceJsonFileName)}`);
|
|
11
|
+
return super.readWithFileName(fileBasePath, resourceJsonFileName, defaultFileOperationOperations);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.FrmSourceFileOperation = FrmSourceFileOperation;
|
|
15
15
|
//# sourceMappingURL=frm-sourcefile-operation.js.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=i-sourcefile-operation.js.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PageFlowSourceFileOperation = void 0;
|
|
4
|
-
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
-
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
6
|
-
class PageFlowSourceFileOperation extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
7
|
-
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
8
|
-
const resourceJsonFileName = fileNameWithoutExtension;
|
|
9
|
-
const defaultFileOperationOperations = this.getDefaultFileOperationOptions(`the form resource file not exists,the form resource path is ${toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, resourceJsonFileName)}`);
|
|
10
|
-
return super.readWithFileName(fileBasePath, resourceJsonFileName, defaultFileOperationOperations);
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
exports.PageFlowSourceFileOperation = PageFlowSourceFileOperation;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PageFlowSourceFileOperation = void 0;
|
|
4
|
+
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
+
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
6
|
+
class PageFlowSourceFileOperation extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
7
|
+
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
8
|
+
const resourceJsonFileName = fileNameWithoutExtension;
|
|
9
|
+
const defaultFileOperationOperations = this.getDefaultFileOperationOptions(`the form resource file not exists,the form resource path is ${toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, resourceJsonFileName)}`);
|
|
10
|
+
return super.readWithFileName(fileBasePath, resourceJsonFileName, defaultFileOperationOperations);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.PageFlowSourceFileOperation = PageFlowSourceFileOperation;
|
|
14
14
|
//# sourceMappingURL=pageflow-sourcefile-operation.js.map
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ResourceSourceFileOPeration = void 0;
|
|
4
|
-
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
-
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
6
|
-
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
7
|
-
class ResourceSourceFileOPeration extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
8
|
-
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
9
|
-
const resourceJsonFileName = fileNameWithoutExtension + jit_constant_1.JITConstant.FormResourceExtension;
|
|
10
|
-
const defaultFileOperationOperations = this.getDefaultFileOperationOptions(`the form resource file not exists,the form resource path is ${toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, resourceJsonFileName)}`);
|
|
11
|
-
return super.readWithFileName(fileBasePath, resourceJsonFileName, defaultFileOperationOperations);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.ResourceSourceFileOPeration = ResourceSourceFileOPeration;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ResourceSourceFileOPeration = void 0;
|
|
4
|
+
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
+
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
6
|
+
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
7
|
+
class ResourceSourceFileOPeration extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
8
|
+
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
9
|
+
const resourceJsonFileName = fileNameWithoutExtension + jit_constant_1.JITConstant.FormResourceExtension;
|
|
10
|
+
const defaultFileOperationOperations = this.getDefaultFileOperationOptions(`the form resource file not exists,the form resource path is ${toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, resourceJsonFileName)}`);
|
|
11
|
+
return super.readWithFileName(fileBasePath, resourceJsonFileName, defaultFileOperationOperations);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.ResourceSourceFileOPeration = ResourceSourceFileOPeration;
|
|
15
15
|
//# sourceMappingURL=resource-sourcefile-operation.js.map
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SourceFileOperationFactory = void 0;
|
|
4
|
-
const sourcefile_operation_type_1 = require("./sourcefile-operation-type");
|
|
5
|
-
const command_sourcefile_operation_1 = require("./command-sourcefile-operation");
|
|
6
|
-
const eapi_soucefile_operation_1 = require("./eapi-soucefile-operation");
|
|
7
|
-
const frm_sourcefile_operation_1 = require("./frm-sourcefile-operation");
|
|
8
|
-
const pageflow_sourcefile_operation_1 = require("./pageflow-sourcefile-operation");
|
|
9
|
-
const resource_sourcefile_operation_1 = require("./resource-sourcefile-operation");
|
|
10
|
-
const statemachine_sourcefile_operation_1 = require("./statemachine-sourcefile-operation");
|
|
11
|
-
const logger_helper_1 = require("../../../utility/logger/logger-helper");
|
|
12
|
-
const logger_level_1 = require("../../../utility/logger/logger-level");
|
|
13
|
-
class SourceFileOperationFactory {
|
|
14
|
-
static createSourceFileOperation(operationType) {
|
|
15
|
-
let sourceFileOperation;
|
|
16
|
-
switch (operationType) {
|
|
17
|
-
case sourcefile_operation_type_1.SourceFileOperationType.Command:
|
|
18
|
-
sourceFileOperation = new command_sourcefile_operation_1.CommandSourceFileOperation();
|
|
19
|
-
break;
|
|
20
|
-
case sourcefile_operation_type_1.SourceFileOperationType.Eapi:
|
|
21
|
-
sourceFileOperation = new eapi_soucefile_operation_1.EapiSourceFileOperation();
|
|
22
|
-
break;
|
|
23
|
-
case sourcefile_operation_type_1.SourceFileOperationType.Frm:
|
|
24
|
-
sourceFileOperation = new frm_sourcefile_operation_1.FrmSourceFileOperation();
|
|
25
|
-
break;
|
|
26
|
-
case sourcefile_operation_type_1.SourceFileOperationType.PageFlow:
|
|
27
|
-
sourceFileOperation = new pageflow_sourcefile_operation_1.PageFlowSourceFileOperation();
|
|
28
|
-
break;
|
|
29
|
-
case sourcefile_operation_type_1.SourceFileOperationType.Resource:
|
|
30
|
-
sourceFileOperation = new resource_sourcefile_operation_1.ResourceSourceFileOPeration();
|
|
31
|
-
break;
|
|
32
|
-
case sourcefile_operation_type_1.SourceFileOperationType.StateMachine:
|
|
33
|
-
sourceFileOperation = new statemachine_sourcefile_operation_1.StateMachineSourceFileOperation();
|
|
34
|
-
break;
|
|
35
|
-
default:
|
|
36
|
-
logger_helper_1.LoggerHelper.log(`unknown sourcefile operation type, the type is ${operationType}`, logger_level_1.LoggerLevel.Warning);
|
|
37
|
-
break;
|
|
38
|
-
}
|
|
39
|
-
return sourceFileOperation;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
exports.SourceFileOperationFactory = SourceFileOperationFactory;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SourceFileOperationFactory = void 0;
|
|
4
|
+
const sourcefile_operation_type_1 = require("./sourcefile-operation-type");
|
|
5
|
+
const command_sourcefile_operation_1 = require("./command-sourcefile-operation");
|
|
6
|
+
const eapi_soucefile_operation_1 = require("./eapi-soucefile-operation");
|
|
7
|
+
const frm_sourcefile_operation_1 = require("./frm-sourcefile-operation");
|
|
8
|
+
const pageflow_sourcefile_operation_1 = require("./pageflow-sourcefile-operation");
|
|
9
|
+
const resource_sourcefile_operation_1 = require("./resource-sourcefile-operation");
|
|
10
|
+
const statemachine_sourcefile_operation_1 = require("./statemachine-sourcefile-operation");
|
|
11
|
+
const logger_helper_1 = require("../../../utility/logger/logger-helper");
|
|
12
|
+
const logger_level_1 = require("../../../utility/logger/logger-level");
|
|
13
|
+
class SourceFileOperationFactory {
|
|
14
|
+
static createSourceFileOperation(operationType) {
|
|
15
|
+
let sourceFileOperation;
|
|
16
|
+
switch (operationType) {
|
|
17
|
+
case sourcefile_operation_type_1.SourceFileOperationType.Command:
|
|
18
|
+
sourceFileOperation = new command_sourcefile_operation_1.CommandSourceFileOperation();
|
|
19
|
+
break;
|
|
20
|
+
case sourcefile_operation_type_1.SourceFileOperationType.Eapi:
|
|
21
|
+
sourceFileOperation = new eapi_soucefile_operation_1.EapiSourceFileOperation();
|
|
22
|
+
break;
|
|
23
|
+
case sourcefile_operation_type_1.SourceFileOperationType.Frm:
|
|
24
|
+
sourceFileOperation = new frm_sourcefile_operation_1.FrmSourceFileOperation();
|
|
25
|
+
break;
|
|
26
|
+
case sourcefile_operation_type_1.SourceFileOperationType.PageFlow:
|
|
27
|
+
sourceFileOperation = new pageflow_sourcefile_operation_1.PageFlowSourceFileOperation();
|
|
28
|
+
break;
|
|
29
|
+
case sourcefile_operation_type_1.SourceFileOperationType.Resource:
|
|
30
|
+
sourceFileOperation = new resource_sourcefile_operation_1.ResourceSourceFileOPeration();
|
|
31
|
+
break;
|
|
32
|
+
case sourcefile_operation_type_1.SourceFileOperationType.StateMachine:
|
|
33
|
+
sourceFileOperation = new statemachine_sourcefile_operation_1.StateMachineSourceFileOperation();
|
|
34
|
+
break;
|
|
35
|
+
default:
|
|
36
|
+
logger_helper_1.LoggerHelper.log(`unknown sourcefile operation type, the type is ${operationType}`, logger_level_1.LoggerLevel.Warning);
|
|
37
|
+
break;
|
|
38
|
+
}
|
|
39
|
+
return sourceFileOperation;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
exports.SourceFileOperationFactory = SourceFileOperationFactory;
|
|
43
43
|
//# sourceMappingURL=sourcefile-operation-factory.js.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SourceFileOperationManagerParameter = void 0;
|
|
4
|
-
class SourceFileOperationManagerParameter {
|
|
5
|
-
static create(filePath, fileName, operationType) {
|
|
6
|
-
const newInstance = new SourceFileOperationManagerParameter();
|
|
7
|
-
newInstance.fileName = fileName;
|
|
8
|
-
newInstance.filePath = filePath;
|
|
9
|
-
newInstance.operationType = operationType;
|
|
10
|
-
return newInstance;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
exports.SourceFileOperationManagerParameter = SourceFileOperationManagerParameter;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SourceFileOperationManagerParameter = void 0;
|
|
4
|
+
class SourceFileOperationManagerParameter {
|
|
5
|
+
static create(filePath, fileName, operationType) {
|
|
6
|
+
const newInstance = new SourceFileOperationManagerParameter();
|
|
7
|
+
newInstance.fileName = fileName;
|
|
8
|
+
newInstance.filePath = filePath;
|
|
9
|
+
newInstance.operationType = operationType;
|
|
10
|
+
return newInstance;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
exports.SourceFileOperationManagerParameter = SourceFileOperationManagerParameter;
|
|
14
14
|
//# sourceMappingURL=sourcefile-operation-manager-parameter.js.map
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SourceFileOperationManager = void 0;
|
|
4
|
-
const sourcefile_operation_options_1 = require("./sourcefile-operation-options");
|
|
5
|
-
const sourcefile_operation_factory_1 = require("./sourcefile-operation-factory");
|
|
6
|
-
const utility_1 = require("../../../utility");
|
|
7
|
-
class SourceFileOperationManager {
|
|
8
|
-
static readWithString(parameter) {
|
|
9
|
-
return this.read(parameter);
|
|
10
|
-
}
|
|
11
|
-
static readWithJsonFormat(parameter) {
|
|
12
|
-
const fileContent = this.readWithString(parameter);
|
|
13
|
-
if (fileContent) {
|
|
14
|
-
const result = utility_1.ToolHelper.convertToJSON(fileContent);
|
|
15
|
-
return result;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
static read(parameter) {
|
|
19
|
-
const sourceFileOperationInstance = sourcefile_operation_factory_1.SourceFileOperationFactory.createSourceFileOperation(parameter.operationType);
|
|
20
|
-
if (sourceFileOperationInstance) {
|
|
21
|
-
const options = sourcefile_operation_options_1.SourceFileOperationOptions.create();
|
|
22
|
-
const result = sourceFileOperationInstance.readWithFileNameButNoneExtension(parameter.filePath, parameter.fileName, options);
|
|
23
|
-
if (result) {
|
|
24
|
-
return result.content;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
exports.SourceFileOperationManager = SourceFileOperationManager;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SourceFileOperationManager = void 0;
|
|
4
|
+
const sourcefile_operation_options_1 = require("./sourcefile-operation-options");
|
|
5
|
+
const sourcefile_operation_factory_1 = require("./sourcefile-operation-factory");
|
|
6
|
+
const utility_1 = require("../../../utility");
|
|
7
|
+
class SourceFileOperationManager {
|
|
8
|
+
static readWithString(parameter) {
|
|
9
|
+
return this.read(parameter);
|
|
10
|
+
}
|
|
11
|
+
static readWithJsonFormat(parameter) {
|
|
12
|
+
const fileContent = this.readWithString(parameter);
|
|
13
|
+
if (fileContent) {
|
|
14
|
+
const result = utility_1.ToolHelper.convertToJSON(fileContent);
|
|
15
|
+
return result;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
static read(parameter) {
|
|
19
|
+
const sourceFileOperationInstance = sourcefile_operation_factory_1.SourceFileOperationFactory.createSourceFileOperation(parameter.operationType);
|
|
20
|
+
if (sourceFileOperationInstance) {
|
|
21
|
+
const options = sourcefile_operation_options_1.SourceFileOperationOptions.create();
|
|
22
|
+
const result = sourceFileOperationInstance.readWithFileNameButNoneExtension(parameter.filePath, parameter.fileName, options);
|
|
23
|
+
if (result) {
|
|
24
|
+
return result.content;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.SourceFileOperationManager = SourceFileOperationManager;
|
|
30
30
|
//# sourceMappingURL=sourcefile-operation-manager.js.map
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SourceFileOperationOptions = void 0;
|
|
4
|
-
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
5
|
-
class SourceFileOperationOptions {
|
|
6
|
-
constructor() {
|
|
7
|
-
this.encoding = jit_constant_1.JITConstant.UTF8FileEncoding;
|
|
8
|
-
}
|
|
9
|
-
static create(fileNotExistsMessage, encoding = jit_constant_1.JITConstant.UTF8FileEncoding) {
|
|
10
|
-
const options = new SourceFileOperationOptions();
|
|
11
|
-
options.encoding = encoding;
|
|
12
|
-
options.fileNotExistsMessage = fileNotExistsMessage;
|
|
13
|
-
return options;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
exports.SourceFileOperationOptions = SourceFileOperationOptions;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SourceFileOperationOptions = void 0;
|
|
4
|
+
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
5
|
+
class SourceFileOperationOptions {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.encoding = jit_constant_1.JITConstant.UTF8FileEncoding;
|
|
8
|
+
}
|
|
9
|
+
static create(fileNotExistsMessage, encoding = jit_constant_1.JITConstant.UTF8FileEncoding) {
|
|
10
|
+
const options = new SourceFileOperationOptions();
|
|
11
|
+
options.encoding = encoding;
|
|
12
|
+
options.fileNotExistsMessage = fileNotExistsMessage;
|
|
13
|
+
return options;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.SourceFileOperationOptions = SourceFileOperationOptions;
|
|
17
17
|
//# sourceMappingURL=sourcefile-operation-options.js.map
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SourceFileOperationResponse = void 0;
|
|
4
|
-
class SourceFileOperationResponse {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.success = true;
|
|
7
|
-
}
|
|
8
|
-
static getNewEmptyInstance() {
|
|
9
|
-
const instance = new SourceFileOperationResponse();
|
|
10
|
-
instance.success = true;
|
|
11
|
-
return instance;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
exports.SourceFileOperationResponse = SourceFileOperationResponse;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SourceFileOperationResponse = void 0;
|
|
4
|
+
class SourceFileOperationResponse {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.success = true;
|
|
7
|
+
}
|
|
8
|
+
static getNewEmptyInstance() {
|
|
9
|
+
const instance = new SourceFileOperationResponse();
|
|
10
|
+
instance.success = true;
|
|
11
|
+
return instance;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
exports.SourceFileOperationResponse = SourceFileOperationResponse;
|
|
15
15
|
//# sourceMappingURL=sourcefile-operation-response.js.map
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SourceFileOperationType = void 0;
|
|
4
|
-
var SourceFileOperationType;
|
|
5
|
-
(function (SourceFileOperationType) {
|
|
6
|
-
SourceFileOperationType[SourceFileOperationType["StateMachine"] = 0] = "StateMachine";
|
|
7
|
-
SourceFileOperationType[SourceFileOperationType["Command"] = 1] = "Command";
|
|
8
|
-
SourceFileOperationType[SourceFileOperationType["Eapi"] = 2] = "Eapi";
|
|
9
|
-
SourceFileOperationType[SourceFileOperationType["PageFlow"] = 3] = "PageFlow";
|
|
10
|
-
SourceFileOperationType[SourceFileOperationType["Resource"] = 4] = "Resource";
|
|
11
|
-
SourceFileOperationType[SourceFileOperationType["Frm"] = 5] = "Frm";
|
|
12
|
-
})(SourceFileOperationType = exports.SourceFileOperationType || (exports.SourceFileOperationType = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SourceFileOperationType = void 0;
|
|
4
|
+
var SourceFileOperationType;
|
|
5
|
+
(function (SourceFileOperationType) {
|
|
6
|
+
SourceFileOperationType[SourceFileOperationType["StateMachine"] = 0] = "StateMachine";
|
|
7
|
+
SourceFileOperationType[SourceFileOperationType["Command"] = 1] = "Command";
|
|
8
|
+
SourceFileOperationType[SourceFileOperationType["Eapi"] = 2] = "Eapi";
|
|
9
|
+
SourceFileOperationType[SourceFileOperationType["PageFlow"] = 3] = "PageFlow";
|
|
10
|
+
SourceFileOperationType[SourceFileOperationType["Resource"] = 4] = "Resource";
|
|
11
|
+
SourceFileOperationType[SourceFileOperationType["Frm"] = 5] = "Frm";
|
|
12
|
+
})(SourceFileOperationType = exports.SourceFileOperationType || (exports.SourceFileOperationType = {}));
|
|
13
13
|
//# sourceMappingURL=sourcefile-operation-type.js.map
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StateMachineSourceFileOperation = void 0;
|
|
4
|
-
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
-
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
6
|
-
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
7
|
-
class StateMachineSourceFileOperation extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
8
|
-
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
9
|
-
const smJsonFileName = fileNameWithoutExtension + jit_constant_1.JITConstant.FormSMJsonExtension;
|
|
10
|
-
const filePath = toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, smJsonFileName);
|
|
11
|
-
const defaultFileOperationOptions = this.getDefaultFileOperationOptions(`the state machine file is not exists,the file is ${filePath}`);
|
|
12
|
-
return super.readWithFileName(fileBasePath, smJsonFileName, defaultFileOperationOptions);
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
exports.StateMachineSourceFileOperation = StateMachineSourceFileOperation;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StateMachineSourceFileOperation = void 0;
|
|
4
|
+
const abstract_sourcefile_operation_1 = require("./abstract-sourcefile-operation");
|
|
5
|
+
const jit_constant_1 = require("../../../utility/jit-constant");
|
|
6
|
+
const toolhepler_1 = require("../../../utility/toolhepler");
|
|
7
|
+
class StateMachineSourceFileOperation extends abstract_sourcefile_operation_1.AbstractSourceFileOperation {
|
|
8
|
+
readWithFileNameButNoneExtension(fileBasePath, fileNameWithoutExtension, options) {
|
|
9
|
+
const smJsonFileName = fileNameWithoutExtension + jit_constant_1.JITConstant.FormSMJsonExtension;
|
|
10
|
+
const filePath = toolhepler_1.ToolHelper.pathJoinAndnormalize(fileBasePath, smJsonFileName);
|
|
11
|
+
const defaultFileOperationOptions = this.getDefaultFileOperationOptions(`the state machine file is not exists,the file is ${filePath}`);
|
|
12
|
+
return super.readWithFileName(fileBasePath, smJsonFileName, defaultFileOperationOptions);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
exports.StateMachineSourceFileOperation = StateMachineSourceFileOperation;
|
|
16
16
|
//# sourceMappingURL=statemachine-sourcefile-operation.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
root = true
|
|
2
|
-
|
|
3
|
-
[*]
|
|
4
|
-
charset = utf-8
|
|
5
|
-
indent_style = space
|
|
6
|
-
indent_size = 2
|
|
7
|
-
end_of_line = lf
|
|
8
|
-
insert_final_newline = true
|
|
9
|
-
trim_trailing_whitespace = true
|
|
1
|
+
root = true
|
|
2
|
+
|
|
3
|
+
[*]
|
|
4
|
+
charset = utf-8
|
|
5
|
+
indent_style = space
|
|
6
|
+
indent_size = 2
|
|
7
|
+
end_of_line = lf
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
{
|
|
2
|
-
"semi": true,
|
|
3
|
-
"trailingComma": "all",
|
|
4
|
-
"singleQuote": true,
|
|
5
|
-
"printWidth": 120,
|
|
6
|
-
"tabWidth": 2
|
|
1
|
+
{
|
|
2
|
+
"semi": true,
|
|
3
|
+
"trailingComma": "all",
|
|
4
|
+
"singleQuote": true,
|
|
5
|
+
"printWidth": 120,
|
|
6
|
+
"tabWidth": 2
|
|
7
7
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
# demo-rollup
|
|
2
|
-
|
|
3
|
-
> A Vue.js project
|
|
4
|
-
|
|
5
|
-
## Build Setup
|
|
6
|
-
|
|
7
|
-
``` bash
|
|
8
|
-
# install dependencies
|
|
9
|
-
npm install
|
|
10
|
-
|
|
11
|
-
# serve with hot reload at localhost:8080
|
|
12
|
-
npm run dev
|
|
13
|
-
|
|
14
|
-
# build for production with minification
|
|
15
|
-
npm run build
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|
|
1
|
+
# demo-rollup
|
|
2
|
+
|
|
3
|
+
> A Vue.js project
|
|
4
|
+
|
|
5
|
+
## Build Setup
|
|
6
|
+
|
|
7
|
+
``` bash
|
|
8
|
+
# install dependencies
|
|
9
|
+
npm install
|
|
10
|
+
|
|
11
|
+
# serve with hot reload at localhost:8080
|
|
12
|
+
npm run dev
|
|
13
|
+
|
|
14
|
+
# build for production with minification
|
|
15
|
+
npm run build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
presets: [
|
|
3
|
-
[
|
|
4
|
-
'@babel/env',
|
|
5
|
-
{
|
|
6
|
-
targets: '> 0.25%, not dead',
|
|
7
|
-
modules: false,
|
|
8
|
-
loose: true,
|
|
9
|
-
},
|
|
10
|
-
],
|
|
11
|
-
'@babel/typescript',
|
|
12
|
-
],
|
|
13
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
presets: [
|
|
3
|
+
[
|
|
4
|
+
'@babel/env',
|
|
5
|
+
{
|
|
6
|
+
targets: '> 0.25%, not dead',
|
|
7
|
+
modules: false,
|
|
8
|
+
loose: true,
|
|
9
|
+
},
|
|
10
|
+
],
|
|
11
|
+
'@babel/typescript',
|
|
12
|
+
],
|
|
13
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
<template>
|
|
3
|
-
<router-view/>
|
|
4
|
-
</template>
|
|
5
|
-
|
|
6
|
-
<style>
|
|
7
|
-
</style>
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<router-view/>
|
|
4
|
+
</template>
|
|
5
|
+
|
|
6
|
+
<style>
|
|
7
|
+
</style>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { AppCreator } from '@farris/mobile-vue-adapter';
|
|
2
|
-
import vant from "vant";
|
|
3
|
-
import App from './app.vue'
|
|
4
|
-
import router from './router'
|
|
5
|
-
import FarrisMobileUI from '@farris/mobile-ui';
|
|
6
|
-
import FarrisMobileBusinessUI from '@farris/mobile-business-ui';
|
|
7
|
-
|
|
8
|
-
const app = AppCreator.createApp(App);
|
|
9
|
-
app.use(router).use(vant).use(FarrisMobileUI).use(FarrisMobileBusinessUI)
|
|
1
|
+
import { AppCreator } from '@farris/mobile-vue-adapter';
|
|
2
|
+
import vant from "vant";
|
|
3
|
+
import App from './app.vue'
|
|
4
|
+
import router from './router'
|
|
5
|
+
import FarrisMobileUI from '@farris/mobile-ui';
|
|
6
|
+
import FarrisMobileBusinessUI from '@farris/mobile-business-ui';
|
|
7
|
+
|
|
8
|
+
const app = AppCreator.createApp(App);
|
|
9
|
+
app.use(router).use(vant).use(FarrisMobileUI).use(FarrisMobileBusinessUI)
|
|
10
10
|
app.mount('#app')
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare module '*.vue' {
|
|
4
|
-
import { defineComponent } from 'vue'
|
|
5
|
-
const component: ReturnType<typeof defineComponent>
|
|
6
|
-
export default component
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
declare module 'vue/types/vue' {
|
|
10
|
-
import { App, AppOptions, ViewModel, ViewModelOptions } from '@farris/mobile-devkit';
|
|
11
|
-
|
|
12
|
-
interface Vue {
|
|
13
|
-
|
|
14
|
-
$app: App;
|
|
15
|
-
|
|
16
|
-
$viewModel: ViewModel;
|
|
17
|
-
|
|
18
|
-
$createApp(options: AppOptions): void;
|
|
19
|
-
|
|
20
|
-
$getApp(): App;
|
|
21
|
-
|
|
22
|
-
$createViewModel(options: ViewModelOptions): void;
|
|
23
|
-
|
|
24
|
-
$getViewModel(): ViewModel;
|
|
25
|
-
|
|
26
|
-
[key: string]:any;
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
declare module '*.vue' {
|
|
4
|
+
import { defineComponent } from 'vue'
|
|
5
|
+
const component: ReturnType<typeof defineComponent>
|
|
6
|
+
export default component
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
declare module 'vue/types/vue' {
|
|
10
|
+
import { App, AppOptions, ViewModel, ViewModelOptions } from '@farris/mobile-devkit';
|
|
11
|
+
|
|
12
|
+
interface Vue {
|
|
13
|
+
|
|
14
|
+
$app: App;
|
|
15
|
+
|
|
16
|
+
$viewModel: ViewModel;
|
|
17
|
+
|
|
18
|
+
$createApp(options: AppOptions): void;
|
|
19
|
+
|
|
20
|
+
$getApp(): App;
|
|
21
|
+
|
|
22
|
+
$createViewModel(options: ViewModelOptions): void;
|
|
23
|
+
|
|
24
|
+
$getViewModel(): ViewModel;
|
|
25
|
+
|
|
26
|
+
[key: string]:any;
|
|
27
|
+
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|