@vtx/components 4.0.0-beta.6 → 4.0.0-beta.7
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/es/index.js +73 -0
- package/es/utils/columnSort.js +23 -0
- package/es/utils/components/DropdownFooter/index.js +53 -0
- package/es/utils/components/DropdownFooter/style.js +25 -0
- package/es/utils/components/ErrorBoundary/index.js +53 -0
- package/es/utils/components/FieldLabel/index.js +144 -0
- package/es/utils/components/FieldLabel/style.js +93 -0
- package/es/utils/components/FilterDropdown/index.js +62 -0
- package/es/utils/components/FilterDropdown/style.js +26 -0
- package/es/utils/components/InlineErrorFormItem/index.js +156 -0
- package/es/utils/components/InlineErrorFormItem/style.js +47 -0
- package/es/utils/components/LabelIconTip/index.js +68 -0
- package/es/utils/components/LabelIconTip/style.js +47 -0
- package/es/utils/components/ProFormContext/index.js +41 -0
- package/es/utils/conversionMomentValue/index.js +163 -0
- package/es/utils/dateArrayFormatter/index.js +36 -0
- package/es/utils/filterSpecialCharacters.js +82 -0
- package/es/utils/genColumnKey.js +6 -0
- package/es/utils/genCopyable/index.js +59 -0
- package/es/utils/getComponentProps.js +7 -0
- package/es/utils/getFieldPropsOrFormItemProps/index.js +16 -0
- package/es/utils/getPlaceholder.js +5 -0
- package/es/utils/getToken.js +6 -0
- package/es/utils/hooks/useDebounceFn/index.js +71 -0
- package/es/utils/hooks/useDebounceValue/index.js +40 -0
- package/es/utils/hooks/useDeepCompareEffect/index.js +24 -0
- package/es/utils/hooks/useDeepCompareMemo/index.js +15 -0
- package/es/utils/hooks/useDocumentTitle/index.js +10 -0
- package/es/utils/hooks/useFetchData/index.js +82 -0
- package/es/utils/hooks/useForceRender/index.js +18 -0
- package/es/utils/hooks/useLatest/index.js +10 -0
- package/es/utils/hooks/usePrevious/index.js +8 -0
- package/es/utils/hooks/useReactiveRef/index.js +7 -0
- package/es/utils/hooks/useRefCallback/index.js +26 -0
- package/es/utils/hooks/useRefFunction/index.js +13 -0
- package/es/utils/index.js +73 -0
- package/es/utils/isBrowser/index.d.ts +9 -0
- package/es/utils/isBrowser/index.js +16 -0
- package/es/utils/isDeepEqualReact/index.js +95 -0
- package/es/utils/isDropdownValueType/index.js +7 -0
- package/es/utils/isFunction.js +3 -0
- package/es/utils/isImg/index.js +4 -0
- package/es/utils/isNil/index.js +3 -0
- package/es/utils/isObject/index.js +3 -0
- package/es/utils/isObject.js +3 -0
- package/es/utils/isUrl/index.js +17 -0
- package/es/utils/merge/index.js +36 -0
- package/es/utils/nanoid/index.js +29 -0
- package/es/utils/omitBoolean/index.js +11 -0
- package/es/utils/omitUndefined/index.js +12 -0
- package/es/utils/omitUndefinedAndEmptyArr/index.js +14 -0
- package/es/utils/parseValueToMoment/index.js +28 -0
- package/es/utils/pickProFormItemProps/index.js +15 -0
- package/es/utils/pickProProps/index.js +15 -0
- package/es/utils/proFieldParsingText/index.js +161 -0
- package/es/utils/runFunction/index.js +10 -0
- package/es/utils/sortByGivenOrder.js +36 -0
- package/es/utils/sortByKeyArrayExtract.js +38 -0
- package/es/utils/stringify/index.js +10 -0
- package/es/utils/transformKeySubmitValue/index.js +330 -0
- package/es/utils/useColSize.js +20 -0
- package/es/utils/useEditableArray/index.js +906 -0
- package/es/utils/useEditableMap/index.js +214 -0
- package/es/utils/useInterval.js +12 -0
- package/es/utils/useMediaQuery/index.js +106 -0
- package/es/utils/useMediaQuery/query.js +30 -0
- package/es/utils/useMountMergeState/index.js +2 -0
- package/es/utils/useSet.js +38 -0
- package/es/version.js +3 -0
- package/es/vtx-color-picker/index.js +70 -0
- package/es/vtx-color-picker/style/index.js +30 -0
- package/es/vtx-combogrid/Combogrid.js +247 -0
- package/es/vtx-combogrid/index.js +121 -0
- package/es/vtx-combogrid/style/index.js +42 -0
- package/es/vtx-datagrid/Alert/index.js +49 -0
- package/es/vtx-datagrid/Alert/style.js +44 -0
- package/es/vtx-datagrid/Store/Provide.js +441 -0
- package/es/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +526 -0
- package/es/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +86 -0
- package/es/vtx-datagrid/ToolBar/components/Density/index.js +48 -0
- package/es/vtx-datagrid/ToolBar/components/Fullscreen/index.js +77 -0
- package/es/vtx-datagrid/ToolBar/components/TableStyle/index.js +71 -0
- package/es/vtx-datagrid/ToolBar/index.js +88 -0
- package/es/vtx-datagrid/ToolBar/style.js +59 -0
- package/es/vtx-datagrid/index.js +362 -0
- package/es/vtx-datagrid/renderColumnButtons.js +98 -0
- package/es/vtx-datagrid/style/index.js +80 -0
- package/es/vtx-datagrid/style/index.less +242 -0
- package/es/vtx-date-picker/QdatePicker.js +152 -0
- package/es/vtx-date-picker/generatePicker.js +104 -0
- package/es/vtx-date-picker/index.js +49 -0
- package/es/vtx-date-picker/style/index.js +39 -0
- package/es/vtx-date-picker/style/index.less +39 -0
- package/es/vtx-ellipsis-text/index.js +52 -0
- package/es/vtx-ellipsis-text/style/index.js +29 -0
- package/es/vtx-export/index.js +197 -0
- package/es/vtx-export/style/index.js +24 -0
- package/es/vtx-export-async/ColumnsSelect.js +63 -0
- package/es/vtx-export-async/History.js +256 -0
- package/es/vtx-export-async/index.js +402 -0
- package/es/vtx-export-async/style/index.js +49 -0
- package/es/vtx-export-async/util.js +51 -0
- package/es/vtx-form-layout/Card.js +74 -0
- package/es/vtx-form-layout/Divider.js +22 -0
- package/es/vtx-form-layout/FormItem.js +135 -0
- package/es/vtx-form-layout/Pane.js +41 -0
- package/es/vtx-form-layout/Row.js +19 -0
- package/es/vtx-form-layout/context.js +2 -0
- package/es/vtx-form-layout/index.js +80 -0
- package/es/vtx-form-layout/style/index.js +261 -0
- package/es/vtx-icon/index.js +78 -0
- package/es/vtx-icon/svg/alignRightOutlined.js +29 -0
- package/es/vtx-icon/svg/columnHeightOutlined.js +25 -0
- package/es/vtx-icon/svg/downOutlined.js +24 -0
- package/es/vtx-icon/svg/fullscreen.js +25 -0
- package/es/vtx-icon/svg/redoOutlined.js +29 -0
- package/es/vtx-icon/svg/rightOutlined.js +24 -0
- package/es/vtx-icon/svg/settingOutlined.js +29 -0
- package/es/vtx-image/Image.js +257 -0
- package/es/vtx-image/Preview.js +140 -0
- package/es/vtx-image/PreviewGroup.js +81 -0
- package/es/vtx-image/index.js +4 -0
- package/es/vtx-image/style/index.js +91 -0
- package/es/vtx-import/index.js +416 -0
- package/es/vtx-import/result.js +81 -0
- package/es/vtx-import/style/index.js +19 -0
- package/es/vtx-import2/CheckResult.js +45 -0
- package/es/vtx-import2/Content.js +103 -0
- package/es/vtx-import2/DownloadSvg.js +41 -0
- package/es/vtx-import2/ImportResult.js +57 -0
- package/es/vtx-import2/UploadSvg.js +41 -0
- package/es/vtx-import2/index.js +453 -0
- package/es/vtx-import2/style/index.js +99 -0
- package/es/vtx-input/TextArea/index.js +61 -0
- package/es/vtx-input/TextArea/style.js +30 -0
- package/es/vtx-input/index.js +92 -0
- package/es/vtx-input/style/index.js +24 -0
- package/es/vtx-input/useLength.js +21 -0
- package/es/vtx-modal/Title.js +34 -0
- package/es/vtx-modal/index.js +243 -0
- package/es/vtx-modal/style/index.js +109 -0
- package/es/vtx-page-layout/Basic.js +28 -0
- package/es/vtx-page-layout/Content.js +43 -0
- package/es/vtx-page-layout/Pane.js +40 -0
- package/es/vtx-page-layout/TabLayout.js +65 -0
- package/es/vtx-page-layout/TableLayout.js +163 -0
- package/es/vtx-page-layout/TableWrap.js +36 -0
- package/es/vtx-page-layout/TreeLayout.js +79 -0
- package/es/vtx-page-layout/container.js +68 -0
- package/es/vtx-page-layout/index.js +26 -0
- package/es/vtx-page-layout/style/index.js +129 -0
- package/es/vtx-provider/index.js +315 -0
- package/es/vtx-provider/intl.js +140 -0
- package/es/vtx-provider/locale/ar_EG.js +71 -0
- package/es/vtx-provider/locale/ca_ES.js +71 -0
- package/es/vtx-provider/locale/cs_CZ.js +74 -0
- package/es/vtx-provider/locale/de_DE.js +71 -0
- package/es/vtx-provider/locale/en_GB.js +73 -0
- package/es/vtx-provider/locale/en_US.js +181 -0
- package/es/vtx-provider/locale/es_ES.js +71 -0
- package/es/vtx-provider/locale/fa_IR.js +71 -0
- package/es/vtx-provider/locale/fr_FR.js +71 -0
- package/es/vtx-provider/locale/he_IL.js +74 -0
- package/es/vtx-provider/locale/hr_HR.js +71 -0
- package/es/vtx-provider/locale/id_ID.js +71 -0
- package/es/vtx-provider/locale/it_IT.js +71 -0
- package/es/vtx-provider/locale/ja_JP.js +71 -0
- package/es/vtx-provider/locale/ko_KR.js +71 -0
- package/es/vtx-provider/locale/mn_MN.js +71 -0
- package/es/vtx-provider/locale/ms_MY.js +71 -0
- package/es/vtx-provider/locale/nl_NL.js +74 -0
- package/es/vtx-provider/locale/pl_PL.js +71 -0
- package/es/vtx-provider/locale/pt_BR.js +71 -0
- package/es/vtx-provider/locale/ro_RO.js +74 -0
- package/es/vtx-provider/locale/ru_RU.js +71 -0
- package/es/vtx-provider/locale/sk_SK.js +74 -0
- package/es/vtx-provider/locale/sr_RS.js +71 -0
- package/es/vtx-provider/locale/sv_SE.js +74 -0
- package/es/vtx-provider/locale/th_TH.js +74 -0
- package/es/vtx-provider/locale/tr_TR.js +71 -0
- package/es/vtx-provider/locale/uk_UA.js +74 -0
- package/es/vtx-provider/locale/uz_UZ.js +71 -0
- package/es/vtx-provider/locale/vi_VN.js +71 -0
- package/es/vtx-provider/locale/zh_CN.js +183 -0
- package/es/vtx-provider/locale/zh_HK.js +83 -0
- package/es/vtx-provider/locale/zh_TW.js +74 -0
- package/es/vtx-provider/typing/layoutToken.js +60 -0
- package/es/vtx-provider/useStyle/index.js +106 -0
- package/es/vtx-provider/utils/merge.js +27 -0
- package/es/vtx-rps-frame/index.js +164 -0
- package/es/vtx-rps-frame/style/index.js +26 -0
- package/es/vtx-scrollable-row/index.js +183 -0
- package/es/vtx-scrollable-row/style/index.js +108 -0
- package/es/vtx-search/index.js +350 -0
- package/es/vtx-search/style/index.js +94 -0
- package/es/vtx-select/index.js +252 -0
- package/es/vtx-select/style/index.js +75 -0
- package/es/vtx-signature/index.js +119 -0
- package/es/vtx-signature/style/index.js +47 -0
- package/es/vtx-split-pane/Resizer.js +47 -0
- package/es/vtx-split-pane/SplitPane.js +60 -0
- package/es/vtx-split-pane/index.js +3 -0
- package/es/vtx-split-pane/style/index.js +133 -0
- package/es/vtx-statistics-column/Back.js +27 -0
- package/es/vtx-statistics-column/Item.js +54 -0
- package/es/vtx-statistics-column/Total.js +54 -0
- package/es/vtx-statistics-column/context.js +2 -0
- package/es/vtx-statistics-column/index.js +54 -0
- package/es/vtx-statistics-column/style/index.js +72 -0
- package/es/vtx-time-picker/index.js +37 -0
- package/es/vtx-time-picker/style/index.js +0 -0
- package/es/vtx-tree/index.js +341 -0
- package/es/vtx-tree/style/index.js +50 -0
- package/es/vtx-tree/utils.js +73 -0
- package/es/vtx-tree-select/index.js +290 -0
- package/es/vtx-tree-select/style/index.js +72 -0
- package/es/vtx-upload/FilePreview.js +111 -0
- package/es/vtx-upload/index.js +468 -0
- package/es/vtx-upload/style/index.js +83 -0
- package/es/vtx-wang-editor/index.js +245 -0
- package/es/vtx-wang-editor/style/index.js +33 -0
- package/es/vtx-wang-editor/style/index.less +12 -0
- package/es/vtx-wang-editor/wangEditorUtil.js +226 -0
- package/lib/index.js +363 -0
- package/lib/utils/columnSort.js +29 -0
- package/lib/utils/components/DropdownFooter/index.js +62 -0
- package/lib/utils/components/DropdownFooter/style.js +31 -0
- package/lib/utils/components/ErrorBoundary/index.js +59 -0
- package/lib/utils/components/FieldLabel/index.js +152 -0
- package/lib/utils/components/FieldLabel/style.js +99 -0
- package/lib/utils/components/FilterDropdown/index.js +70 -0
- package/lib/utils/components/FilterDropdown/style.js +32 -0
- package/lib/utils/components/InlineErrorFormItem/index.js +162 -0
- package/lib/utils/components/InlineErrorFormItem/style.js +53 -0
- package/lib/utils/components/LabelIconTip/index.js +73 -0
- package/lib/utils/components/LabelIconTip/style.js +53 -0
- package/lib/utils/components/ProFormContext/index.js +48 -0
- package/lib/utils/conversionMomentValue/index.js +170 -0
- package/lib/utils/dateArrayFormatter/index.js +43 -0
- package/lib/utils/filterSpecialCharacters.js +89 -0
- package/lib/utils/genColumnKey.js +12 -0
- package/lib/utils/genCopyable/index.js +66 -0
- package/lib/utils/getComponentProps.js +13 -0
- package/lib/utils/getFieldPropsOrFormItemProps/index.js +21 -0
- package/lib/utils/getPlaceholder.js +11 -0
- package/lib/utils/getToken.js +12 -0
- package/lib/utils/hooks/useDebounceFn/index.js +77 -0
- package/lib/utils/hooks/useDebounceValue/index.js +45 -0
- package/lib/utils/hooks/useDeepCompareEffect/index.js +33 -0
- package/lib/utils/hooks/useDeepCompareMemo/index.js +21 -0
- package/lib/utils/hooks/useDocumentTitle/index.js +16 -0
- package/lib/utils/hooks/useFetchData/index.js +89 -0
- package/lib/utils/hooks/useForceRender/index.js +24 -0
- package/lib/utils/hooks/useLatest/index.js +15 -0
- package/lib/utils/hooks/usePrevious/index.js +14 -0
- package/lib/utils/hooks/useReactiveRef/index.js +14 -0
- package/lib/utils/hooks/useRefCallback/index.js +31 -0
- package/lib/utils/hooks/useRefFunction/index.js +18 -0
- package/lib/utils/index.js +436 -0
- package/lib/utils/isBrowser/index.d.ts +9 -0
- package/lib/utils/isBrowser/index.js +22 -0
- package/lib/utils/isDeepEqualReact/index.js +101 -0
- package/lib/utils/isDropdownValueType/index.js +13 -0
- package/lib/utils/isFunction.js +9 -0
- package/lib/utils/isImg/index.js +10 -0
- package/lib/utils/isNil/index.js +9 -0
- package/lib/utils/isObject/index.js +9 -0
- package/lib/utils/isObject.js +9 -0
- package/lib/utils/isUrl/index.js +23 -0
- package/lib/utils/merge/index.js +41 -0
- package/lib/utils/nanoid/index.js +35 -0
- package/lib/utils/omitBoolean/index.js +17 -0
- package/lib/utils/omitUndefined/index.js +18 -0
- package/lib/utils/omitUndefinedAndEmptyArr/index.js +20 -0
- package/lib/utils/parseValueToMoment/index.js +35 -0
- package/lib/utils/pickProFormItemProps/index.js +21 -0
- package/lib/utils/pickProProps/index.js +21 -0
- package/lib/utils/proFieldParsingText/index.js +166 -0
- package/lib/utils/runFunction/index.js +16 -0
- package/lib/utils/sortByGivenOrder.js +42 -0
- package/lib/utils/sortByKeyArrayExtract.js +44 -0
- package/lib/utils/stringify/index.js +21 -0
- package/lib/utils/transformKeySubmitValue/index.js +337 -0
- package/lib/utils/useColSize.js +26 -0
- package/lib/utils/useEditableArray/index.js +918 -0
- package/lib/utils/useEditableMap/index.js +219 -0
- package/lib/utils/useInterval.js +18 -0
- package/lib/utils/useMediaQuery/index.js +112 -0
- package/lib/utils/useMediaQuery/query.js +36 -0
- package/lib/utils/useMountMergeState/index.js +12 -0
- package/lib/utils/useSet.js +43 -0
- package/lib/version.js +9 -0
- package/lib/vtx-color-picker/index.js +77 -0
- package/lib/vtx-color-picker/style/index.js +36 -0
- package/lib/vtx-combogrid/Combogrid.js +255 -0
- package/lib/vtx-combogrid/index.js +129 -0
- package/lib/vtx-combogrid/style/index.js +48 -0
- package/lib/vtx-datagrid/Alert/index.js +57 -0
- package/lib/vtx-datagrid/Alert/style.js +50 -0
- package/lib/vtx-datagrid/Store/Provide.js +446 -0
- package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/index.js +531 -0
- package/lib/vtx-datagrid/ToolBar/components/ColumnSetting/style.js +92 -0
- package/lib/vtx-datagrid/ToolBar/components/Density/index.js +54 -0
- package/lib/vtx-datagrid/ToolBar/components/Fullscreen/index.js +83 -0
- package/lib/vtx-datagrid/ToolBar/components/TableStyle/index.js +77 -0
- package/lib/vtx-datagrid/ToolBar/index.js +96 -0
- package/lib/vtx-datagrid/ToolBar/style.js +65 -0
- package/lib/vtx-datagrid/index.js +370 -0
- package/lib/vtx-datagrid/renderColumnButtons.js +104 -0
- package/lib/vtx-datagrid/style/index.js +86 -0
- package/lib/vtx-datagrid/style/index.less +242 -0
- package/lib/vtx-date-picker/QdatePicker.js +157 -0
- package/lib/vtx-date-picker/generatePicker.js +111 -0
- package/lib/vtx-date-picker/index.js +55 -0
- package/lib/vtx-date-picker/style/index.js +45 -0
- package/lib/vtx-date-picker/style/index.less +39 -0
- package/lib/vtx-ellipsis-text/index.js +60 -0
- package/lib/vtx-ellipsis-text/style/index.js +35 -0
- package/lib/vtx-export/index.js +203 -0
- package/lib/vtx-export/style/index.js +30 -0
- package/lib/vtx-export-async/ColumnsSelect.js +69 -0
- package/lib/vtx-export-async/History.js +264 -0
- package/lib/vtx-export-async/index.js +409 -0
- package/lib/vtx-export-async/style/index.js +55 -0
- package/lib/vtx-export-async/util.js +57 -0
- package/lib/vtx-form-layout/Card.js +83 -0
- package/lib/vtx-form-layout/Divider.js +31 -0
- package/lib/vtx-form-layout/FormItem.js +141 -0
- package/lib/vtx-form-layout/Pane.js +50 -0
- package/lib/vtx-form-layout/Row.js +26 -0
- package/lib/vtx-form-layout/context.js +8 -0
- package/lib/vtx-form-layout/index.js +89 -0
- package/lib/vtx-form-layout/style/index.js +267 -0
- package/lib/vtx-icon/index.js +90 -0
- package/lib/vtx-icon/svg/alignRightOutlined.js +34 -0
- package/lib/vtx-icon/svg/columnHeightOutlined.js +31 -0
- package/lib/vtx-icon/svg/downOutlined.js +30 -0
- package/lib/vtx-icon/svg/fullscreen.js +31 -0
- package/lib/vtx-icon/svg/redoOutlined.js +34 -0
- package/lib/vtx-icon/svg/rightOutlined.js +30 -0
- package/lib/vtx-icon/svg/settingOutlined.js +34 -0
- package/lib/vtx-image/Image.js +264 -0
- package/lib/vtx-image/Preview.js +146 -0
- package/lib/vtx-image/PreviewGroup.js +91 -0
- package/lib/vtx-image/index.js +31 -0
- package/lib/vtx-image/style/index.js +97 -0
- package/lib/vtx-import/index.js +424 -0
- package/lib/vtx-import/result.js +88 -0
- package/lib/vtx-import/style/index.js +25 -0
- package/lib/vtx-import2/CheckResult.js +50 -0
- package/lib/vtx-import2/Content.js +112 -0
- package/lib/vtx-import2/DownloadSvg.js +47 -0
- package/lib/vtx-import2/ImportResult.js +62 -0
- package/lib/vtx-import2/UploadSvg.js +47 -0
- package/lib/vtx-import2/index.js +458 -0
- package/lib/vtx-import2/style/index.js +105 -0
- package/lib/vtx-input/TextArea/index.js +70 -0
- package/lib/vtx-input/TextArea/style.js +36 -0
- package/lib/vtx-input/index.js +100 -0
- package/lib/vtx-input/style/index.js +30 -0
- package/lib/vtx-input/useLength.js +27 -0
- package/lib/vtx-modal/Title.js +42 -0
- package/lib/vtx-modal/index.js +249 -0
- package/lib/vtx-modal/style/index.js +115 -0
- package/lib/vtx-page-layout/Basic.js +36 -0
- package/lib/vtx-page-layout/Content.js +50 -0
- package/lib/vtx-page-layout/Pane.js +47 -0
- package/lib/vtx-page-layout/TabLayout.js +70 -0
- package/lib/vtx-page-layout/TableLayout.js +172 -0
- package/lib/vtx-page-layout/TableWrap.js +43 -0
- package/lib/vtx-page-layout/TreeLayout.js +84 -0
- package/lib/vtx-page-layout/container.js +74 -0
- package/lib/vtx-page-layout/index.js +32 -0
- package/lib/vtx-page-layout/style/index.js +136 -0
- package/lib/vtx-provider/index.js +351 -0
- package/lib/vtx-provider/intl.js +145 -0
- package/lib/vtx-provider/locale/ar_EG.js +77 -0
- package/lib/vtx-provider/locale/ca_ES.js +77 -0
- package/lib/vtx-provider/locale/cs_CZ.js +80 -0
- package/lib/vtx-provider/locale/de_DE.js +77 -0
- package/lib/vtx-provider/locale/en_GB.js +79 -0
- package/lib/vtx-provider/locale/en_US.js +187 -0
- package/lib/vtx-provider/locale/es_ES.js +77 -0
- package/lib/vtx-provider/locale/fa_IR.js +77 -0
- package/lib/vtx-provider/locale/fr_FR.js +77 -0
- package/lib/vtx-provider/locale/he_IL.js +80 -0
- package/lib/vtx-provider/locale/hr_HR.js +77 -0
- package/lib/vtx-provider/locale/id_ID.js +77 -0
- package/lib/vtx-provider/locale/it_IT.js +77 -0
- package/lib/vtx-provider/locale/ja_JP.js +77 -0
- package/lib/vtx-provider/locale/ko_KR.js +77 -0
- package/lib/vtx-provider/locale/mn_MN.js +77 -0
- package/lib/vtx-provider/locale/ms_MY.js +77 -0
- package/lib/vtx-provider/locale/nl_NL.js +80 -0
- package/lib/vtx-provider/locale/pl_PL.js +77 -0
- package/lib/vtx-provider/locale/pt_BR.js +77 -0
- package/lib/vtx-provider/locale/ro_RO.js +80 -0
- package/lib/vtx-provider/locale/ru_RU.js +77 -0
- package/lib/vtx-provider/locale/sk_SK.js +80 -0
- package/lib/vtx-provider/locale/sr_RS.js +77 -0
- package/lib/vtx-provider/locale/sv_SE.js +80 -0
- package/lib/vtx-provider/locale/th_TH.js +80 -0
- package/lib/vtx-provider/locale/tr_TR.js +77 -0
- package/lib/vtx-provider/locale/uk_UA.js +80 -0
- package/lib/vtx-provider/locale/uz_UZ.js +77 -0
- package/lib/vtx-provider/locale/vi_VN.js +77 -0
- package/lib/vtx-provider/locale/zh_CN.js +189 -0
- package/lib/vtx-provider/locale/zh_HK.js +89 -0
- package/lib/vtx-provider/locale/zh_TW.js +80 -0
- package/lib/vtx-provider/typing/layoutToken.js +66 -0
- package/lib/vtx-provider/useStyle/index.js +112 -0
- package/lib/vtx-provider/utils/merge.js +33 -0
- package/lib/vtx-rps-frame/index.js +173 -0
- package/lib/vtx-rps-frame/style/index.js +32 -0
- package/lib/vtx-scrollable-row/index.js +193 -0
- package/lib/vtx-scrollable-row/style/index.js +114 -0
- package/lib/vtx-search/index.js +355 -0
- package/lib/vtx-search/style/index.js +101 -0
- package/lib/vtx-select/index.js +259 -0
- package/lib/vtx-select/style/index.js +81 -0
- package/lib/vtx-signature/index.js +127 -0
- package/lib/vtx-signature/style/index.js +53 -0
- package/lib/vtx-split-pane/Resizer.js +52 -0
- package/lib/vtx-split-pane/SplitPane.js +68 -0
- package/lib/vtx-split-pane/index.js +15 -0
- package/lib/vtx-split-pane/style/index.js +139 -0
- package/lib/vtx-statistics-column/Back.js +36 -0
- package/lib/vtx-statistics-column/Item.js +62 -0
- package/lib/vtx-statistics-column/Total.js +62 -0
- package/lib/vtx-statistics-column/context.js +8 -0
- package/lib/vtx-statistics-column/index.js +63 -0
- package/lib/vtx-statistics-column/style/index.js +78 -0
- package/lib/vtx-time-picker/index.js +45 -0
- package/lib/vtx-time-picker/style/index.js +1 -0
- package/lib/vtx-tree/index.js +348 -0
- package/lib/vtx-tree/style/index.js +56 -0
- package/lib/vtx-tree/utils.js +80 -0
- package/lib/vtx-tree-select/index.js +296 -0
- package/lib/vtx-tree-select/style/index.js +78 -0
- package/lib/vtx-upload/FilePreview.js +116 -0
- package/lib/vtx-upload/index.js +474 -0
- package/lib/vtx-upload/style/index.js +89 -0
- package/lib/vtx-wang-editor/index.js +251 -0
- package/lib/vtx-wang-editor/style/index.js +39 -0
- package/lib/vtx-wang-editor/style/index.less +12 -0
- package/lib/vtx-wang-editor/wangEditorUtil.js +236 -0
- package/package.json +1 -2
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
4
|
+
var DownloadSvg = function DownloadSvg() {
|
|
5
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "48",
|
|
8
|
+
height: "48",
|
|
9
|
+
viewBox: "0 0 48 48",
|
|
10
|
+
style: {
|
|
11
|
+
flexShrink: 0
|
|
12
|
+
},
|
|
13
|
+
children: [/*#__PURE__*/_jsx("defs", {}), /*#__PURE__*/_jsx("path", {
|
|
14
|
+
className: "a",
|
|
15
|
+
fill: "#e3fff3",
|
|
16
|
+
d: "M88.358,82.88m-24,0a24,24,0,1,0,24-24A24,24,0,0,0,64.358,82.88Z",
|
|
17
|
+
transform: "translate(-64.358 -58.88)"
|
|
18
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
19
|
+
className: "b",
|
|
20
|
+
fill: "#05c46d",
|
|
21
|
+
d: "M281.991,241.484H269.017a1.041,1.041,0,0,1-.714-.284l-2.955-2.784a1.036,1.036,0,0,0-.714-.284h-5.676a3.583,3.583,0,0,0-3.572,3.593v21.5a3.583,3.583,0,0,0,3.572,3.593h23.031a3.583,3.583,0,0,0,3.571-3.593V245.079a3.58,3.58,0,0,0-3.569-3.6Zm-6,15.429-4.2,4.074a1.934,1.934,0,0,1-2.681.016l-4.123-3.9a1.967,1.967,0,0,1-.084-2.765,1.936,1.936,0,0,1,2.749-.085l.864.817v-5.571a1.945,1.945,0,1,1,3.889,0v5.465l.888-.861a1.934,1.934,0,0,1,2.749.049A1.969,1.969,0,0,1,275.986,256.913Z",
|
|
22
|
+
transform: "translate(-245.153 -228.623)"
|
|
23
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
24
|
+
className: "c",
|
|
25
|
+
fill: "#1dce75",
|
|
26
|
+
d: "M285.563,245.08a3.583,3.583,0,0,0-3.572-3.593H269.018a1.041,1.041,0,0,1-.714-.284l-2.955-2.787a1.036,1.036,0,0,0-.714-.284h-5.676a3.583,3.583,0,0,0-3.572,3.593v21.5a3.583,3.583,0,0,0,3.572,3.593h8.859a24,24,0,0,0,17.743-16.047V245.08Zm-9.577,11.834-4.2,4.074a1.933,1.933,0,0,1-2.681.016l-4.123-3.9a1.967,1.967,0,0,1-.084-2.765,1.936,1.936,0,0,1,2.749-.085l.864.817V249.5a1.945,1.945,0,1,1,3.889,0v5.465l.888-.861a1.934,1.934,0,0,1,2.749.049A1.969,1.969,0,0,1,275.987,256.913Z",
|
|
27
|
+
transform: "translate(-245.154 -228.623)"
|
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
|
+
className: "d",
|
|
30
|
+
fill: "#3cd38e",
|
|
31
|
+
d: "M269.017,241.464a1.044,1.044,0,0,1-.714-.282l-2.955-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.572,3.571v16.959c.3.011.6.019.9.019a23.842,23.842,0,0,0,8.743-1.649l-.052-.049a1.944,1.944,0,1,1,2.664-2.833l.864.812v-5.535a1.945,1.945,0,1,1,3.889,0v3.015a23.932,23.932,0,0,0,6.852-10.975H269.017Z",
|
|
32
|
+
transform: "translate(-245.179 -228.563)"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
className: "e",
|
|
35
|
+
fill: "#48e1aa",
|
|
36
|
+
d: "M268.791,241.436a1.016,1.016,0,0,1-.486-.255l-2.958-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.572,3.571v7.963a23.884,23.884,0,0,0,13.406-8.229Z",
|
|
37
|
+
transform: "translate(-245.202 -228.578)"
|
|
38
|
+
})]
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
export default DownloadSvg;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
import { CheckCircleFilled, CloseCircleFilled } from '@ant-design/icons';
|
|
4
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
5
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
7
|
+
var ImportResult = function ImportResult(_ref) {
|
|
8
|
+
var prefixCls = _ref.prefixCls,
|
|
9
|
+
result = _ref.result,
|
|
10
|
+
errorFile = _ref.errorFile,
|
|
11
|
+
errorURL = _ref.errorURL,
|
|
12
|
+
errorDownloadName = _ref.errorDownloadName,
|
|
13
|
+
count = _ref.count,
|
|
14
|
+
token = _ref.token,
|
|
15
|
+
TextEnum = _ref.TextEnum;
|
|
16
|
+
var url = errorURL && errorFile && "".concat(errorURL, "?fileName=").concat(errorFile, "&downloadName=").concat(errorDownloadName || '', "&token=").concat(token);
|
|
17
|
+
return /*#__PURE__*/_jsx("div", {
|
|
18
|
+
className: "".concat(prefixCls, "-result-warp"),
|
|
19
|
+
children: result ? /*#__PURE__*/_jsxs(_Fragment, {
|
|
20
|
+
children: [/*#__PURE__*/_jsx(CheckCircleFilled, {
|
|
21
|
+
style: {
|
|
22
|
+
color: '#52C41A',
|
|
23
|
+
fontSize: '80px'
|
|
24
|
+
}
|
|
25
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
26
|
+
className: "".concat(prefixCls, "-result"),
|
|
27
|
+
children: TextEnum.resultSuccessText
|
|
28
|
+
}), count !== null && /*#__PURE__*/_jsxs("span", {
|
|
29
|
+
className: "".concat(prefixCls, "-result-success-tips"),
|
|
30
|
+
children: [TextEnum.resultInfoTotalText, count, TextEnum.resultInfoDataText]
|
|
31
|
+
})]
|
|
32
|
+
}) : /*#__PURE__*/_jsxs(_Fragment, {
|
|
33
|
+
children: [/*#__PURE__*/_jsx(CloseCircleFilled, {
|
|
34
|
+
style: {
|
|
35
|
+
color: '#ff4d4f',
|
|
36
|
+
fontSize: '80px'
|
|
37
|
+
}
|
|
38
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
39
|
+
className: "".concat(prefixCls, "-result"),
|
|
40
|
+
children: TextEnum.resultFailText
|
|
41
|
+
}), url && /*#__PURE__*/_jsx("a", {
|
|
42
|
+
className: "".concat(prefixCls, "-result-error-tips"),
|
|
43
|
+
href: url,
|
|
44
|
+
children: TextEnum.resultFailReasonDownText
|
|
45
|
+
})]
|
|
46
|
+
})
|
|
47
|
+
});
|
|
48
|
+
};
|
|
49
|
+
ImportResult.propTypes = {
|
|
50
|
+
result: PropTypes.bool,
|
|
51
|
+
errorURL: PropTypes.string,
|
|
52
|
+
token: PropTypes.string,
|
|
53
|
+
errorFile: PropTypes.string,
|
|
54
|
+
errorDownloadName: PropTypes.string,
|
|
55
|
+
count: PropTypes.any
|
|
56
|
+
};
|
|
57
|
+
export default ImportResult;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
4
|
+
var UploadSvg = function UploadSvg() {
|
|
5
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
width: "48",
|
|
8
|
+
height: "48",
|
|
9
|
+
viewBox: "0 0 48 48",
|
|
10
|
+
style: {
|
|
11
|
+
flexShrink: 0
|
|
12
|
+
},
|
|
13
|
+
children: [/*#__PURE__*/_jsx("defs", {}), /*#__PURE__*/_jsx("path", {
|
|
14
|
+
className: "a",
|
|
15
|
+
fill: "#e9ecff",
|
|
16
|
+
d: "M91.072,82.88m-24,0a24,24,0,1,0,24-24A24,24,0,0,0,67.072,82.88Z",
|
|
17
|
+
transform: "translate(-67.072 -58.88)"
|
|
18
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
19
|
+
className: "b",
|
|
20
|
+
fill: "#6c6cea",
|
|
21
|
+
d: "M263.967,241.484H250.918a1.05,1.05,0,0,1-.718-.284l-2.972-2.784a1.045,1.045,0,0,0-.718-.284H240.8a3.593,3.593,0,0,0-3.592,3.593v21.5a3.593,3.593,0,0,0,3.592,3.593h23.163a3.593,3.593,0,0,0,3.592-3.593V245.079a3.59,3.59,0,0,0-3.589-3.6Zm-5.881,13.44a1.952,1.952,0,0,1-2.764.049l-.893-.861v5.465a1.956,1.956,0,1,1-3.911,0V254l-.869.817a1.955,1.955,0,1,1-2.68-2.847l4.146-3.9a1.953,1.953,0,0,1,2.7.016l4.223,4.074a1.951,1.951,0,0,1,.052,2.765Z",
|
|
22
|
+
transform: "translate(-228.184 -228.623)"
|
|
23
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
24
|
+
className: "c",
|
|
25
|
+
fill: "#757bf2",
|
|
26
|
+
d: "M267.558,245.08a3.593,3.593,0,0,0-3.592-3.593H250.918a1.05,1.05,0,0,1-.718-.284l-2.972-2.787a1.045,1.045,0,0,0-.718-.284H240.8a3.593,3.593,0,0,0-3.592,3.593v21.5a3.593,3.593,0,0,0,3.592,3.593h10.7a24.089,24.089,0,0,0,16.05-18.307V245.08Zm-9.473,9.845a1.953,1.953,0,0,1-2.764.049l-.893-.861v5.465a1.956,1.956,0,1,1-3.911,0V254l-.869.817a1.955,1.955,0,1,1-2.68-2.847l4.146-3.9a1.953,1.953,0,0,1,2.7.016l4.223,4.074a1.951,1.951,0,0,1,.052,2.765Z",
|
|
27
|
+
transform: "translate(-228.184 -228.623)"
|
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
|
+
className: "d",
|
|
30
|
+
fill: "#8486f8",
|
|
31
|
+
d: "M250.841,241.464a1.044,1.044,0,0,1-.714-.282l-2.955-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.571,3.571v17.662l.147,0a23.808,23.808,0,0,0,13.088-3.9v-1.562l-.864.812a1.943,1.943,0,1,1-2.664-2.83l4.123-3.881a1.942,1.942,0,0,1,2.681.016l2.371,2.287a23.835,23.835,0,0,0,4.416-8.851h-9.666Z",
|
|
32
|
+
transform: "translate(-228.121 -228.561)"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
className: "e",
|
|
35
|
+
fill: "#8d92f8",
|
|
36
|
+
d: "M250.442,241.382a1.072,1.072,0,0,1-.315-.2l-2.955-2.768a1.039,1.039,0,0,0-.714-.282h-5.676a3.572,3.572,0,0,0-3.571,3.571v8.477a23.93,23.93,0,0,0,13.232-8.8Z",
|
|
37
|
+
transform: "translate(-228.139 -228.577)"
|
|
38
|
+
})]
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
export default UploadSvg;
|
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
3
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
4
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
5
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
6
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
7
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
8
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
9
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
10
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
11
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
12
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
13
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
14
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
17
|
+
import React, { useRef, useContext } from 'react';
|
|
18
|
+
import PropTypes from 'prop-types';
|
|
19
|
+
import { Button, message, Modal, ConfigProvider, Input } from 'antd';
|
|
20
|
+
import Content from "./Content";
|
|
21
|
+
import { useState } from 'react';
|
|
22
|
+
import ImportResult from "./ImportResult";
|
|
23
|
+
import { useInterval } from 'ahooks';
|
|
24
|
+
import { useEffect } from 'react';
|
|
25
|
+
import getToken from "../utils/getToken";
|
|
26
|
+
import getSignature from '@vtx/utils/lib/getSignature';
|
|
27
|
+
import useSet from "../utils/useSet";
|
|
28
|
+
import md5 from 'md5';
|
|
29
|
+
import { getVtxToken } from '@vtx/utils';
|
|
30
|
+
import classnames from 'classnames';
|
|
31
|
+
import { useStyle } from "./style/index";
|
|
32
|
+
import { VtxProvider, useIntl } from "../vtx-provider";
|
|
33
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
34
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
35
|
+
function getFileName() {
|
|
36
|
+
var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
|
|
37
|
+
var intl = useIntl();
|
|
38
|
+
var index = name.lastIndexOf('.');
|
|
39
|
+
var suffix = name.substring(index);
|
|
40
|
+
return name.substring(0, index) + "(".concat(intl.getMessage('import.errorFile', '错误文件'), ")") + suffix;
|
|
41
|
+
}
|
|
42
|
+
var VtxImport2 = function VtxImport2(props) {
|
|
43
|
+
var intl = useIntl();
|
|
44
|
+
var _useContext = useContext(VtxProvider),
|
|
45
|
+
getPrefixCls = _useContext.getPrefixCls;
|
|
46
|
+
var prefixCls = getPrefixCls('import2', props.prefixCls);
|
|
47
|
+
var _useStyle = useStyle(prefixCls),
|
|
48
|
+
wrapSSR = _useStyle.wrapSSR,
|
|
49
|
+
hashId = _useStyle.hashId;
|
|
50
|
+
var visible = props.visible,
|
|
51
|
+
close = props.close,
|
|
52
|
+
title = props.title,
|
|
53
|
+
accept = props.accept,
|
|
54
|
+
fileKey = props.fileKey,
|
|
55
|
+
uploadURL = props.uploadURL,
|
|
56
|
+
postData = props.postData,
|
|
57
|
+
errorURL = props.errorURL,
|
|
58
|
+
templateURL = props.templateURL,
|
|
59
|
+
afterUpload = props.afterUpload,
|
|
60
|
+
errorDownloadName = props.errorDownloadName,
|
|
61
|
+
customText = props.customText,
|
|
62
|
+
_props$customEnumText = props.customEnumText,
|
|
63
|
+
customEnumText = _props$customEnumText === void 0 ? {} : _props$customEnumText,
|
|
64
|
+
_props$extraText = props.extraText,
|
|
65
|
+
extraText = _props$extraText === void 0 ? '' : _props$extraText,
|
|
66
|
+
beforeUpload = props.beforeUpload,
|
|
67
|
+
width = props.width,
|
|
68
|
+
extraDom = props.extraDom,
|
|
69
|
+
_props$operation = props.operation,
|
|
70
|
+
operation = _props$operation === void 0 ? intl.getMessage('import.operation', '导入') : _props$operation;
|
|
71
|
+
var TextEnum = _objectSpread({
|
|
72
|
+
headSubTitleText: intl.getMessage('import.operation', '导入'),
|
|
73
|
+
btnCloseText: intl.getMessage('switch.close', '关闭'),
|
|
74
|
+
btnUploadText: intl.getMessage('import.upload', '上传'),
|
|
75
|
+
btnReUploadText: intl.getMessage('import.reUpload', '再次上传'),
|
|
76
|
+
btnImportText: intl.getMessage('import.operation', '导入'),
|
|
77
|
+
msgUploadWarningText: intl.getMessage('import.pleaseSelectFile', '请选择需要上传的文件'),
|
|
78
|
+
normalTemplateInfoText: intl.getMessage('import.templateInfo', '没有模板?点击此处下载'),
|
|
79
|
+
normalSelectFileInfoText: intl.getMessage('import.selectFileInfo', '点击选择文件(支持excel格式)'),
|
|
80
|
+
normalReChooseFileText: intl.getMessage('import.reChooseFile', '重新选择文件'),
|
|
81
|
+
resultSuccessText: intl.getMessage('import.resultSuccess', '导入成功'),
|
|
82
|
+
resultFailText: intl.getMessage('import.resultFail', '导入失败'),
|
|
83
|
+
resultFailReasonDownText: intl.getMessage('import.failReasonDown', '下载文件,查看导入失败原因'),
|
|
84
|
+
resultInfoTotalText: intl.getMessage('import.resultInfoTotal', '本次共计'),
|
|
85
|
+
resultInfoDataText: intl.getMessage('import.resultInfoData', '条数据'),
|
|
86
|
+
resultNetworkErrorText: intl.getMessage('fallback.serverException', '服务器异常')
|
|
87
|
+
}, customEnumText);
|
|
88
|
+
var _useState = useState(0),
|
|
89
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
90
|
+
status = _useState2[0],
|
|
91
|
+
setStatus = _useState2[1]; // 0:首页,1:结果页
|
|
92
|
+
var _useState3 = useState(false),
|
|
93
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
94
|
+
result = _useState4[0],
|
|
95
|
+
setResult = _useState4[1];
|
|
96
|
+
var _useState5 = useState(5),
|
|
97
|
+
_useState6 = _slicedToArray(_useState5, 2),
|
|
98
|
+
countdown = _useState6[0],
|
|
99
|
+
setCountdown = _useState6[1];
|
|
100
|
+
var _useState7 = useState([]),
|
|
101
|
+
_useState8 = _slicedToArray(_useState7, 2),
|
|
102
|
+
fileList = _useState8[0],
|
|
103
|
+
setFileList = _useState8[1];
|
|
104
|
+
var _useState9 = useState(undefined),
|
|
105
|
+
_useState10 = _slicedToArray(_useState9, 2),
|
|
106
|
+
interval = _useState10[0],
|
|
107
|
+
setInterval = _useState10[1];
|
|
108
|
+
var _useState11 = useState(''),
|
|
109
|
+
_useState12 = _slicedToArray(_useState11, 2),
|
|
110
|
+
errorFile = _useState12[0],
|
|
111
|
+
setErrorFile = _useState12[1];
|
|
112
|
+
var _useState13 = useState(false),
|
|
113
|
+
_useState14 = _slicedToArray(_useState13, 2),
|
|
114
|
+
uploading = _useState14[0],
|
|
115
|
+
setUploading = _useState14[1];
|
|
116
|
+
var _useState15 = useState(0),
|
|
117
|
+
_useState16 = _slicedToArray(_useState15, 2),
|
|
118
|
+
count = _useState16[0],
|
|
119
|
+
setCount = _useState16[1];
|
|
120
|
+
var fileInputRef = useRef();
|
|
121
|
+
var fileName = useRef('');
|
|
122
|
+
var indexRef = useRef(0);
|
|
123
|
+
var _useSet = useSet({
|
|
124
|
+
step: 1,
|
|
125
|
+
chunkSize: props.chunkSize || 10 * 1024 * 1024,
|
|
126
|
+
totalChunk: 0,
|
|
127
|
+
currentIndex: 0,
|
|
128
|
+
chunkId: '',
|
|
129
|
+
chunks: []
|
|
130
|
+
}),
|
|
131
|
+
_useSet2 = _slicedToArray(_useSet, 2),
|
|
132
|
+
state = _useSet2[0],
|
|
133
|
+
setState = _useSet2[1];
|
|
134
|
+
var token = getToken();
|
|
135
|
+
if (!token) {
|
|
136
|
+
token = props.token;
|
|
137
|
+
}
|
|
138
|
+
var newErrorDownloadName = errorDownloadName;
|
|
139
|
+
if (!errorDownloadName) {
|
|
140
|
+
newErrorDownloadName = fileName.current;
|
|
141
|
+
}
|
|
142
|
+
useInterval(function () {
|
|
143
|
+
if (countdown === 0) {
|
|
144
|
+
return close();
|
|
145
|
+
}
|
|
146
|
+
setCountdown(countdown - 1);
|
|
147
|
+
}, interval);
|
|
148
|
+
useEffect(function () {
|
|
149
|
+
if (fileList.length !== 0) {
|
|
150
|
+
fileName.current = getFileName(fileList[0].name);
|
|
151
|
+
}
|
|
152
|
+
}, [fileList]);
|
|
153
|
+
|
|
154
|
+
// 开始准备文件
|
|
155
|
+
function checkFile(file) {
|
|
156
|
+
if (file.size <= state.chunkSize) {
|
|
157
|
+
upload(file);
|
|
158
|
+
} else {
|
|
159
|
+
setState({
|
|
160
|
+
mode: 'spread'
|
|
161
|
+
});
|
|
162
|
+
var chunks = spreadFile(file);
|
|
163
|
+
setState({
|
|
164
|
+
chunks: chunks,
|
|
165
|
+
chunkId: md5("".concat(new Date().valueOf()).concat(Math.random())),
|
|
166
|
+
totalChunk: chunks.length,
|
|
167
|
+
step: 2
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
// 开始上传
|
|
172
|
+
function startUpload() {
|
|
173
|
+
var dataArr = [];
|
|
174
|
+
state.chunks.forEach(function (e, i) {
|
|
175
|
+
//创建formdata对象
|
|
176
|
+
var data = new FormData();
|
|
177
|
+
// data.append("totalNumber", state.chunks.length)
|
|
178
|
+
data.append('chunkSize', state.chunks.length);
|
|
179
|
+
data.append('chunkNo', i + 1);
|
|
180
|
+
data.append('chunkId', state.chunkId);
|
|
181
|
+
data.append('tenantId', getVtxToken('tenantId'));
|
|
182
|
+
data.append('file', new File([e], fileList[0].name));
|
|
183
|
+
dataArr.push(data);
|
|
184
|
+
});
|
|
185
|
+
uploadAsync(dataArr);
|
|
186
|
+
}
|
|
187
|
+
// 上传
|
|
188
|
+
function uploadAsync(list) {
|
|
189
|
+
if (indexRef.current < list.length) {
|
|
190
|
+
var xhr = new XMLHttpRequest();
|
|
191
|
+
xhr.onload = function () {
|
|
192
|
+
if (xhr.status === 200) {
|
|
193
|
+
setState({
|
|
194
|
+
currentIndex: indexRef.current + 1
|
|
195
|
+
});
|
|
196
|
+
indexRef.current += 1;
|
|
197
|
+
uploadAsync(list);
|
|
198
|
+
}
|
|
199
|
+
};
|
|
200
|
+
xhr.onerror = function () {
|
|
201
|
+
message.error(intl.getMessage('import.error', '上传失败'));
|
|
202
|
+
};
|
|
203
|
+
// 发送请求
|
|
204
|
+
xhr.open('POST', '/cloudFile/common/uploadChunk', true);
|
|
205
|
+
xhr.send(list[indexRef.current]);
|
|
206
|
+
} else {
|
|
207
|
+
mergeFile();
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
// 合并分片
|
|
211
|
+
function mergeFile() {
|
|
212
|
+
var xhr = new XMLHttpRequest();
|
|
213
|
+
// 当上传完成时调用
|
|
214
|
+
xhr.onload = function () {
|
|
215
|
+
if (xhr.status === 200) {
|
|
216
|
+
var res = JSON.parse(xhr.responseText);
|
|
217
|
+
if ((res === null || res === void 0 ? void 0 : res.result) == 0) {
|
|
218
|
+
message.success('上传成功');
|
|
219
|
+
chunkUpload(res.data);
|
|
220
|
+
} else {
|
|
221
|
+
message.error((res === null || res === void 0 ? void 0 : res.msg) || intl.getMessage('import.error', '上传失败'));
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
};
|
|
225
|
+
xhr.onerror = function () {
|
|
226
|
+
message.error(intl.getMessage('import.error', '上传失败'));
|
|
227
|
+
};
|
|
228
|
+
// 发送请求
|
|
229
|
+
xhr.open('POST', '/cloudFile/common/mergeChunk', true);
|
|
230
|
+
var data = new FormData();
|
|
231
|
+
data.append('chunkId', state.chunkId);
|
|
232
|
+
data.append('tenantId', getVtxToken('tenantId'));
|
|
233
|
+
data.append('chunkSize', state.chunks.length);
|
|
234
|
+
data.append('fileName', fileList[0].name);
|
|
235
|
+
xhr.send(data);
|
|
236
|
+
}
|
|
237
|
+
// 合并切片后上传
|
|
238
|
+
function chunkUpload(data) {
|
|
239
|
+
var postUrl = getPostURL();
|
|
240
|
+
var fmd = new FormData();
|
|
241
|
+
fmd.append('fileId', data[0].id);
|
|
242
|
+
var request = new XMLHttpRequest();
|
|
243
|
+
request.open('POST', postUrl);
|
|
244
|
+
var signature = getSignature(postData);
|
|
245
|
+
for (var key in signature) {
|
|
246
|
+
request.setRequestHeader(key, signature[key]);
|
|
247
|
+
}
|
|
248
|
+
request.setRequestHeader('Authorization', token ? "Bearer ".concat(token) : '');
|
|
249
|
+
request.setRequestHeader('access_token', token ? "".concat(token) : '');
|
|
250
|
+
// 添加操作日志
|
|
251
|
+
request.setRequestHeader('operation', encodeURIComponent(JSON.stringify({
|
|
252
|
+
menuId: sessionStorage.getItem('vtxmenuselectedKeys'),
|
|
253
|
+
operation: operation
|
|
254
|
+
})));
|
|
255
|
+
request.onreadystatechange = function (e) {
|
|
256
|
+
if (e.target.readyState == 4) {
|
|
257
|
+
dealResult(e.target.response);
|
|
258
|
+
}
|
|
259
|
+
};
|
|
260
|
+
request.send(fmd);
|
|
261
|
+
}
|
|
262
|
+
function upload(files) {
|
|
263
|
+
var postUrl = getPostURL();
|
|
264
|
+
var fmd = new FormData();
|
|
265
|
+
fmd.append(fileKey, files);
|
|
266
|
+
var request = new XMLHttpRequest();
|
|
267
|
+
request.open('POST', postUrl);
|
|
268
|
+
var signature = getSignature(postData);
|
|
269
|
+
for (var key in signature) {
|
|
270
|
+
request.setRequestHeader(key, signature[key]);
|
|
271
|
+
}
|
|
272
|
+
request.setRequestHeader('Authorization', token ? "Bearer ".concat(token) : '');
|
|
273
|
+
request.setRequestHeader('access_token', token ? "".concat(token) : '');
|
|
274
|
+
// 添加操作日志
|
|
275
|
+
request.setRequestHeader('operation', encodeURIComponent(JSON.stringify({
|
|
276
|
+
menuId: sessionStorage.getItem('vtxmenuselectedKeys'),
|
|
277
|
+
operation: operation
|
|
278
|
+
})));
|
|
279
|
+
request.onreadystatechange = function (e) {
|
|
280
|
+
if (e.target.readyState == 4) {
|
|
281
|
+
dealResult(e.target.response);
|
|
282
|
+
}
|
|
283
|
+
};
|
|
284
|
+
request.send(fmd);
|
|
285
|
+
}
|
|
286
|
+
// 切片文件
|
|
287
|
+
function spreadFile(file) {
|
|
288
|
+
var chunks = [];
|
|
289
|
+
var start = 0;
|
|
290
|
+
var end;
|
|
291
|
+
while (start < file.size) {
|
|
292
|
+
end = Math.min(start + state.chunkSize, file.size);
|
|
293
|
+
chunks.push(file.slice(start, end));
|
|
294
|
+
start = end;
|
|
295
|
+
}
|
|
296
|
+
return chunks;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// 获取上传地址(拼接参数)
|
|
300
|
+
var getPostURL = function getPostURL() {
|
|
301
|
+
var postUrl = uploadURL;
|
|
302
|
+
var postArray = [];
|
|
303
|
+
for (var k in postData) {
|
|
304
|
+
if (postData[k] !== undefined && postData[k] !== null && postData[k] !== '') {
|
|
305
|
+
postArray.push("".concat(k, "=").concat(encodeURIComponent(postData[k])));
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
return postArray.length > 0 ? "".concat(postUrl, "?").concat(postArray.join('&')) : postUrl;
|
|
309
|
+
};
|
|
310
|
+
var dealResult = function dealResult(response) {
|
|
311
|
+
setUploading(false);
|
|
312
|
+
var parseData = JSON.parse(response);
|
|
313
|
+
setStatus(1);
|
|
314
|
+
if (typeof props.afterUpload === 'function') {
|
|
315
|
+
afterUpload(parseData);
|
|
316
|
+
}
|
|
317
|
+
if (parseData.result === 0) {
|
|
318
|
+
setResult(true);
|
|
319
|
+
setCountdown(5);
|
|
320
|
+
setInterval(1000);
|
|
321
|
+
setCount(parseData.data);
|
|
322
|
+
} else if (parseData.result === 1) {
|
|
323
|
+
setResult(false);
|
|
324
|
+
setFileList([]);
|
|
325
|
+
if (parseData.data) {
|
|
326
|
+
setErrorFile(parseData.data);
|
|
327
|
+
} else {
|
|
328
|
+
message.error((parseData === null || parseData === void 0 ? void 0 : parseData.msg) || TextEnum.resultNetworkErrorText);
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
};
|
|
332
|
+
var onUpload = function onUpload(_ref) {
|
|
333
|
+
var _ref$files = _ref.files,
|
|
334
|
+
files = _ref$files === void 0 ? fileList : _ref$files;
|
|
335
|
+
if (typeof props.beforeUpload === 'function') {
|
|
336
|
+
var flag = beforeUpload(files[0]);
|
|
337
|
+
if (!flag) {
|
|
338
|
+
setFileList([]);
|
|
339
|
+
return;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
if (files.length === 0) {
|
|
343
|
+
return message.info(TextEnum.msgUploadWarningText);
|
|
344
|
+
}
|
|
345
|
+
setUploading(true);
|
|
346
|
+
// 上传文件
|
|
347
|
+
checkFile(files[0]);
|
|
348
|
+
};
|
|
349
|
+
var againUpload = function againUpload() {
|
|
350
|
+
setInterval(undefined);
|
|
351
|
+
setFileList([]);
|
|
352
|
+
fileInputRef.current && fileInputRef.current.click();
|
|
353
|
+
};
|
|
354
|
+
var onFileChange = function onFileChange() {
|
|
355
|
+
var fileList = _toConsumableArray(fileInputRef.current.files);
|
|
356
|
+
setFileList(fileList);
|
|
357
|
+
onUpload({
|
|
358
|
+
files: fileList
|
|
359
|
+
});
|
|
360
|
+
};
|
|
361
|
+
useEffect(function () {
|
|
362
|
+
if (state.chunkId) {
|
|
363
|
+
startUpload();
|
|
364
|
+
}
|
|
365
|
+
}, [state.chunkId]);
|
|
366
|
+
var modelProps = {
|
|
367
|
+
open: visible,
|
|
368
|
+
width: width || 392,
|
|
369
|
+
maskClosable: false,
|
|
370
|
+
footer: [/*#__PURE__*/_jsx(Button, {
|
|
371
|
+
onClick: close,
|
|
372
|
+
children: "".concat(TextEnum.btnCloseText).concat(status === 1 && result ? '(' + countdown + ')' : '')
|
|
373
|
+
}, "closeWindow"), (status === 0 || status === 1 && !result) && /*#__PURE__*/_jsx(Button, {
|
|
374
|
+
type: "primary",
|
|
375
|
+
loading: uploading,
|
|
376
|
+
onClick: status === 0 ? onUpload : againUpload,
|
|
377
|
+
children: status === 0 ? TextEnum.btnUploadText : result ? "".concat(TextEnum.btnImportText, "(").concat(countdown, ")") : TextEnum.btnReUploadText
|
|
378
|
+
}, "uploadSubmit")],
|
|
379
|
+
onCancel: close,
|
|
380
|
+
title: /*#__PURE__*/_jsxs("div", {
|
|
381
|
+
className: classnames("".concat(prefixCls, "-modal-header-title"), hashId),
|
|
382
|
+
children: [/*#__PURE__*/_jsx("span", {
|
|
383
|
+
className: classnames("".concat(prefixCls, "-modal-header-text"), hashId),
|
|
384
|
+
children: title
|
|
385
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
386
|
+
className: classnames("".concat(prefixCls, "-modal-header-subtitle"), hashId),
|
|
387
|
+
children: TextEnum.headSubTitleText
|
|
388
|
+
})]
|
|
389
|
+
})
|
|
390
|
+
};
|
|
391
|
+
return wrapSSR( /*#__PURE__*/_jsxs(Modal, _objectSpread(_objectSpread({}, modelProps), {}, {
|
|
392
|
+
children: [status === 0 ? /*#__PURE__*/_jsx(Content, {
|
|
393
|
+
prefixCls: prefixCls,
|
|
394
|
+
fileList: fileList,
|
|
395
|
+
setFileList: setFileList,
|
|
396
|
+
accept: accept,
|
|
397
|
+
fileKey: fileKey,
|
|
398
|
+
templateURL: templateURL,
|
|
399
|
+
customText: customText,
|
|
400
|
+
TextEnum: TextEnum,
|
|
401
|
+
extraText: extraText,
|
|
402
|
+
extraDom: extraDom
|
|
403
|
+
}) : /*#__PURE__*/_jsx(ImportResult, {
|
|
404
|
+
prefixCls: prefixCls,
|
|
405
|
+
result: result,
|
|
406
|
+
count: count,
|
|
407
|
+
errorFile: errorFile,
|
|
408
|
+
errorURL: errorURL,
|
|
409
|
+
token: token,
|
|
410
|
+
errorDownloadName: newErrorDownloadName,
|
|
411
|
+
TextEnum: TextEnum
|
|
412
|
+
}), /*#__PURE__*/_jsx("input", {
|
|
413
|
+
type: "file",
|
|
414
|
+
name: fileKey,
|
|
415
|
+
accept: accept,
|
|
416
|
+
ref: fileInputRef,
|
|
417
|
+
style: {
|
|
418
|
+
display: 'none'
|
|
419
|
+
},
|
|
420
|
+
onChange: onFileChange,
|
|
421
|
+
value: fileList.length === 0 ? '' : fileList[0].fileName
|
|
422
|
+
})]
|
|
423
|
+
})));
|
|
424
|
+
};
|
|
425
|
+
VtxImport2.defaultProps = {
|
|
426
|
+
fileKey: 'file',
|
|
427
|
+
accept: 'application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,text/csv',
|
|
428
|
+
postData: {}
|
|
429
|
+
};
|
|
430
|
+
VtxImport2.propTypes = {
|
|
431
|
+
visible: PropTypes.bool,
|
|
432
|
+
templateURL: PropTypes.string,
|
|
433
|
+
uploadURL: PropTypes.string,
|
|
434
|
+
title: PropTypes.string,
|
|
435
|
+
postData: PropTypes.object,
|
|
436
|
+
fileKey: PropTypes.string,
|
|
437
|
+
accept: PropTypes.string,
|
|
438
|
+
close: PropTypes.func,
|
|
439
|
+
errorURL: PropTypes.string,
|
|
440
|
+
errorDownloadName: PropTypes.string,
|
|
441
|
+
afterUpload: PropTypes.func,
|
|
442
|
+
token: PropTypes.string,
|
|
443
|
+
customText: PropTypes.string,
|
|
444
|
+
extraText: PropTypes.string,
|
|
445
|
+
operation: PropTypes.string,
|
|
446
|
+
customEnumText: PropTypes.object,
|
|
447
|
+
beforeUpload: PropTypes.func,
|
|
448
|
+
chunkSize: PropTypes.number,
|
|
449
|
+
width: PropTypes.number,
|
|
450
|
+
extraDom: [PropTypes.string, PropTypes.node]
|
|
451
|
+
};
|
|
452
|
+
export { VtxImport2 };
|
|
453
|
+
export default VtxImport2;
|