@gct-paas/core 0.1.4-dev.8 → 0.1.5-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.min.js +1 -0
- package/es/constants/core.mjs +5 -4
- package/es/constants/default-date-type/default-date-type.d.ts +70 -0
- package/es/constants/default-date-type/default-date-type.mjs +74 -0
- package/es/constants/editor-register/editor-register.mjs +17 -5
- package/es/constants/expression-type/BuiltOperators.d.ts +20 -0
- package/es/constants/expression-type/BuiltOperators.mjs +156 -0
- package/es/constants/expression-type/FunctionKeys.d.ts +1 -0
- package/es/constants/expression-type/FunctionKeys.mjs +77 -0
- package/es/constants/expression-type/editor.d.ts +8 -0
- package/es/constants/expression-type/editor.mjs +11 -0
- package/es/constants/expression-type/function.d.ts +7 -0
- package/es/constants/expression-type/function.mjs +864 -0
- package/es/constants/expression-type/index.d.ts +42 -0
- package/es/constants/expression-type/index.mjs +118 -0
- package/es/constants/expression-type/modeCfg.d.ts +30 -0
- package/es/constants/expression-type/modeCfg.mjs +261 -0
- package/es/constants/expression-type/variable.d.ts +12 -0
- package/es/constants/expression-type/variable.mjs +46 -0
- package/es/constants/form-container-type/form-container-type.mjs +17 -5
- package/es/constants/index.d.ts +8 -1
- package/es/constants/index.mjs +32 -5
- package/es/constants/page-designer/model.d.ts +4 -0
- package/es/constants/page-designer/model.mjs +17 -0
- package/es/constants/page-designer/regex.d.ts +2 -0
- package/es/constants/page-designer/regex.mjs +5 -0
- package/es/create-app-vue.mjs +15 -16
- package/es/enums/app-designer/index.d.ts +19 -0
- package/es/enums/app-designer/index.mjs +131 -63
- package/es/enums/appEnum.d.ts +5 -0
- package/es/enums/appEnum.mjs +682 -356
- package/es/enums/appStateEnum.mjs +17 -10
- package/es/enums/authActionEnum.mjs +63 -51
- package/es/enums/breakpointEnum.mjs +27 -26
- package/es/enums/cacheEnum.d.ts +0 -1
- package/es/enums/cacheEnum.mjs +22 -22
- package/es/enums/designEnum.d.ts +9 -3
- package/es/enums/designEnum.mjs +111 -69
- package/es/enums/developer-center/index.d.ts +1 -0
- package/es/enums/developer-center/integration.d.ts +4 -0
- package/es/enums/developer-center/integration.mjs +8 -0
- package/es/enums/exceptionEnum.mjs +21 -17
- package/es/enums/expressionEnum.d.ts +130 -0
- package/es/enums/expressionEnum.mjs +82 -0
- package/es/enums/globalEnum.d.ts +15 -0
- package/es/enums/globalEnum.mjs +60 -25
- package/es/enums/httpEnum.mjs +71 -61
- package/es/enums/index.d.ts +11 -5
- package/es/enums/index.mjs +45 -17
- package/es/enums/menuEnum.mjs +42 -38
- package/es/enums/page-designer/designer.d.ts +7 -8
- package/es/enums/page-designer/designer.mjs +404 -403
- package/es/enums/page-designer/index.d.ts +1 -0
- package/es/enums/page-designer/index.mjs +5 -0
- package/es/enums/page-designer/layout.d.ts +12 -0
- package/es/enums/page-designer/layout.mjs +17 -0
- package/es/enums/page-designer/panel.d.ts +78 -7
- package/es/enums/page-designer/panel.mjs +342 -195
- package/es/enums/page-designer/toolkit.mjs +13 -12
- package/es/enums/page-designer/widget.d.ts +5 -0
- package/es/enums/page-designer/widget.mjs +426 -334
- package/es/enums/pageEnum.mjs +14 -13
- package/es/enums/plugin-enum.d.ts +8 -4
- package/es/enums/plugin-enum.mjs +27 -7
- package/es/enums/processEnum.d.ts +54 -0
- package/es/enums/processEnum.mjs +96 -26
- package/es/enums/roleEnum.mjs +7 -6
- package/es/enums/sizeEnum.d.ts +18 -0
- package/es/enums/sizeEnum.mjs +28 -8
- package/es/global/gct/gct.d.ts +245 -13
- package/es/global/gct/gct.mjs +98 -95
- package/es/global/index.mjs +1 -0
- package/es/hooks/index.d.ts +0 -3
- package/es/hooks/index.mjs +4 -0
- package/es/hooks/use-app-inst/use-app-inst.mjs +11 -5
- package/es/hooks/use-modal/use-modal.mjs +16 -10
- package/es/hooks/use-sub-app-utils/use-sub-app-utils.d.ts +8 -12
- package/es/hooks/use-sub-app-utils/use-sub-app-utils.mjs +45 -25
- package/es/hooks/useCopyToClipboard.mjs +50 -50
- package/es/index.d.ts +2 -10
- package/es/index.mjs +130 -119
- package/es/interface/i-dictionary/i-dictionary-item.d.ts +6 -0
- package/es/interface/i-global-register/i-global-register.d.ts +8 -0
- package/es/interface/i-kit-info/i-kit-info.d.ts +20 -0
- package/es/interface/i-pinia-action/i-global-actions.d.ts +4 -6
- package/es/interface/i-pinia-getter/i-global-getters.d.ts +2 -0
- package/es/interface/i-pinia-state/i-global-state.d.ts +12 -12
- package/es/interface/index.d.ts +5 -10
- package/es/interface/model-designer/entity.d.ts +110 -0
- package/es/interface/open-util/i-message-util/i-message-util.d.ts +54 -0
- package/es/interface/{i-modal → open-util/i-modal}/i-modal.d.ts +9 -10
- package/es/interface/{i-modal-data → open-util/i-modal-data}/i-modal-data.d.ts +6 -0
- package/es/interface/open-util/i-modal-options/i-modal-options.d.ts +12 -0
- package/es/interface/open-util/i-overlay-container/i-overlay-container.d.ts +36 -0
- package/es/interface/open-util/i-overlay-controller/i-overlay-controller.d.ts +36 -0
- package/es/interface/open-util/index.d.ts +7 -0
- package/es/interface/provider/index.d.ts +0 -2
- package/es/locale/index.d.ts +11 -3
- package/es/locale/index.mjs +75 -56
- package/es/modules/env-manager/env-manager.const.mjs +16 -8
- package/es/modules/env-manager/env-manager.d.ts +2 -0
- package/es/modules/env-manager/env-manager.interface.d.ts +2 -0
- package/es/modules/env-manager/env-manager.interface.mjs +14 -7
- package/es/modules/env-manager/env-manager.mjs +108 -107
- package/es/modules/error-handler/error-handler.const.mjs +11 -16
- package/es/modules/error-handler/error-strategy.mjs +199 -175
- package/es/modules/error-handler/index.mjs +120 -106
- package/es/modules/mqtt/constants/mqtt.const.d.ts +33 -0
- package/es/modules/mqtt/constants/mqtt.const.mjs +24 -0
- package/es/modules/mqtt/enums/mqtt-status.enum.d.ts +20 -0
- package/es/modules/mqtt/enums/mqtt-status.enum.mjs +24 -0
- package/es/modules/mqtt/index.d.ts +5 -0
- package/es/modules/mqtt/index.mjs +4 -0
- package/es/modules/mqtt/interfaces/i-mqtt.d.ts +139 -0
- package/es/modules/mqtt/mqtt-client.d.ts +117 -0
- package/es/modules/mqtt/mqtt-client.mjs +229 -0
- package/es/modules/mqtt/mqtt-manager.d.ts +87 -0
- package/es/modules/mqtt/mqtt-manager.mjs +118 -0
- package/es/modules/platform-config/constants/index.mjs +4 -0
- package/es/modules/platform-config/constants/login.const.mjs +48 -45
- package/es/modules/platform-config/constants/org.const.mjs +57 -52
- package/es/modules/platform-config/constants/theme.const.mjs +11 -4
- package/es/modules/platform-config/constants/watermark.const.mjs +17 -12
- package/es/modules/platform-config/enums/deploy.enum.mjs +13 -6
- package/es/modules/platform-config/enums/login.enum.mjs +29 -15
- package/es/modules/platform-config/enums/platform.enum.d.ts +0 -15
- package/es/modules/platform-config/enums/platform.enum.mjs +17 -26
- package/es/modules/platform-config/index.d.ts +1 -1
- package/es/modules/platform-config/index.mjs +9 -0
- package/es/modules/platform-config/interfaces/index.d.ts +0 -1
- package/es/modules/platform-config/store.d.ts +5 -1
- package/es/modules/platform-config/store.mjs +68 -76
- package/es/modules/platform-config/useBasicSetting.mjs +47 -35
- package/es/modules/platform-config/useDeploySetting.mjs +29 -21
- package/es/modules/platform-config/useLoginSetting.mjs +151 -173
- package/es/modules/platform-config/useOrgSetting.mjs +63 -62
- package/es/modules/platform-config/useProjectSetting.mjs +14 -6
- package/es/modules/platform-config/useSecuritySetting.d.ts +1 -0
- package/es/modules/platform-config/useSecuritySetting.mjs +81 -56
- package/es/modules/platform-config/useThemeSetting.mjs +78 -59
- package/es/modules/platform-config/useWatermarkSetting.mjs +37 -23
- package/es/modules/user-stores/index.mjs +3 -0
- package/es/modules/user-stores/store/permission.store.mjs +27 -36
- package/es/modules/user-stores/store/tenant.store.mjs +20 -22
- package/es/modules/user-stores/store/user.store.d.ts +149 -1
- package/es/modules/user-stores/store/user.store.mjs +97 -94
- package/es/modules/user-stores/types/user.d.ts +1 -0
- package/es/router/index.mjs +25 -28
- package/es/setup-app.d.ts +8 -0
- package/es/setup-app.mjs +24 -0
- package/es/state/global-pinia-state/global-pinia-state.d.ts +15 -7
- package/es/state/global-pinia-state/global-pinia-state.mjs +43 -57
- package/es/state/index.d.ts +0 -9
- package/es/state/index.mjs +1 -0
- package/es/store/global-store.mjs +44 -51
- package/es/store/index.d.ts +8 -0
- package/es/store/index.mjs +35 -19
- package/es/store/storage-store.d.ts +9 -0
- package/es/store/storage-store.mjs +10 -0
- package/es/types/index.d.ts +22 -0
- package/es/utils/axios/interceptors.mjs +22 -18
- package/es/utils/cache-adapter/cache-adapter.d.ts +2 -0
- package/es/utils/cache-adapter/cache-adapter.mjs +64 -0
- package/es/utils/css-loader/css-loader.d.ts +36 -0
- package/es/utils/css-loader/css-loader.mjs +82 -0
- package/es/utils/design/design.d.ts +11 -0
- package/es/utils/design/design.mjs +21 -0
- package/es/utils/deviceFingerprint.mjs +77 -63
- package/es/utils/dictionary/dictionary.mjs +142 -145
- package/es/utils/file/base64Conver.d.ts +9 -0
- package/es/utils/file/base64Conver.mjs +40 -0
- package/es/utils/file/download.d.ts +44 -0
- package/es/utils/file/download.mjs +101 -0
- package/es/utils/file/parser.d.ts +3 -0
- package/es/utils/file/parser.mjs +29 -0
- package/es/utils/i18n/index.mjs +14 -3
- package/es/utils/index.d.ts +20 -5
- package/es/utils/index.mjs +34 -0
- package/es/utils/is-sort-filed/is-sort-filed.d.ts +10 -0
- package/es/utils/is-sort-filed/is-sort-filed.mjs +45 -0
- package/es/utils/kit-pkg-util/kit-pkg-util.d.ts +32 -0
- package/es/utils/kit-pkg-util/kit-pkg-util.mjs +73 -0
- package/es/utils/linked-list/linked-list.mjs +115 -118
- package/es/utils/linked-node/linked-node.mjs +41 -31
- package/es/utils/lowcode/utils.d.ts +1 -0
- package/es/utils/lowcode/utils.mjs +15 -0
- package/es/utils/lowcode/validate.d.ts +13 -0
- package/es/utils/lowcode/validate.mjs +23 -0
- package/es/utils/mitt/mitt.mjs +4 -4
- package/es/utils/model-loader/model-loader.mjs +288 -325
- package/es/utils/namespace/namespace.d.ts +8 -0
- package/es/utils/namespace/namespace.mjs +180 -163
- package/es/utils/openUtil/index.d.ts +2 -0
- package/es/utils/openUtil/index.mjs +2 -0
- package/es/utils/openUtil/modal/modal.d.ts +61 -0
- package/es/utils/openUtil/modal/modal.mjs +73 -0
- package/es/utils/openUtil/overlay-container/overlay-container.d.ts +100 -0
- package/es/utils/openUtil/overlay-container/overlay-container.mjs +145 -0
- package/es/utils/permission.d.ts +19 -0
- package/es/utils/permission.mjs +34 -0
- package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +63 -0
- package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +119 -0
- package/es/utils/plugin-static-resource/plugin-static-resource.d.ts +2 -27
- package/es/utils/plugin-static-resource/plugin-static-resource.mjs +19 -42
- package/es/utils/style/index.mjs +94 -138
- package/es/utils/tools/tools.d.ts +12 -10
- package/es/utils/tools/tools.mjs +128 -53
- package/es/utils/treeHelper/treeHelper.d.ts +10 -9
- package/es/utils/treeHelper/treeHelper.mjs +205 -219
- package/es/utils/uploader/uploader.d.ts +20 -0
- package/es/utils/uploader/uploader.mjs +86 -0
- package/es/utils/useUUid.d.ts +41 -0
- package/es/utils/useUUid.mjs +85 -0
- package/es/utils/util.mjs +55 -35
- package/es/utils/uuid/uuid.d.ts +5 -0
- package/es/utils/uuid/uuid.mjs +38 -0
- package/es/utils/validate.d.ts +5 -0
- package/es/utils/validate.mjs +21 -0
- package/es/utils/value-helper/value-helper.mjs +113 -96
- package/package.json +19 -27
- package/dist/index.esm.min.mjs +0 -6103
- package/dist/index.min.cjs +0 -14
- package/dist/index.system.min.js +0 -14
- package/es/constants/editor-type/editor-type.d.ts +0 -244
- package/es/constants/editor-type/editor-type.mjs +0 -63
- package/es/controller/edit-form/edit-form.controller.d.ts +0 -28
- package/es/controller/edit-form/edit-form.controller.mjs +0 -47
- package/es/controller/editor/color-editor.controller.d.ts +0 -13
- package/es/controller/editor/color-editor.controller.mjs +0 -6
- package/es/controller/editor/length-unit-editor.controller.d.ts +0 -13
- package/es/controller/editor/length-unit-editor.controller.mjs +0 -6
- package/es/controller/editor-item/editor-item.controller.d.ts +0 -14
- package/es/controller/editor-item/editor-item.controller.mjs +0 -8
- package/es/controller/form/form.controller.d.ts +0 -76
- package/es/controller/form/form.controller.mjs +0 -147
- package/es/controller/form-collapse/form-collapse.controller.d.ts +0 -18
- package/es/controller/form-collapse/form-collapse.controller.mjs +0 -14
- package/es/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +0 -18
- package/es/controller/form-collapse-pane/form-collapse-pane.controller.mjs +0 -14
- package/es/controller/form-edit-item/form-edit-item.controller.d.ts +0 -27
- package/es/controller/form-edit-item/form-edit-item.controller.mjs +0 -74
- package/es/controller/form-group/form-group.controller.d.ts +0 -18
- package/es/controller/form-group/form-group.controller.mjs +0 -14
- package/es/controller/form-item/form-item.controller.d.ts +0 -21
- package/es/controller/form-item/form-item.controller.mjs +0 -43
- package/es/controller/form-item-basic/form-item-basic.controller.d.ts +0 -57
- package/es/controller/form-item-basic/form-item-basic.controller.mjs +0 -49
- package/es/controller/form-item-hidden/form-item-hidden.controller.d.ts +0 -17
- package/es/controller/form-item-hidden/form-item-hidden.controller.mjs +0 -7
- package/es/controller/form-tab/form-tab.controller.d.ts +0 -18
- package/es/controller/form-tab/form-tab.controller.mjs +0 -14
- package/es/controller/form-tab-pane/form-tab-pane.controller.d.ts +0 -18
- package/es/controller/form-tab-pane/form-tab-pane.controller.mjs +0 -14
- package/es/controller/gct-form/gct-form.controller.d.ts +0 -101
- package/es/controller/gct-form/gct-form.controller.mjs +0 -214
- package/es/controller/index.d.ts +0 -15
- package/es/hooks/use-form/use-form.d.ts +0 -10
- package/es/hooks/use-form/use-form.mjs +0 -8
- package/es/hooks/use-gct-form-value/use-gct-form-value.d.ts +0 -22
- package/es/hooks/use-gct-form-value/use-gct-form-value.mjs +0 -89
- package/es/hooks/use-namespace/use-namespace.d.ts +0 -9
- package/es/hooks/use-namespace/use-namespace.mjs +0 -18
- package/es/interface/controller/edit-form/edit-form.controller.d.ts +0 -26
- package/es/interface/controller/editor/i-color-editor.controller.d.ts +0 -11
- package/es/interface/controller/editor/i-length-unit-editor.controller.d.ts +0 -11
- package/es/interface/controller/editor-item/editor-item.controller.d.ts +0 -19
- package/es/interface/controller/form/form.controller.d.ts +0 -121
- package/es/interface/controller/form-collapse/form-collapse.controller.d.ts +0 -23
- package/es/interface/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +0 -23
- package/es/interface/controller/form-edit-item/form-edit-item.controller.d.ts +0 -59
- package/es/interface/controller/form-group/form-group.controller.d.ts +0 -24
- package/es/interface/controller/form-hidden-item/form-hidden-item.controller.d.ts +0 -24
- package/es/interface/controller/form-item/form-item.controller.d.ts +0 -40
- package/es/interface/controller/form-item-basic/form-item-basic.controller.d.ts +0 -51
- package/es/interface/controller/form-tab/form-tab.controller.d.ts +0 -23
- package/es/interface/controller/form-tab-pane/form-tab-pane.controller.d.ts +0 -23
- package/es/interface/controller/index.d.ts +0 -14
- package/es/interface/events/form/i-form.event.d.ts +0 -11
- package/es/interface/events/index.d.ts +0 -1
- package/es/interface/form/i-editor/i-check-switch.d.ts +0 -29
- package/es/interface/form/i-editor/i-checkbox-editor.d.ts +0 -9
- package/es/interface/form/i-editor/i-color-editor.d.ts +0 -13
- package/es/interface/form/i-editor/i-editor-basic.d.ts +0 -87
- package/es/interface/form/i-editor/i-icon-select-editor.d.ts +0 -21
- package/es/interface/form/i-editor/i-info-editor.d.ts +0 -21
- package/es/interface/form/i-editor/i-length-unit-editor.d.ts +0 -13
- package/es/interface/form/i-editor/i-model-field-select-editor.d.ts +0 -18
- package/es/interface/form/i-editor/i-number-editor.d.ts +0 -21
- package/es/interface/form/i-editor/i-picker-editor.d.ts +0 -30
- package/es/interface/form/i-editor/i-radio-editor.d.ts +0 -21
- package/es/interface/form/i-editor/i-select-editor.d.ts +0 -14
- package/es/interface/form/i-editor/i-span-editor.d.ts +0 -30
- package/es/interface/form/i-editor/i-switch-editor.d.ts +0 -14
- package/es/interface/form/i-editor/i-text-editor.d.ts +0 -46
- package/es/interface/form/i-editor/i-textarea-editor.d.ts +0 -25
- package/es/interface/form/i-form/i-edit-form.d.ts +0 -48
- package/es/interface/form/i-form/i-form-collapse-pane.d.ts +0 -30
- package/es/interface/form/i-form/i-form-collapse.d.ts +0 -35
- package/es/interface/form/i-form/i-form-container.d.ts +0 -53
- package/es/interface/form/i-form/i-form-edit-item.d.ts +0 -140
- package/es/interface/form/i-form/i-form-group-container.d.ts +0 -24
- package/es/interface/form/i-form/i-form-group.d.ts +0 -35
- package/es/interface/form/i-form/i-form-hidden-item.d.ts +0 -11
- package/es/interface/form/i-form/i-form-item-basic.d.ts +0 -126
- package/es/interface/form/i-form/i-form-item.d.ts +0 -11
- package/es/interface/form/i-form/i-form-tab-pane.d.ts +0 -23
- package/es/interface/form/i-form/i-form-tab.d.ts +0 -21
- package/es/interface/form/i-form/i-form.d.ts +0 -79
- package/es/interface/form/index.d.ts +0 -29
- package/es/interface/i-message-util/i-message-util.d.ts +0 -78
- package/es/interface/layout/i-flex-layout/i-flex-container.d.ts +0 -75
- package/es/interface/layout/i-flex-layout/i-flex-item.d.ts +0 -51
- package/es/interface/layout/i-grid-layout/i-grid-container.d.ts +0 -29
- package/es/interface/layout/i-grid-layout/i-grid-item-span.d.ts +0 -54
- package/es/interface/layout/i-grid-layout/i-grid-item.d.ts +0 -37
- package/es/interface/layout/i-layout-basis/i-layout-container-basis.d.ts +0 -11
- package/es/interface/layout/index.d.ts +0 -6
- package/es/interface/provider/i-editor-provider/i-editor-provider.d.ts +0 -24
- package/es/interface/provider/i-form-item-provider/i-form-item-provider.d.ts +0 -44
- package/es/interface/state/form/form.state.d.ts +0 -53
- package/es/interface/state/form-collapse/form-collapse.state.d.ts +0 -11
- package/es/interface/state/form-collapse-pane/form-collapse-pane.state.d.ts +0 -11
- package/es/interface/state/form-edit-item/form-edit-item.state.d.ts +0 -38
- package/es/interface/state/form-group/form-group.state.d.ts +0 -21
- package/es/interface/state/form-hidden-item/form-hidden-item.state.d.ts +0 -5
- package/es/interface/state/form-item/form-item.state.d.ts +0 -20
- package/es/interface/state/form-item-basic/form-item-basic.state.d.ts +0 -63
- package/es/interface/state/form-tab/form-tab.state.d.ts +0 -19
- package/es/interface/state/form-tab-pane/form-tab-pane.state.d.ts +0 -11
- package/es/interface/state/index.d.ts +0 -10
- package/es/modules/platform-config/interfaces/global-setting.interface.d.ts +0 -7
- package/es/register/editor-register/editor-register.d.ts +0 -49
- package/es/register/editor-register/editor-register.mjs +0 -57
- package/es/register/form-item-register/form-item-register.d.ts +0 -36
- package/es/register/form-item-register/form-item-register.mjs +0 -42
- package/es/register/index.d.ts +0 -21
- package/es/register/render-register/render-register.d.ts +0 -59
- package/es/register/render-register/render-register.mjs +0 -63
- package/es/state/form/form.state.d.ts +0 -24
- package/es/state/form/form.state.mjs +0 -16
- package/es/state/form-collapse/form-collapse.state.d.ts +0 -14
- package/es/state/form-collapse/form-collapse.state.mjs +0 -6
- package/es/state/form-collapse-pane/form-collapse-pane.state.d.ts +0 -14
- package/es/state/form-collapse-pane/form-collapse-pane.state.mjs +0 -6
- package/es/state/form-edit-item/form-edit-item.state.d.ts +0 -17
- package/es/state/form-edit-item/form-edit-item.state.mjs +0 -10
- package/es/state/form-group/form-group.state.d.ts +0 -21
- package/es/state/form-group/form-group.state.mjs +0 -14
- package/es/state/form-item/form-item.state.d.ts +0 -14
- package/es/state/form-item/form-item.state.mjs +0 -6
- package/es/state/form-item-basic/form-item-basic.state.d.ts +0 -17
- package/es/state/form-item-basic/form-item-basic.state.mjs +0 -9
- package/es/state/form-tab/form-tab.state.d.ts +0 -15
- package/es/state/form-tab/form-tab.state.mjs +0 -7
- package/es/state/form-tab-pane/form-tab-pane.state.d.ts +0 -14
- package/es/state/form-tab-pane/form-tab-pane.state.mjs +0 -6
- package/es/utils/props/gct-form-item/gct-form-item.props.d.ts +0 -63
- package/es/utils/props/gct-form-item/gct-form-item.props.mjs +0 -66
- package/es/utils/props/index.d.ts +0 -1
- package/es/utils/width-install/width-install.d.ts +0 -17
- package/es/utils/width-install/width-install.mjs +0 -19
|
@@ -1,53 +1,46 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
setProjectName(name) {
|
|
45
|
-
this.projectName = name;
|
|
46
|
-
},
|
|
47
|
-
setLang(lang) {
|
|
48
|
-
this.lang = lang;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
import { PlatformSettingEnum, nullDisplayEnum } from "../enums/globalEnum.mjs";
|
|
2
|
+
import "../enums/index.mjs";
|
|
3
|
+
import { GlobalPiniaState } from "../state/global-pinia-state/global-pinia-state.mjs";
|
|
4
|
+
import "../state/index.mjs";
|
|
5
|
+
import { parseMatrixParams } from "../utils/tools/tools.mjs";
|
|
6
|
+
import "../utils/index.mjs";
|
|
7
|
+
import { defineStore } from "pinia";
|
|
8
|
+
//#region src/store/global-store.ts
|
|
9
|
+
var useGlobalStore = defineStore("global-store", {
|
|
10
|
+
state() {
|
|
11
|
+
return new GlobalPiniaState();
|
|
12
|
+
},
|
|
13
|
+
getters: {
|
|
14
|
+
getProjectName() {
|
|
15
|
+
return this.projectName;
|
|
16
|
+
},
|
|
17
|
+
getAppInfo() {
|
|
18
|
+
return this.appInfo;
|
|
19
|
+
},
|
|
20
|
+
getEmptyDisplay() {
|
|
21
|
+
return nullDisplayEnum[this.globalSetting.emptyDisplay];
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
actions: {
|
|
25
|
+
async init() {
|
|
26
|
+
const paramStr = location.pathname.split("/")[2];
|
|
27
|
+
if (paramStr) {
|
|
28
|
+
const params = parseMatrixParams(paramStr);
|
|
29
|
+
if (params) this.context = params;
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
async loadAppInfo() {
|
|
33
|
+
this.appInfo = await _api.apaas.designerCommon.getGetApp();
|
|
34
|
+
},
|
|
35
|
+
async loadEmptySetting() {
|
|
36
|
+
const { value } = await _gct.api.apaas.basicConfig.getDetail({ configEnum: PlatformSettingEnum.GLOBAL });
|
|
37
|
+
if (!value) return;
|
|
38
|
+
Object.assign(this.globalSetting, JSON.parse(value));
|
|
39
|
+
},
|
|
40
|
+
setProjectName(name) {
|
|
41
|
+
this.projectName = name;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
51
44
|
});
|
|
52
|
-
|
|
45
|
+
//#endregion
|
|
53
46
|
export { useGlobalStore };
|
package/es/store/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { IGlobalStore } from './global-store';
|
|
2
|
+
import { IPlatformConfigStore } from '../modules/platform-config';
|
|
3
|
+
export { globalRefStorage } from './storage-store';
|
|
2
4
|
/**
|
|
3
5
|
* 全局的状态管理工具类
|
|
4
6
|
*
|
|
@@ -15,5 +17,11 @@ export declare class GlobalStoreUtil {
|
|
|
15
17
|
*
|
|
16
18
|
*/
|
|
17
19
|
readonly store: IGlobalStore;
|
|
20
|
+
/**
|
|
21
|
+
* 全局平台配置状态管理实例
|
|
22
|
+
*
|
|
23
|
+
* @type {IPlatformConfigStore}
|
|
24
|
+
*/
|
|
25
|
+
readonly platformConfigStore: IPlatformConfigStore;
|
|
18
26
|
constructor();
|
|
19
27
|
}
|
package/es/store/index.mjs
CHANGED
|
@@ -1,20 +1,36 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
import { useGlobalStore } from "./global-store.mjs";
|
|
2
|
+
import { usePlatformConfigStore } from "../modules/platform-config/store.mjs";
|
|
3
|
+
import "../modules/platform-config/index.mjs";
|
|
4
|
+
import "./storage-store.mjs";
|
|
5
|
+
import { createPinia, setActivePinia } from "pinia";
|
|
6
|
+
//#region src/store/index.ts
|
|
7
|
+
/**
|
|
8
|
+
* 全局的状态管理工具类
|
|
9
|
+
*
|
|
10
|
+
* @export
|
|
11
|
+
* @class GlobalStore
|
|
12
|
+
*/
|
|
13
|
+
var GlobalStoreUtil = class {
|
|
14
|
+
/**
|
|
15
|
+
* 全局唯一实例
|
|
16
|
+
*/
|
|
17
|
+
pinia = createPinia();
|
|
18
|
+
/**
|
|
19
|
+
* 全局状态管理实例
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
22
|
+
store;
|
|
23
|
+
/**
|
|
24
|
+
* 全局平台配置状态管理实例
|
|
25
|
+
*
|
|
26
|
+
* @type {IPlatformConfigStore}
|
|
27
|
+
*/
|
|
28
|
+
platformConfigStore;
|
|
29
|
+
constructor() {
|
|
30
|
+
setActivePinia(this.pinia);
|
|
31
|
+
this.store = useGlobalStore();
|
|
32
|
+
this.platformConfigStore = usePlatformConfigStore();
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
//#endregion
|
|
20
36
|
export { GlobalStoreUtil };
|
package/es/types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import type { GctGlobal } from '../global';
|
|
|
6
6
|
import type { ApiManage as APaasApiManage } from '@gct-paas/api/apaas';
|
|
7
7
|
import type { ApiManage as PlatformApiManage } from '@gct-paas/api/platform';
|
|
8
8
|
import type { bus } from 'wujie';
|
|
9
|
+
// import type { ModuleFederation } from '@module-federation/runtime';
|
|
9
10
|
|
|
10
11
|
/**
|
|
11
12
|
* 全局 api 对象
|
|
@@ -28,6 +29,10 @@ declare global {
|
|
|
28
29
|
* paas 平台 API 管理
|
|
29
30
|
*/
|
|
30
31
|
const _api: GlobalApi;
|
|
32
|
+
/**
|
|
33
|
+
* 模块联邦运行时对象
|
|
34
|
+
*/
|
|
35
|
+
// const _mf: ModuleFederation;
|
|
31
36
|
|
|
32
37
|
interface Window {
|
|
33
38
|
/**
|
|
@@ -50,6 +55,12 @@ declare global {
|
|
|
50
55
|
* @type {*}
|
|
51
56
|
*/
|
|
52
57
|
$wujie: { props: IObject; bus: bus };
|
|
58
|
+
/**
|
|
59
|
+
* 模块联邦运行时对象
|
|
60
|
+
*
|
|
61
|
+
* @type {ModuleFederation}
|
|
62
|
+
*/
|
|
63
|
+
// _mf: ModuleFederation;
|
|
53
64
|
}
|
|
54
65
|
|
|
55
66
|
interface ImportMetaEnv {
|
|
@@ -60,6 +71,13 @@ declare global {
|
|
|
60
71
|
};
|
|
61
72
|
}
|
|
62
73
|
|
|
74
|
+
type PartialByKeys<T, K extends keyof T> = {
|
|
75
|
+
[P in K]?: T[P];
|
|
76
|
+
} & Pick<T, Exclude<keyof T, K>>;
|
|
77
|
+
type RequiredByKeys<T, K extends keyof T> = {
|
|
78
|
+
[P in K]: T[P];
|
|
79
|
+
} & Pick<T, Exclude<keyof T, K>>;
|
|
80
|
+
|
|
63
81
|
/**
|
|
64
82
|
* 任意参数对象
|
|
65
83
|
*
|
|
@@ -142,4 +160,8 @@ declare global {
|
|
|
142
160
|
*/
|
|
143
161
|
data: T[];
|
|
144
162
|
}
|
|
163
|
+
|
|
164
|
+
type Fn<T = any, R = T> = (...arg: T[]) => R;
|
|
165
|
+
|
|
166
|
+
type PromiseFn<T = any, R = T> = (...arg: T[]) => Promise<R>;
|
|
145
167
|
}
|
|
@@ -1,21 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { getTenant, getToken } from "../tools/tools.mjs";
|
|
2
|
+
import { globalRefStorage } from "../../store/storage-store.mjs";
|
|
3
|
+
import "../../store/index.mjs";
|
|
4
|
+
import { AxiosHeaders } from "axios";
|
|
5
|
+
//#region src/utils/axios/interceptors.ts
|
|
6
|
+
/**
|
|
7
|
+
* 安装拦截器
|
|
8
|
+
*
|
|
9
|
+
* @export
|
|
10
|
+
* @param {AxiosInstance} axios
|
|
11
|
+
*/
|
|
4
12
|
function interceptors(axios) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
Timezone: getTimezone()
|
|
16
|
-
});
|
|
17
|
-
return config;
|
|
18
|
-
});
|
|
13
|
+
axios.interceptors.request.use((config) => {
|
|
14
|
+
if (!config.headers) config.headers = new AxiosHeaders();
|
|
15
|
+
Object.assign(config.headers, {
|
|
16
|
+
Token: getToken(),
|
|
17
|
+
Lang: _gct.store.lang,
|
|
18
|
+
"Tenant-Id": getTenant(),
|
|
19
|
+
Timezone: globalRefStorage.value.timezone
|
|
20
|
+
});
|
|
21
|
+
return config;
|
|
22
|
+
});
|
|
19
23
|
}
|
|
20
|
-
|
|
24
|
+
//#endregion
|
|
21
25
|
export { interceptors };
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import qs from "qs";
|
|
2
|
+
//#region src/utils/cache-adapter/cache-adapter.ts
|
|
3
|
+
/**异步缓存函数 */
|
|
4
|
+
var gctMemoizeAsync = (...arg) => cacheAdapter.bind(null, ...arg);
|
|
5
|
+
/**
|
|
6
|
+
*异步缓存
|
|
7
|
+
* @param args
|
|
8
|
+
* @param adapter
|
|
9
|
+
* @returns
|
|
10
|
+
*/
|
|
11
|
+
function cacheAdapter(adapter, ...args) {
|
|
12
|
+
/**默认缓存5分钟 */
|
|
13
|
+
const maxAge = 1e3 * 60 * 5;
|
|
14
|
+
const requestKey = typeof args === "object" ? qs.stringify(args) : args;
|
|
15
|
+
let responsePromise = MemoryCache.get(requestKey);
|
|
16
|
+
if (!responsePromise) {
|
|
17
|
+
responsePromise = (async () => {
|
|
18
|
+
try {
|
|
19
|
+
return await adapter(...args);
|
|
20
|
+
} catch (reason) {
|
|
21
|
+
MemoryCache.delete(requestKey);
|
|
22
|
+
throw reason;
|
|
23
|
+
}
|
|
24
|
+
})();
|
|
25
|
+
MemoryCache.set(requestKey, responsePromise, maxAge);
|
|
26
|
+
return responsePromise;
|
|
27
|
+
}
|
|
28
|
+
return responsePromise;
|
|
29
|
+
}
|
|
30
|
+
var MemoryCache = class {
|
|
31
|
+
static cachedata = {};
|
|
32
|
+
static set(key, value, maxAge) {
|
|
33
|
+
this.cachedata[key] = {
|
|
34
|
+
maxAge: maxAge || 0,
|
|
35
|
+
value,
|
|
36
|
+
now: Date.now()
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
static get(key) {
|
|
40
|
+
this.reset();
|
|
41
|
+
const cachedItem = this.cachedata[key];
|
|
42
|
+
if (!cachedItem) return null;
|
|
43
|
+
return cachedItem.value;
|
|
44
|
+
}
|
|
45
|
+
static delete(key) {
|
|
46
|
+
return delete this.cachedata[key];
|
|
47
|
+
}
|
|
48
|
+
static clear() {
|
|
49
|
+
this.cachedata = {};
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
*清空过期的数据
|
|
53
|
+
*/
|
|
54
|
+
static reset() {
|
|
55
|
+
for (const key in this.cachedata) {
|
|
56
|
+
const cachedItem = this.cachedata[key];
|
|
57
|
+
if (cachedItem) {
|
|
58
|
+
if (Date.now() - cachedItem.now > cachedItem.maxAge) this.delete(key);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
//#endregion
|
|
64
|
+
export { gctMemoizeAsync };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CSS 动态加载工具类
|
|
3
|
+
*
|
|
4
|
+
* 从 CDN 动态加载 CSS 文件,具备以下特性:
|
|
5
|
+
* - 已成功加载的路径永久缓存,避免重复插入 link 标签
|
|
6
|
+
* - 同一时刻对同一路径的多次调用共享同一个 Promise(请求去重)
|
|
7
|
+
* - 加载失败不写入缓存,允许下次重试
|
|
8
|
+
* - 加载前检查 DOM 中是否已存在相同 href 的 link 标签
|
|
9
|
+
*
|
|
10
|
+
* @author chitanda
|
|
11
|
+
* @date 2026-03-16
|
|
12
|
+
* @class CssLoader
|
|
13
|
+
*/
|
|
14
|
+
declare class CssLoader {
|
|
15
|
+
/** 已成功加载的 CSS URL 集合(永久缓存) */
|
|
16
|
+
private _loadedSet;
|
|
17
|
+
/** 正在加载中的 CSS URL 对应的 Promise(用于请求去重) */
|
|
18
|
+
private _pendingMap;
|
|
19
|
+
/**
|
|
20
|
+
* 动态加载单个 CSS 文件
|
|
21
|
+
*
|
|
22
|
+
* @param {string} url CSS 文件的完整 URL
|
|
23
|
+
* @returns {Promise<void>} 加载完成后 resolve;加载失败则 reject
|
|
24
|
+
*/
|
|
25
|
+
load(url: string): Promise<void>;
|
|
26
|
+
/**
|
|
27
|
+
* 并发加载多个 CSS 文件
|
|
28
|
+
*
|
|
29
|
+
* @param {string[]} urls CSS 文件 URL 列表
|
|
30
|
+
* @returns {Promise<void>} 所有文件均加载完成后 resolve;任一失败则 reject
|
|
31
|
+
*/
|
|
32
|
+
loadBatch(urls: string[]): Promise<void>;
|
|
33
|
+
}
|
|
34
|
+
/** CSS 动态加载工具单例 */
|
|
35
|
+
export declare const cssLoader: CssLoader;
|
|
36
|
+
export {};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
//#region src/utils/css-loader/css-loader.ts
|
|
2
|
+
/**
|
|
3
|
+
* CSS 动态加载工具类
|
|
4
|
+
*
|
|
5
|
+
* 从 CDN 动态加载 CSS 文件,具备以下特性:
|
|
6
|
+
* - 已成功加载的路径永久缓存,避免重复插入 link 标签
|
|
7
|
+
* - 同一时刻对同一路径的多次调用共享同一个 Promise(请求去重)
|
|
8
|
+
* - 加载失败不写入缓存,允许下次重试
|
|
9
|
+
* - 加载前检查 DOM 中是否已存在相同 href 的 link 标签
|
|
10
|
+
*
|
|
11
|
+
* @author chitanda
|
|
12
|
+
* @date 2026-03-16
|
|
13
|
+
* @class CssLoader
|
|
14
|
+
*/
|
|
15
|
+
var CssLoader = class {
|
|
16
|
+
/** 已成功加载的 CSS URL 集合(永久缓存) */
|
|
17
|
+
_loadedSet = /* @__PURE__ */ new Set();
|
|
18
|
+
/** 正在加载中的 CSS URL 对应的 Promise(用于请求去重) */
|
|
19
|
+
_pendingMap = /* @__PURE__ */ new Map();
|
|
20
|
+
/**
|
|
21
|
+
* 动态加载单个 CSS 文件
|
|
22
|
+
*
|
|
23
|
+
* @param {string} url CSS 文件的完整 URL
|
|
24
|
+
* @returns {Promise<void>} 加载完成后 resolve;加载失败则 reject
|
|
25
|
+
*/
|
|
26
|
+
load(url) {
|
|
27
|
+
if (this._loadedSet.has(url)) return Promise.resolve();
|
|
28
|
+
if (this._pendingMap.has(url)) return this._pendingMap.get(url);
|
|
29
|
+
if (typeof document !== "undefined") {
|
|
30
|
+
if (document.querySelector(`link[rel="stylesheet"][href="${CSS.escape ? CSS.escape(url) : url}"]`)) {
|
|
31
|
+
this._loadedSet.add(url);
|
|
32
|
+
return Promise.resolve();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
const promise = new Promise((resolve) => {
|
|
36
|
+
if (typeof document === "undefined") {
|
|
37
|
+
console.error(`[CssLoader] 当前环境不支持 DOM,无法加载 CSS: ${url}`);
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
const link = document.createElement("link");
|
|
41
|
+
link.rel = "stylesheet";
|
|
42
|
+
link.type = "text/css";
|
|
43
|
+
link.href = url;
|
|
44
|
+
/** 加载成功回调 */
|
|
45
|
+
const onLoad = () => {
|
|
46
|
+
cleanup();
|
|
47
|
+
this._loadedSet.add(url);
|
|
48
|
+
this._pendingMap.delete(url);
|
|
49
|
+
resolve();
|
|
50
|
+
};
|
|
51
|
+
/** 加载失败回调 */
|
|
52
|
+
const onError = () => {
|
|
53
|
+
cleanup();
|
|
54
|
+
this._pendingMap.delete(url);
|
|
55
|
+
console.error(`[CssLoader] CSS 文件加载失败: ${url}`);
|
|
56
|
+
};
|
|
57
|
+
/** 移除事件监听,防止内存泄漏 */
|
|
58
|
+
const cleanup = () => {
|
|
59
|
+
link.removeEventListener("load", onLoad);
|
|
60
|
+
link.removeEventListener("error", onError);
|
|
61
|
+
};
|
|
62
|
+
link.addEventListener("load", onLoad);
|
|
63
|
+
link.addEventListener("error", onError);
|
|
64
|
+
document.head.appendChild(link);
|
|
65
|
+
});
|
|
66
|
+
this._pendingMap.set(url, promise);
|
|
67
|
+
return promise;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* 并发加载多个 CSS 文件
|
|
71
|
+
*
|
|
72
|
+
* @param {string[]} urls CSS 文件 URL 列表
|
|
73
|
+
* @returns {Promise<void>} 所有文件均加载完成后 resolve;任一失败则 reject
|
|
74
|
+
*/
|
|
75
|
+
async loadBatch(urls) {
|
|
76
|
+
await Promise.all(urls.map((url) => this.load(url)));
|
|
77
|
+
}
|
|
78
|
+
};
|
|
79
|
+
/** CSS 动态加载工具单例 */
|
|
80
|
+
var cssLoader = new CssLoader();
|
|
81
|
+
//#endregion
|
|
82
|
+
export { cssLoader };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { notSingleArr } from "../../enums/designEnum.mjs";
|
|
2
|
+
import "../../enums/index.mjs";
|
|
3
|
+
import { intersection } from "lodash-es";
|
|
4
|
+
//#region src/utils/design/design.ts
|
|
5
|
+
/**
|
|
6
|
+
* 是否完全为多选算子
|
|
7
|
+
*
|
|
8
|
+
* @description 只有全部是多选算子时,下拉才可以算是多选
|
|
9
|
+
* @author zhanghanrui
|
|
10
|
+
* @date 2024-09-20 11:09:47
|
|
11
|
+
* @export
|
|
12
|
+
* @param {string[]} arr
|
|
13
|
+
* @return {*} {boolean}
|
|
14
|
+
*/
|
|
15
|
+
function isMultipleOperator(arr) {
|
|
16
|
+
const items = intersection(arr, notSingleArr);
|
|
17
|
+
if (items.length > 0 && items.length === arr.length) return true;
|
|
18
|
+
return false;
|
|
19
|
+
}
|
|
20
|
+
//#endregion
|
|
21
|
+
export { isMultipleOperator };
|
|
@@ -1,73 +1,87 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
//#region src/utils/deviceFingerprint.ts
|
|
2
|
+
/** 指纹缓存 key */
|
|
3
|
+
var FINGERPRINT_KEY = "FINGERPRINT";
|
|
4
|
+
/** 判断是否浏览器环境 */
|
|
4
5
|
function isBrowserEnv() {
|
|
5
|
-
|
|
6
|
+
return typeof window !== "undefined" && typeof navigator !== "undefined";
|
|
6
7
|
}
|
|
8
|
+
/** 获取客户端平台(浏览器 / 移动系统) */
|
|
7
9
|
function getClientPlatform() {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
10
|
+
if (!isBrowserEnv()) return {
|
|
11
|
+
type: "unknown",
|
|
12
|
+
name: "unknown"
|
|
13
|
+
};
|
|
14
|
+
const ua = navigator.userAgent;
|
|
15
|
+
if (/iPad|iPhone|iPod/i.test(ua)) return {
|
|
16
|
+
type: "mobile",
|
|
17
|
+
name: "iOS"
|
|
18
|
+
};
|
|
19
|
+
if (/Android/i.test(ua)) return {
|
|
20
|
+
type: "mobile",
|
|
21
|
+
name: "Android"
|
|
22
|
+
};
|
|
23
|
+
if (/Windows Phone/i.test(ua)) return {
|
|
24
|
+
type: "mobile",
|
|
25
|
+
name: "Windows Phone"
|
|
26
|
+
};
|
|
27
|
+
if (/BlackBerry/i.test(ua)) return {
|
|
28
|
+
type: "mobile",
|
|
29
|
+
name: "BlackBerry"
|
|
30
|
+
};
|
|
31
|
+
if (/Edg/i.test(ua)) return {
|
|
32
|
+
type: "web",
|
|
33
|
+
name: "Edge"
|
|
34
|
+
};
|
|
35
|
+
if (/OPR|Opera/i.test(ua)) return {
|
|
36
|
+
type: "web",
|
|
37
|
+
name: "Opera"
|
|
38
|
+
};
|
|
39
|
+
if (/Firefox/i.test(ua)) return {
|
|
40
|
+
type: "web",
|
|
41
|
+
name: "Firefox"
|
|
42
|
+
};
|
|
43
|
+
if (/Chrome/i.test(ua)) return {
|
|
44
|
+
type: "web",
|
|
45
|
+
name: "Chrome"
|
|
46
|
+
};
|
|
47
|
+
if (/Safari/i.test(ua)) return {
|
|
48
|
+
type: "web",
|
|
49
|
+
name: "Safari"
|
|
50
|
+
};
|
|
51
|
+
return {
|
|
52
|
+
type: "unknown",
|
|
53
|
+
name: "unknown"
|
|
54
|
+
};
|
|
40
55
|
}
|
|
56
|
+
/** 获取浏览器指纹对象 */
|
|
41
57
|
async function getFingerprint() {
|
|
42
|
-
|
|
43
|
-
return agent.get();
|
|
58
|
+
return (await (await import("@fingerprintjs/fingerprintjs")).load()).get();
|
|
44
59
|
}
|
|
60
|
+
/** 获取设备指纹标识(统一入口) */
|
|
45
61
|
async function getDeviceFingerprint() {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
const fingerprint = await getFingerprint();
|
|
58
|
-
const visitorId = fingerprint.visitorId;
|
|
59
|
-
if (isWeb) {
|
|
60
|
-
localStorage.setItem(FINGERPRINT_KEY, visitorId);
|
|
61
|
-
}
|
|
62
|
-
return `${name}/${visitorId}`;
|
|
62
|
+
if (!isBrowserEnv()) return "unknown/unknown";
|
|
63
|
+
const { type, name } = getClientPlatform();
|
|
64
|
+
const isWeb = type === "web";
|
|
65
|
+
if (isWeb) {
|
|
66
|
+
const cached = localStorage.getItem(FINGERPRINT_KEY);
|
|
67
|
+
if (cached) return `${name}/${cached}`;
|
|
68
|
+
}
|
|
69
|
+
const visitorId = (await getFingerprint()).visitorId;
|
|
70
|
+
if (isWeb) localStorage.setItem(FINGERPRINT_KEY, visitorId);
|
|
71
|
+
return `${name}/${visitorId}`;
|
|
63
72
|
}
|
|
73
|
+
/** mobile 端指纹(语义兼容) */
|
|
74
|
+
function getMobileBrowserFingerprint() {
|
|
75
|
+
return getDeviceFingerprint();
|
|
76
|
+
}
|
|
77
|
+
/** 页签唯一标识 */
|
|
64
78
|
function getPageIdentification() {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
79
|
+
let pageTag = sessionStorage.getItem("currentPageTag");
|
|
80
|
+
if (!pageTag) {
|
|
81
|
+
pageTag = Date.now().toString();
|
|
82
|
+
sessionStorage.setItem("currentPageTag", pageTag);
|
|
83
|
+
}
|
|
84
|
+
return pageTag;
|
|
71
85
|
}
|
|
72
|
-
|
|
73
|
-
export {
|
|
86
|
+
//#endregion
|
|
87
|
+
export { getDeviceFingerprint, getMobileBrowserFingerprint, getPageIdentification };
|