@cloudbase/weda-ui 3.3.0 → 3.3.2
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/configs/components/chart/bar.json +281 -47
- package/dist/configs/components/chart/line.json +245 -48
- package/dist/configs/components/chart/pie.json +227 -42
- package/dist/configs/components/dataView.json +9 -1
- package/dist/configs/components/form/form.json +4 -0
- package/dist/configs/components/form/select.json +18 -0
- package/dist/docs/common/tableView.js +0 -3
- package/dist/setupTests.d.ts +2 -1
- package/dist/setupTests.js +6 -1
- package/dist/web/actions/showModal/index.js +0 -1
- package/dist/web/components/calendar/index.js +40 -38
- package/dist/web/components/carousel/index.js +62 -62
- package/dist/web/components/chart/bar/index.d.ts +2 -40
- package/dist/web/components/chart/bar/index.js +44 -55
- package/dist/{src/web → web}/components/chart/bar/index.old.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/bar/index.old.js +0 -0
- package/dist/{src/web → web}/components/chart/common/Chart.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/common/Chart.js +0 -0
- package/dist/{src/web → web}/components/chart/common/chart-custom-connector.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/common/chart-custom-connector.js +0 -0
- package/dist/{src/web → web}/components/chart/common/chart-error.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/common/chart-error.js +0 -0
- package/dist/web/components/chart/common/core/eChartBar.d.ts +1 -3
- package/dist/web/components/chart/common/core/eChartBar.js +6 -3
- package/dist/web/components/chart/common/core/eChartBase.d.ts +2 -3
- package/dist/web/components/chart/common/core/eChartBase.js +47 -5
- package/dist/web/components/chart/common/core/eChartLine.d.ts +1 -3
- package/dist/web/components/chart/common/core/eChartLine.js +6 -3
- package/dist/web/components/chart/common/core/eChartPie.d.ts +1 -3
- package/dist/web/components/chart/common/core/eChartPie.js +6 -3
- package/dist/{src/web → web}/components/chart/common/data-transform.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/common/data-transform.js +0 -0
- package/dist/web/components/chart/common/echarts.d.ts +3 -0
- package/dist/web/components/chart/common/useChart.js +23 -11
- package/dist/web/components/chart/line/index.d.ts +2 -38
- package/dist/web/components/chart/line/index.js +41 -52
- package/dist/{src/web → web}/components/chart/line/index.old.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/line/index.old.js +0 -0
- package/dist/web/components/chart/pie/index.d.ts +2 -26
- package/dist/web/components/chart/pie/index.js +41 -39
- package/dist/{src/web → web}/components/chart/pie/index.old.d.ts +0 -0
- package/dist/{src/web → web}/components/chart/pie/index.old.js +0 -0
- package/dist/{src/web → web}/components/common/error-boundary.d.ts +0 -0
- package/dist/{src/web → web}/components/common/error-boundary.js +0 -0
- package/dist/{src/web → web}/components/common/portal.d.ts +0 -0
- package/dist/{src/web → web}/components/common/portal.js +0 -0
- package/dist/{src/web → web}/components/common/use-loop-render-detect.d.ts +0 -0
- package/dist/{src/web → web}/components/common/use-loop-render-detect.js +0 -0
- package/dist/web/components/form/checkbox/index.js +29 -29
- package/dist/web/components/form/enumSelect/MultipleSelect.d.ts +2 -2
- package/dist/web/components/form/enumSelect/NormalSelect.d.ts +2 -2
- package/dist/web/components/form/enumSelect/index.d.ts +2 -2
- package/dist/web/components/form/enumSelect/props/propsTypes.d.ts +2 -2
- package/dist/web/components/form/form/index.js +46 -0
- package/dist/web/components/form/input/index.js +13 -5
- package/dist/web/components/form/location/common/mapChoose.js +7 -6
- package/dist/web/components/form/location/common/mapView.js +9 -6
- package/dist/web/components/form/location/common/propsConfig.d.ts +1 -1
- package/dist/{src/web → web}/components/form/location/common/tmap.d.ts +0 -0
- package/dist/{src/web → web}/components/form/location/common/tmap.js +0 -0
- package/dist/web/components/form/location/common/useLocationInfo.d.ts +1 -1
- package/dist/web/components/form/location/common/useLocationInfo.js +3 -2
- package/dist/web/components/form/location/components/LocationH5/location.h5.js +6 -3
- package/dist/web/components/form/location/components/LocationPC/location.PC.js +5 -1
- package/dist/web/components/form/location/index.js +7 -0
- package/dist/web/components/form/radio/index.js +3 -3
- package/dist/{src/web → web}/components/form/select/allTimePicker/calendar.d.ts +0 -0
- package/dist/{src/web → web}/components/form/select/allTimePicker/calendar.js +0 -0
- package/dist/{src/web → web}/components/form/select/allTimePicker/dataUtils.d.ts +0 -0
- package/dist/{src/web → web}/components/form/select/allTimePicker/dataUtils.js +0 -0
- package/dist/{src/web → web}/components/form/select/allTimePicker/index.d.ts +0 -0
- package/dist/{src/web → web}/components/form/select/allTimePicker/index.js +0 -0
- package/dist/web/components/form/select/h5.d.ts +1 -1
- package/dist/web/components/form/select/h5.js +63 -7
- package/dist/web/components/form/select/index.d.ts +3 -2
- package/dist/web/components/form/select/index.js +25 -2
- package/dist/web/components/form/select/use-options.js +1 -1
- package/dist/web/components/form/select/year.js +1 -1
- package/dist/web/components/form/switch/index.js +2 -2
- package/dist/web/components/form/textarea/index.js +1 -1
- package/dist/web/components/form/uploader/uploader.h5.js +17 -42
- package/dist/web/components/form/uploader/uploader.pc.js +22 -28
- package/dist/web/components/form/uploaderFile/uploadFile.h5.js +18 -25
- package/dist/web/components/form/uploaderFile/uploadFile.pc.js +12 -23
- package/dist/web/components/form/userOrgSelect/comTool.d.ts +1 -0
- package/dist/web/components/form/userOrgSelect/comTool.js +25 -13
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.d.ts +2 -3
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.js +65 -64
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.d.ts +2 -2
- package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.js +41 -37
- package/dist/{src/web → web}/components/form/userOrgSelect/getUserService.d.ts +0 -0
- package/dist/{src/web → web}/components/form/userOrgSelect/getUserService.js +0 -0
- package/dist/web/components/form/userOrgSelect/userTreeSelect.h5.d.ts +7 -4
- package/dist/web/components/form/userOrgSelect/userTreeSelect.h5.js +62 -58
- package/dist/web/components/form/userOrgSelect/userTreeSelect.pc.d.ts +4 -4
- package/dist/web/components/form/userOrgSelect/userTreeSelect.pc.js +133 -109
- package/dist/web/components/form/userOrgSelect/utils.d.ts +3 -2
- package/dist/web/components/form/userOrgSelect/utils.js +24 -16
- package/dist/web/components/formdetail/index.js +14 -11
- package/dist/web/components/graphicCard/index.d.ts +16 -1
- package/dist/web/components/graphicCard/index.js +42 -30
- package/dist/web/components/image/index.js +4 -18
- package/dist/web/components/index.js +3 -1
- package/dist/web/components/listView/index.js +20 -9
- package/dist/web/components/lottery/index.js +10 -16
- package/dist/web/components/lottery/lotteryUtil.js +1 -1
- package/dist/web/components/modal/index.js +1 -1
- package/dist/web/components/navLayout/index.d.ts +16 -1
- package/dist/web/components/navLayout/index.js +31 -20
- package/dist/web/components/navigationBar/horizontalMenu.js +1 -1
- package/dist/web/components/navigationBar/index.js +13 -8
- package/dist/web/components/richText/index.js +1 -2
- package/dist/web/components/richTextView/index.js +20 -18
- package/dist/web/components/scrollView/index.d.ts +1 -2
- package/dist/web/components/scrollView/index.js +7 -5
- package/dist/web/components/swiper/index.js +62 -62
- package/dist/web/components/tabs/index.js +6 -1
- package/dist/web/components/tabs/tabs.h5.js +2 -0
- package/dist/web/components/text/index.js +10 -8
- package/dist/web/components/uploaderFileView/index.js +3 -18
- package/dist/web/components/uploaderView/index.js +1 -1
- package/dist/web/components/wedaVideo/index.js +21 -25
- package/dist/{src/web → web}/utils/console.d.ts +0 -0
- package/dist/{src/web → web}/utils/console.js +0 -0
- package/dist/web/utils/platform.js +1 -1
- package/dist/web/utils/tcb.d.ts +12 -6
- package/dist/web/utils/tcb.js +13 -0
- package/dist/web/utils/use-cloud-id-temp-url.js +3 -1
- package/dist/web/utils/useSyncValue.js +1 -0
- package/package.json +1 -1
- package/dist/cypress/support/commands.d.ts +0 -1
- package/dist/cypress/support/commands.js +0 -40
- package/dist/cypress/support/e2e.d.ts +0 -24
- package/dist/cypress/support/e2e.js +0 -22
- package/dist/src/configs/actions/showModal.json +0 -48
- package/dist/src/configs/actions/showToast.json +0 -41
- package/dist/src/configs/components/auth.json +0 -16
- package/dist/src/configs/components/button.json +0 -239
- package/dist/src/configs/components/calendar.json +0 -81
- package/dist/src/configs/components/carousel.json +0 -292
- package/dist/src/configs/components/chart/bar.json +0 -962
- package/dist/src/configs/components/chart/line.json +0 -878
- package/dist/src/configs/components/chart/pie.json +0 -685
- package/dist/src/configs/components/chart/statisticsCard.json +0 -376
- package/dist/src/configs/components/container.json +0 -50
- package/dist/src/configs/components/dataView.json +0 -247
- package/dist/src/configs/components/drawer.json +0 -115
- package/dist/src/configs/components/form/checkbox.json +0 -179
- package/dist/src/configs/components/form/departTreeSelect.json +0 -124
- package/dist/src/configs/components/form/form.json +0 -73
- package/dist/src/configs/components/form/input.json +0 -154
- package/dist/src/configs/components/form/location.json +0 -216
- package/dist/src/configs/components/form/radio.json +0 -203
- package/dist/src/configs/components/form/richText.json +0 -133
- package/dist/src/configs/components/form/select.json +0 -449
- package/dist/src/configs/components/form/switch.json +0 -58
- package/dist/src/configs/components/form/textarea.json +0 -116
- package/dist/src/configs/components/form/tips.json +0 -34
- package/dist/src/configs/components/form/uploader.json +0 -171
- package/dist/src/configs/components/form/uploaderFile.json +0 -158
- package/dist/src/configs/components/form/userTreeSelect.json +0 -128
- package/dist/src/configs/components/formdetail.json +0 -105
- package/dist/src/configs/components/graphicCard.json +0 -413
- package/dist/src/configs/components/image.json +0 -187
- package/dist/src/configs/components/link.json +0 -79
- package/dist/src/configs/components/listView.json +0 -378
- package/dist/src/configs/components/lottery.json +0 -163
- package/dist/src/configs/components/modal.json +0 -72
- package/dist/src/configs/components/navLayout.json +0 -368
- package/dist/src/configs/components/navigationBar.json +0 -62
- package/dist/src/configs/components/richtextview.json +0 -26
- package/dist/src/configs/components/scrollVeiw.json +0 -253
- package/dist/src/configs/components/slot.json +0 -17
- package/dist/src/configs/components/swiper.json +0 -90
- package/dist/src/configs/components/tabs.json +0 -122
- package/dist/src/configs/components/text.json +0 -95
- package/dist/src/configs/components/wedaVideo.json +0 -89
- package/dist/src/configs/components/wxOpenApi/phone.json +0 -127
- package/dist/src/configs/components/wxOpenApi/phoneCode.json +0 -109
- package/dist/src/configs/components/wxOpenApi/share.json +0 -160
- package/dist/src/configs/components/wxOpenApi/userInfo.json +0 -156
- package/dist/src/configs/index.d.ts +0 -103
- package/dist/src/configs/index.js +0 -111
- package/dist/src/docs/common/format.d.ts +0 -13
- package/dist/src/docs/common/format.js +0 -122
- package/dist/src/docs/common/tableView.d.ts +0 -30
- package/dist/src/docs/common/tableView.js +0 -156
- package/dist/src/index.d.ts +0 -2
- package/dist/src/index.js +0 -3
- package/dist/src/setupTests.d.ts +0 -2
- package/dist/src/setupTests.js +0 -19
- package/dist/src/web/actions/index.d.ts +0 -2
- package/dist/src/web/actions/index.js +0 -2
- package/dist/src/web/actions/showModal/index.d.ts +0 -4
- package/dist/src/web/actions/showModal/index.js +0 -66
- package/dist/src/web/actions/showToast/index.d.ts +0 -1
- package/dist/src/web/actions/showToast/index.js +0 -3
- package/dist/src/web/components/button/index.d.ts +0 -32
- package/dist/src/web/components/button/index.js +0 -48
- package/dist/src/web/components/calendar/index.d.ts +0 -19
- package/dist/src/web/components/calendar/index.js +0 -191
- package/dist/src/web/components/calendar/util.d.ts +0 -13
- package/dist/src/web/components/calendar/util.js +0 -74
- package/dist/src/web/components/carousel/index.d.ts +0 -41
- package/dist/src/web/components/carousel/index.js +0 -244
- package/dist/src/web/components/chart/bar/index.d.ts +0 -3
- package/dist/src/web/components/chart/bar/index.js +0 -45
- package/dist/src/web/components/chart/common/config/bar.d.ts +0 -48
- package/dist/src/web/components/chart/common/config/bar.js +0 -49
- package/dist/src/web/components/chart/common/config/global.d.ts +0 -13
- package/dist/src/web/components/chart/common/config/global.js +0 -16
- package/dist/src/web/components/chart/common/config/line.d.ts +0 -46
- package/dist/src/web/components/chart/common/config/line.js +0 -49
- package/dist/src/web/components/chart/common/config/pie.d.ts +0 -29
- package/dist/src/web/components/chart/common/config/pie.js +0 -36
- package/dist/src/web/components/chart/common/core/eChartBar.d.ts +0 -66
- package/dist/src/web/components/chart/common/core/eChartBar.js +0 -201
- package/dist/src/web/components/chart/common/core/eChartBase.d.ts +0 -127
- package/dist/src/web/components/chart/common/core/eChartBase.js +0 -394
- package/dist/src/web/components/chart/common/core/eChartLine.d.ts +0 -60
- package/dist/src/web/components/chart/common/core/eChartLine.js +0 -173
- package/dist/src/web/components/chart/common/core/eChartPie.d.ts +0 -48
- package/dist/src/web/components/chart/common/core/eChartPie.js +0 -135
- package/dist/src/web/components/chart/common/core/type.d.ts +0 -35
- package/dist/src/web/components/chart/common/core/type.js +0 -9
- package/dist/src/web/components/chart/common/echarts.d.ts +0 -5
- package/dist/src/web/components/chart/common/echarts.js +0 -24
- package/dist/src/web/components/chart/common/error-boundary.d.ts +0 -5
- package/dist/src/web/components/chart/common/error-boundary.js +0 -26
- package/dist/src/web/components/chart/common/useChart.d.ts +0 -8
- package/dist/src/web/components/chart/common/useChart.js +0 -72
- package/dist/src/web/components/chart/line/index.d.ts +0 -3
- package/dist/src/web/components/chart/line/index.js +0 -42
- package/dist/src/web/components/chart/pie/index.d.ts +0 -3
- package/dist/src/web/components/chart/pie/index.js +0 -42
- package/dist/src/web/components/chart/statisticsCard/index.d.ts +0 -85
- package/dist/src/web/components/chart/statisticsCard/index.js +0 -203
- package/dist/src/web/components/chart/statisticsCard/interface.d.ts +0 -13
- package/dist/src/web/components/chart/statisticsCard/interface.js +0 -1
- package/dist/src/web/components/container/index.d.ts +0 -6
- package/dist/src/web/components/container/index.js +0 -6
- package/dist/src/web/components/dataView/index.d.ts +0 -6
- package/dist/src/web/components/dataView/index.js +0 -8
- package/dist/src/web/components/dataView/interface.d.ts +0 -5
- package/dist/src/web/components/dataView/interface.js +0 -1
- package/dist/src/web/components/drawer/index.d.ts +0 -13
- package/dist/src/web/components/drawer/index.js +0 -12
- package/dist/src/web/components/form/checkbox/index.d.ts +0 -13
- package/dist/src/web/components/form/checkbox/index.js +0 -167
- package/dist/src/web/components/form/enumSelect/MultipleSelect.d.ts +0 -78
- package/dist/src/web/components/form/enumSelect/MultipleSelect.js +0 -52
- package/dist/src/web/components/form/enumSelect/NormalSelect.d.ts +0 -83
- package/dist/src/web/components/form/enumSelect/NormalSelect.js +0 -52
- package/dist/src/web/components/form/enumSelect/SelectContainer.d.ts +0 -16
- package/dist/src/web/components/form/enumSelect/SelectContainer.js +0 -30
- package/dist/src/web/components/form/enumSelect/index.d.ts +0 -82
- package/dist/src/web/components/form/enumSelect/index.js +0 -6
- package/dist/src/web/components/form/enumSelect/props/defaultProps.d.ts +0 -34
- package/dist/src/web/components/form/enumSelect/props/defaultProps.js +0 -40
- package/dist/src/web/components/form/enumSelect/props/propsTypes.d.ts +0 -39
- package/dist/src/web/components/form/enumSelect/props/propsTypes.js +0 -47
- package/dist/src/web/components/form/form/index.d.ts +0 -32
- package/dist/src/web/components/form/form/index.js +0 -150
- package/dist/src/web/components/form/formcell/index.d.ts +0 -8
- package/dist/src/web/components/form/formcell/index.js +0 -40
- package/dist/src/web/components/form/input/index.d.ts +0 -14
- package/dist/src/web/components/form/input/index.js +0 -94
- package/dist/src/web/components/form/location/common/mapChoose.d.ts +0 -15
- package/dist/src/web/components/form/location/common/mapChoose.js +0 -496
- package/dist/src/web/components/form/location/common/mapView.d.ts +0 -19
- package/dist/src/web/components/form/location/common/mapView.js +0 -175
- package/dist/src/web/components/form/location/common/propsConfig.d.ts +0 -59
- package/dist/src/web/components/form/location/common/propsConfig.js +0 -50
- package/dist/src/web/components/form/location/common/selectModal.d.ts +0 -21
- package/dist/src/web/components/form/location/common/selectModal.js +0 -44
- package/dist/src/web/components/form/location/common/useLocationInfo.d.ts +0 -36
- package/dist/src/web/components/form/location/common/useLocationInfo.js +0 -105
- package/dist/src/web/components/form/location/components/LocationH5/location.h5.d.ts +0 -8
- package/dist/src/web/components/form/location/components/LocationH5/location.h5.js +0 -328
- package/dist/src/web/components/form/location/components/LocationPC/Header.d.ts +0 -12
- package/dist/src/web/components/form/location/components/LocationPC/Header.js +0 -43
- package/dist/src/web/components/form/location/components/LocationPC/location.PC.d.ts +0 -8
- package/dist/src/web/components/form/location/components/LocationPC/location.PC.js +0 -228
- package/dist/src/web/components/form/location/constants.d.ts +0 -2
- package/dist/src/web/components/form/location/constants.js +0 -3
- package/dist/src/web/components/form/location/index.d.ts +0 -1
- package/dist/src/web/components/form/location/index.js +0 -24
- package/dist/src/web/components/form/radio/index.d.ts +0 -11
- package/dist/src/web/components/form/radio/index.js +0 -115
- package/dist/src/web/components/form/renderDecorator.d.ts +0 -6
- package/dist/src/web/components/form/renderDecorator.js +0 -20
- package/dist/src/web/components/form/select/dropdown-select/ui.d.ts +0 -15
- package/dist/src/web/components/form/select/dropdown-select/ui.js +0 -55
- package/dist/src/web/components/form/select/h5.d.ts +0 -16
- package/dist/src/web/components/form/select/h5.js +0 -466
- package/dist/src/web/components/form/select/index.d.ts +0 -66
- package/dist/src/web/components/form/select/index.js +0 -255
- package/dist/src/web/components/form/select/region/index.d.ts +0 -6
- package/dist/src/web/components/form/select/region/index.js +0 -147
- package/dist/src/web/components/form/select/time.d.ts +0 -9
- package/dist/src/web/components/form/select/time.js +0 -146
- package/dist/src/web/components/form/select/use-options.d.ts +0 -26
- package/dist/src/web/components/form/select/use-options.js +0 -103
- package/dist/src/web/components/form/select/year.d.ts +0 -7
- package/dist/src/web/components/form/select/year.js +0 -72
- package/dist/src/web/components/form/switch/index.d.ts +0 -6
- package/dist/src/web/components/form/switch/index.js +0 -58
- package/dist/src/web/components/form/textarea/index.d.ts +0 -12
- package/dist/src/web/components/form/textarea/index.js +0 -66
- package/dist/src/web/components/form/tips/index.d.ts +0 -8
- package/dist/src/web/components/form/tips/index.js +0 -17
- package/dist/src/web/components/form/uploader/index.d.ts +0 -3
- package/dist/src/web/components/form/uploader/index.js +0 -42
- package/dist/src/web/components/form/uploader/uploader.h5.d.ts +0 -20
- package/dist/src/web/components/form/uploader/uploader.h5.js +0 -199
- package/dist/src/web/components/form/uploader/uploader.pc.d.ts +0 -29
- package/dist/src/web/components/form/uploader/uploader.pc.js +0 -208
- package/dist/src/web/components/form/uploaderFile/index.d.ts +0 -4
- package/dist/src/web/components/form/uploaderFile/index.js +0 -19
- package/dist/src/web/components/form/uploaderFile/uploadFile.h5.d.ts +0 -23
- package/dist/src/web/components/form/uploaderFile/uploadFile.h5.js +0 -330
- package/dist/src/web/components/form/uploaderFile/uploadFile.pc.d.ts +0 -24
- package/dist/src/web/components/form/uploaderFile/uploadFile.pc.js +0 -302
- package/dist/src/web/components/form/userOrgSelect/comTool.d.ts +0 -8
- package/dist/src/web/components/form/userOrgSelect/comTool.js +0 -101
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.d.ts +0 -19
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.js +0 -252
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.d.ts +0 -4
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.js +0 -157
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/index.d.ts +0 -2
- package/dist/src/web/components/form/userOrgSelect/departTreeSelect/index.js +0 -17
- package/dist/src/web/components/form/userOrgSelect/index.d.ts +0 -2
- package/dist/src/web/components/form/userOrgSelect/index.js +0 -17
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.h5.d.ts +0 -27
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.h5.js +0 -276
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.pc.d.ts +0 -9
- package/dist/src/web/components/form/userOrgSelect/userTreeSelect.pc.js +0 -253
- package/dist/src/web/components/form/userOrgSelect/utils.d.ts +0 -36
- package/dist/src/web/components/form/userOrgSelect/utils.js +0 -80
- package/dist/src/web/components/formdetail/index.d.ts +0 -28
- package/dist/src/web/components/formdetail/index.js +0 -173
- package/dist/src/web/components/graphicCard/index.d.ts +0 -46
- package/dist/src/web/components/graphicCard/index.js +0 -178
- package/dist/src/web/components/image/image.d.ts +0 -9
- package/dist/src/web/components/image/image.js +0 -119
- package/dist/src/web/components/image/index.d.ts +0 -13
- package/dist/src/web/components/image/index.js +0 -77
- package/dist/src/web/components/index.d.ts +0 -50
- package/dist/src/web/components/index.js +0 -99
- package/dist/src/web/components/link/index.d.ts +0 -24
- package/dist/src/web/components/link/index.js +0 -71
- package/dist/src/web/components/listView/index.d.ts +0 -7
- package/dist/src/web/components/listView/index.js +0 -297
- package/dist/src/web/components/listView/interface.d.ts +0 -127
- package/dist/src/web/components/listView/interface.js +0 -1
- package/dist/src/web/components/lottery/index.d.ts +0 -22
- package/dist/src/web/components/lottery/index.js +0 -385
- package/dist/src/web/components/lottery/lotteryUtil.d.ts +0 -23
- package/dist/src/web/components/lottery/lotteryUtil.js +0 -181
- package/dist/src/web/components/modal/index.d.ts +0 -17
- package/dist/src/web/components/modal/index.js +0 -11
- package/dist/src/web/components/modal/modal.h5.d.ts +0 -4
- package/dist/src/web/components/modal/modal.h5.js +0 -46
- package/dist/src/web/components/modal/modal.pc.d.ts +0 -3
- package/dist/src/web/components/modal/modal.pc.js +0 -31
- package/dist/src/web/components/navLayout/index.d.ts +0 -61
- package/dist/src/web/components/navLayout/index.js +0 -127
- package/dist/src/web/components/navigationBar/common.d.ts +0 -15
- package/dist/src/web/components/navigationBar/common.js +0 -127
- package/dist/src/web/components/navigationBar/h5Menu.d.ts +0 -14
- package/dist/src/web/components/navigationBar/h5Menu.js +0 -72
- package/dist/src/web/components/navigationBar/horizontalMenu.d.ts +0 -12
- package/dist/src/web/components/navigationBar/horizontalMenu.js +0 -99
- package/dist/src/web/components/navigationBar/index.d.ts +0 -13
- package/dist/src/web/components/navigationBar/index.js +0 -157
- package/dist/src/web/components/navigationBar/verticalMenu.d.ts +0 -13
- package/dist/src/web/components/navigationBar/verticalMenu.js +0 -38
- package/dist/src/web/components/phone/index.d.ts +0 -18
- package/dist/src/web/components/phone/index.js +0 -4
- package/dist/src/web/components/phoneCode/index.d.ts +0 -18
- package/dist/src/web/components/phoneCode/index.js +0 -4
- package/dist/src/web/components/picker/datePicker.d.ts +0 -10
- package/dist/src/web/components/picker/datePicker.js +0 -31
- package/dist/src/web/components/picker/picker.d.ts +0 -6
- package/dist/src/web/components/picker/picker.js +0 -45
- package/dist/src/web/components/picker/timePicker.d.ts +0 -7
- package/dist/src/web/components/picker/timePicker.js +0 -42
- package/dist/src/web/components/richText/const.d.ts +0 -1
- package/dist/src/web/components/richText/const.js +0 -2
- package/dist/src/web/components/richText/index.d.ts +0 -50
- package/dist/src/web/components/richText/index.js +0 -351
- package/dist/src/web/components/richTextView/index.d.ts +0 -7
- package/dist/src/web/components/richTextView/index.js +0 -46
- package/dist/src/web/components/scrollView/index.d.ts +0 -26
- package/dist/src/web/components/scrollView/index.js +0 -97
- package/dist/src/web/components/share/index.d.ts +0 -34
- package/dist/src/web/components/share/index.js +0 -4
- package/dist/src/web/components/slot/index.d.ts +0 -6
- package/dist/src/web/components/slot/index.js +0 -9
- package/dist/src/web/components/swiper/index.d.ts +0 -24
- package/dist/src/web/components/swiper/index.js +0 -153
- package/dist/src/web/components/tabs/index.d.ts +0 -13
- package/dist/src/web/components/tabs/index.js +0 -20
- package/dist/src/web/components/tabs/tabs.h5.d.ts +0 -4
- package/dist/src/web/components/tabs/tabs.h5.js +0 -44
- package/dist/src/web/components/tabs/tabs.pc.d.ts +0 -3
- package/dist/src/web/components/tabs/tabs.pc.js +0 -40
- package/dist/src/web/components/text/index.d.ts +0 -14
- package/dist/src/web/components/text/index.js +0 -19
- package/dist/src/web/components/uploaderFileView/index.d.ts +0 -10
- package/dist/src/web/components/uploaderFileView/index.js +0 -46
- package/dist/src/web/components/uploaderView/index.d.ts +0 -17
- package/dist/src/web/components/uploaderView/index.js +0 -48
- package/dist/src/web/components/userInfo/index.d.ts +0 -26
- package/dist/src/web/components/userInfo/index.js +0 -4
- package/dist/src/web/components/wedaVideo/index.d.ts +0 -17
- package/dist/src/web/components/wedaVideo/index.js +0 -156
- package/dist/src/web/index.d.ts +0 -8
- package/dist/src/web/index.js +0 -4
- package/dist/src/web/utils/classnames.d.ts +0 -2
- package/dist/src/web/utils/classnames.js +0 -37
- package/dist/src/web/utils/constant.d.ts +0 -23
- package/dist/src/web/utils/constant.js +0 -24
- package/dist/src/web/utils/debounce.d.ts +0 -2
- package/dist/src/web/utils/debounce.js +0 -92
- package/dist/src/web/utils/getLocalCounter.d.ts +0 -1
- package/dist/src/web/utils/getLocalCounter.js +0 -4
- package/dist/src/web/utils/getUserService.d.ts +0 -11
- package/dist/src/web/utils/getUserService.js +0 -156
- package/dist/src/web/utils/isObjectEqual.d.ts +0 -2
- package/dist/src/web/utils/isObjectEqual.js +0 -12
- package/dist/src/web/utils/loading-fallback.d.ts +0 -2
- package/dist/src/web/utils/loading-fallback.js +0 -2
- package/dist/src/web/utils/lodash.d.ts +0 -1
- package/dist/src/web/utils/lodash.js +0 -2
- package/dist/src/web/utils/platform.d.ts +0 -18
- package/dist/src/web/utils/platform.js +0 -193
- package/dist/src/web/utils/tcb.d.ts +0 -33
- package/dist/src/web/utils/tcb.js +0 -118
- package/dist/src/web/utils/tmap.d.ts +0 -3
- package/dist/src/web/utils/tmap.js +0 -21
- package/dist/src/web/utils/use-cloud-id-temp-url.d.ts +0 -1
- package/dist/src/web/utils/use-cloud-id-temp-url.js +0 -15
- package/dist/src/web/utils/useSetState.d.ts +0 -1
- package/dist/src/web/utils/useSetState.js +0 -8
- package/dist/src/web/utils/useSyncValue.d.ts +0 -4
- package/dist/src/web/utils/useSyncValue.js +0 -16
- package/dist/src/web/utils/weui.d.ts +0 -1
- package/dist/src/web/utils/weui.js +0 -2
- package/dist/web/components/form/userOrgSelect/userOrgSelect.less +0 -643
- package/dist/web/utils/getUserService.d.ts +0 -17
- package/dist/web/utils/getUserService.js +0 -148
- package/dist/web/utils/tmap.d.ts +0 -3
- package/dist/web/utils/tmap.js +0 -21
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
/* eslint-disable react/jsx-key */
|
|
2
|
-
import React, { useState } from 'react';
|
|
3
|
-
import { Menu, Drawer } from 'tea-component';
|
|
4
|
-
import classNames from '../../utils/classnames';
|
|
5
|
-
import { renderMenuTitle, renderLogo, renderTitle, navigateTo, expandMenu, } from './common';
|
|
6
|
-
const CLASS_PREFIX = 'weda-menu';
|
|
7
|
-
/**
|
|
8
|
-
* 移动端导航
|
|
9
|
-
*/
|
|
10
|
-
const H5Menu = ({ menuData, navigationStyle, setMenuData, className, selected, setSelected, }) => {
|
|
11
|
-
// 平台
|
|
12
|
-
const cls = classNames({
|
|
13
|
-
[CLASS_PREFIX]: true,
|
|
14
|
-
[className]: className,
|
|
15
|
-
[`${CLASS_PREFIX}-mobile`]: true,
|
|
16
|
-
});
|
|
17
|
-
// h5 弹框
|
|
18
|
-
const [visible, setVisible] = useState(false);
|
|
19
|
-
// 菜单背景色
|
|
20
|
-
const menuStyle = {
|
|
21
|
-
background: navigationStyle.menuBackgroundColor || '#fff',
|
|
22
|
-
};
|
|
23
|
-
// 渲染subMenu
|
|
24
|
-
const renderSubMenu = (item, hasThereNode = false) => {
|
|
25
|
-
const { key, children, opened } = item;
|
|
26
|
-
return children.length > 0 ? (React.createElement(Menu.SubMenu, { className: hasThereNode ? `${CLASS_PREFIX}__submenu` : '', key: key, title: renderMenuTitle(navigationStyle, item, true), opened: opened, onOpenedChange: (opened) => {
|
|
27
|
-
const menus = expandMenu(menuData, { ...item, opened });
|
|
28
|
-
setMenuData(menus);
|
|
29
|
-
} }, children === null || children === void 0 ? void 0 : children.map((el) => renderSubMenu(el, true)))) : (renderMenuItem(item));
|
|
30
|
-
};
|
|
31
|
-
// 渲染MenuItem
|
|
32
|
-
const renderMenuItem = (item) => {
|
|
33
|
-
const { key } = item;
|
|
34
|
-
return (React.createElement(Menu.Item, { key: key, title: renderMenuTitle(navigationStyle, item, true), selected: item.key === selected, onClick: () => {
|
|
35
|
-
if (item.key !== selected) {
|
|
36
|
-
setSelected(item.key);
|
|
37
|
-
navigateTo(item);
|
|
38
|
-
}
|
|
39
|
-
setVisible(false);
|
|
40
|
-
} }));
|
|
41
|
-
};
|
|
42
|
-
const renderH5Title = (navigationStyle) => (React.createElement(React.Fragment, null,
|
|
43
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__bar-main` },
|
|
44
|
-
React.createElement("span", { className: `${CLASS_PREFIX}__main-logo` },
|
|
45
|
-
renderLogo(navigationStyle, `${CLASS_PREFIX}__main-icon`),
|
|
46
|
-
renderTitle(navigationStyle))),
|
|
47
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__bar-extra` },
|
|
48
|
-
!visible && (React.createElement("i", { className: `${CLASS_PREFIX}__bar-btn`, onClick: () => setVisible(true) },
|
|
49
|
-
React.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
50
|
-
React.createElement("path", { d: "M3 4H21V6H3V4ZM3 11H21V13H3V11ZM3 18H21V20H3V18Z", fill: navigationStyle.titleColor, fillOpacity: "0.9" })))),
|
|
51
|
-
visible && (React.createElement("i", { className: `${CLASS_PREFIX}__bar-btn--close`, onClick: () => setVisible(false) },
|
|
52
|
-
React.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
53
|
-
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.6219 11.9998L3.88672 5.2646L5.26558 3.88574L12.0008 10.6209L18.736 3.88574L20.1148 5.2646L13.3796 11.9998L20.1148 18.735L18.736 20.1138L12.0008 13.3786L5.26558 20.1138L3.88672 18.735L10.6219 11.9998Z", fill: navigationStyle.titleColor, fillOpacity: "0.9" })))))));
|
|
54
|
-
return (React.createElement(React.Fragment, null,
|
|
55
|
-
renderH5Title(navigationStyle),
|
|
56
|
-
React.createElement(Drawer, { size: 'm', placement: 'left', disableAnimation: true, outerClickClosable: false, visible: visible, onClose: () => setVisible(false), className: `${CLASS_PREFIX}__drawer` },
|
|
57
|
-
React.createElement("div", { className: cls, style: {
|
|
58
|
-
display: 'flex',
|
|
59
|
-
flexDirection: 'column',
|
|
60
|
-
position: 'relative',
|
|
61
|
-
} },
|
|
62
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__wrapper`, style: {
|
|
63
|
-
background: (navigationStyle === null || navigationStyle === void 0 ? void 0 : navigationStyle.menuBackgroundColor) || '#fff',
|
|
64
|
-
} }, renderH5Title(navigationStyle))),
|
|
65
|
-
React.createElement(Menu, { className: `${CLASS_PREFIX}__drawer-menu`, style: menuStyle }, menuData === null || menuData === void 0 ? void 0 : menuData.map((item) => {
|
|
66
|
-
var _a;
|
|
67
|
-
return ((_a = item === null || item === void 0 ? void 0 : item.children) === null || _a === void 0 ? void 0 : _a.length) > 0
|
|
68
|
-
? renderSubMenu(item)
|
|
69
|
-
: renderMenuItem(item);
|
|
70
|
-
})))));
|
|
71
|
-
};
|
|
72
|
-
export default H5Menu;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { IMenuItem, INavigationStyle } from './type';
|
|
3
|
-
/**
|
|
4
|
-
* pc端横向导航
|
|
5
|
-
*/
|
|
6
|
-
declare const HorizontalMenu: React.FC<{
|
|
7
|
-
menuData: IMenuItem[];
|
|
8
|
-
navigationStyle: INavigationStyle;
|
|
9
|
-
selected: string;
|
|
10
|
-
setSelected: (selectedKey: string) => void;
|
|
11
|
-
}>;
|
|
12
|
-
export default HorizontalMenu;
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
/* eslint-disable react/jsx-key */
|
|
2
|
-
import React, { useState, useRef, useEffect, useCallback } from 'react';
|
|
3
|
-
import { NavMenu, List, Dropdown } from 'tea-component';
|
|
4
|
-
import { usePlatform } from '../../utils/platform';
|
|
5
|
-
import classNames from '../../utils/classnames';
|
|
6
|
-
import { renderMenuTitle, renderMenuIcon, renderLogo, renderTitle, navigateTo, } from './common';
|
|
7
|
-
const CLASS_PREFIX = 'weda-menu';
|
|
8
|
-
/**
|
|
9
|
-
* pc端横向导航
|
|
10
|
-
*/
|
|
11
|
-
const HorizontalMenu = ({ menuData, navigationStyle, selected, setSelected }) => {
|
|
12
|
-
// 导航样式
|
|
13
|
-
const { isHorizontal = false, showMenuIcon } = navigationStyle;
|
|
14
|
-
// 菜单背景色
|
|
15
|
-
const menuStyle = {
|
|
16
|
-
background: navigationStyle.menuBackgroundColor || '#fff',
|
|
17
|
-
};
|
|
18
|
-
// 平台
|
|
19
|
-
const platform = usePlatform();
|
|
20
|
-
// 横向导航, 判断是否出现右侧的滚动按钮
|
|
21
|
-
const [showButton, setShowButton] = useState(true);
|
|
22
|
-
// 横行导航移动
|
|
23
|
-
const [position, setPosition] = useState({ index: 0, offset: 0 });
|
|
24
|
-
const [menuOffset, setMenuOffset] = useState({});
|
|
25
|
-
const navWrapRef = useRef();
|
|
26
|
-
const getMenuOffset = useCallback(() => {
|
|
27
|
-
var _a, _b, _c, _d;
|
|
28
|
-
const parentWidth = (_b = (_a = navWrapRef === null || navWrapRef === void 0 ? void 0 : navWrapRef.current) === null || _a === void 0 ? void 0 : _a.parentElement) === null || _b === void 0 ? void 0 : _b.clientWidth;
|
|
29
|
-
const contentWidth = (_c = navWrapRef === null || navWrapRef === void 0 ? void 0 : navWrapRef.current) === null || _c === void 0 ? void 0 : _c.clientWidth;
|
|
30
|
-
const menuItem = (_d = navWrapRef === null || navWrapRef === void 0 ? void 0 : navWrapRef.current) === null || _d === void 0 ? void 0 : _d.children;
|
|
31
|
-
const data = { 0: 0, 1: 0 };
|
|
32
|
-
let index = 1;
|
|
33
|
-
for (const i of menuItem) {
|
|
34
|
-
if (data[index] + (i === null || i === void 0 ? void 0 : i.clientWidth) + 8 > parentWidth) {
|
|
35
|
-
index = index + 1;
|
|
36
|
-
data[index] = (i === null || i === void 0 ? void 0 : i.clientWidth) + 8;
|
|
37
|
-
}
|
|
38
|
-
else {
|
|
39
|
-
data[index] += (i === null || i === void 0 ? void 0 : i.clientWidth) + 8;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
setMenuOffset(data);
|
|
43
|
-
const showButton = contentWidth > parentWidth;
|
|
44
|
-
setShowButton(showButton);
|
|
45
|
-
}, [navWrapRef]);
|
|
46
|
-
useEffect(() => {
|
|
47
|
-
var _a;
|
|
48
|
-
if (platform !== 'h5' && isHorizontal && ((_a = navWrapRef === null || navWrapRef === void 0 ? void 0 : navWrapRef.current) === null || _a === void 0 ? void 0 : _a.children)) {
|
|
49
|
-
getMenuOffset();
|
|
50
|
-
}
|
|
51
|
-
}, [platform, isHorizontal, navWrapRef, getMenuOffset]);
|
|
52
|
-
// 渲染下拉菜单
|
|
53
|
-
const renderMenuList = (item, navigationStyle) => {
|
|
54
|
-
return (React.createElement(List, { type: "option", className: `${CLASS_PREFIX}__dropdown-menu-list`, style: { background: navigationStyle.menuBackgroundColor } }, item === null || item === void 0 ? void 0 : item.map((menu) => {
|
|
55
|
-
const { title, children, key } = menu;
|
|
56
|
-
return !(children === null || children === void 0 ? void 0 : children.length) ? (React.createElement(List.Item, { key: key, className: `${CLASS_PREFIX}__dropdown-list-item`, selected: key === selected, onClick: () => {
|
|
57
|
-
if (key !== selected) {
|
|
58
|
-
setSelected(key);
|
|
59
|
-
navigateTo(menu);
|
|
60
|
-
}
|
|
61
|
-
} }, renderMenuTitle(navigationStyle, { title }, false))) : (React.createElement(List.SubMenu, { key: key, className: `${CLASS_PREFIX}__dropdown-list-item`, label: renderMenuTitle(navigationStyle, { title }, false) }, renderMenuList(children, navigationStyle)));
|
|
62
|
-
})));
|
|
63
|
-
};
|
|
64
|
-
return (React.createElement(NavMenu, { style: menuStyle, className: `${CLASS_PREFIX}__nav`, left: React.createElement(React.Fragment, null,
|
|
65
|
-
React.createElement(NavMenu.Item, { type: "logo", className: `${CLASS_PREFIX}__nav-logo` }, renderLogo(navigationStyle, `${CLASS_PREFIX}__nav-logo--img`)),
|
|
66
|
-
React.createElement(NavMenu.Item, { className: `${CLASS_PREFIX}__nav-title` },
|
|
67
|
-
React.createElement("span", { className: `${CLASS_PREFIX}__title` }, renderTitle(navigationStyle)))), right: React.createElement("div", { className: `${CLASS_PREFIX}__nav-wrap` },
|
|
68
|
-
showButton && position.index > 0 && (React.createElement("div", { className: `${CLASS_PREFIX}__nav-shadow leftButton`, onClick: () => {
|
|
69
|
-
const result = position.offset + menuOffset[position.index];
|
|
70
|
-
setPosition({ index: position.index - 1, offset: result });
|
|
71
|
-
} },
|
|
72
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__shadow--icon` }),
|
|
73
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__shadow` }),
|
|
74
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__shadow--white` }))),
|
|
75
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__nav-content box` },
|
|
76
|
-
React.createElement("div", { ref: navWrapRef, className: `${CLASS_PREFIX}__nav-content`, style: { transform: `translate(${position.offset}px, 0px)` } }, menuData === null || menuData === void 0 ? void 0 : menuData.map((i) => {
|
|
77
|
-
var _a;
|
|
78
|
-
return (React.createElement("div", { className: classNames(`${CLASS_PREFIX}__nav-item`, i.key === selected && i.level === 0
|
|
79
|
-
? `${CLASS_PREFIX}__item-open`
|
|
80
|
-
: ''), key: i.key, onClick: () => {
|
|
81
|
-
var _a;
|
|
82
|
-
if (!((_a = i === null || i === void 0 ? void 0 : i.children) === null || _a === void 0 ? void 0 : _a.length) && i.key !== selected) {
|
|
83
|
-
setSelected(i.key);
|
|
84
|
-
navigateTo(i);
|
|
85
|
-
}
|
|
86
|
-
} },
|
|
87
|
-
showMenuIcon &&
|
|
88
|
-
renderMenuIcon(i === null || i === void 0 ? void 0 : i.iconUrl, i === null || i === void 0 ? void 0 : i.iconPath, navigationStyle),
|
|
89
|
-
((_a = i === null || i === void 0 ? void 0 : i.children) === null || _a === void 0 ? void 0 : _a.length) ? (React.createElement(Dropdown, { trigger: 'hover', overlayClassName: `${CLASS_PREFIX}__dropdown`, button: renderMenuTitle(navigationStyle, i, false) }, renderMenuList(i.children, navigationStyle))) : (React.createElement(NavMenu.Item, { className: `${CLASS_PREFIX}__item-val`, selected: i.key === selected }, renderMenuTitle(navigationStyle, i, false)))));
|
|
90
|
-
}))),
|
|
91
|
-
showButton && position.index + 2 < Object.keys(menuOffset).length && (React.createElement("div", { className: `${CLASS_PREFIX}__nav-shadow`, onClick: () => {
|
|
92
|
-
const result = position.offset - menuOffset[position.index + 1];
|
|
93
|
-
setPosition({ index: position.index + 1, offset: result });
|
|
94
|
-
} },
|
|
95
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__shadow` }),
|
|
96
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__shadow--white` }),
|
|
97
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__shadow--icon` })))) }));
|
|
98
|
-
};
|
|
99
|
-
export default HorizontalMenu;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { CommonPropsType } from '../../types';
|
|
3
|
-
import type { IMenuItem, INavigationStyle } from './type';
|
|
4
|
-
import './index.css';
|
|
5
|
-
export default function NavigationBar({ navigationbar, contentSlot, className, style, callApi, }: PropsType): JSX.Element;
|
|
6
|
-
export interface PropsType extends CommonPropsType {
|
|
7
|
-
contentSlot?: string;
|
|
8
|
-
navigationbar: {
|
|
9
|
-
navigationStyle: INavigationStyle;
|
|
10
|
-
menuData: IMenuItem[];
|
|
11
|
-
};
|
|
12
|
-
callApi: any;
|
|
13
|
-
}
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
import React, { useState, useEffect, useCallback } from 'react';
|
|
2
|
-
import classNames from '../../utils/classnames';
|
|
3
|
-
import { ConfigProvider } from 'tea-component';
|
|
4
|
-
import { usePlatform, isInIde } from '../../utils/platform';
|
|
5
|
-
import { getAppCustomNav } from '../../utils/tcb';
|
|
6
|
-
import './index.css';
|
|
7
|
-
import VerticalMenu from './verticalMenu';
|
|
8
|
-
import HorizontalMenu from './horizontalMenu';
|
|
9
|
-
import H5Menu from './h5Menu';
|
|
10
|
-
import { expandMenu, findMenuItemByPath } from './common';
|
|
11
|
-
import destr from 'destr';
|
|
12
|
-
/**
|
|
13
|
-
* Web端
|
|
14
|
-
*/
|
|
15
|
-
const CLASS_PREFIX = 'weda-menu';
|
|
16
|
-
// 默认导航数据
|
|
17
|
-
const defaultNavigationBar = {
|
|
18
|
-
menuData: [],
|
|
19
|
-
navigationStyle: {
|
|
20
|
-
isHorizontal: false,
|
|
21
|
-
showMenuIcon: true,
|
|
22
|
-
menuFontSize: 16,
|
|
23
|
-
menuBackgroundColor: '#fff',
|
|
24
|
-
menuColor: '#000',
|
|
25
|
-
menuHoverColor: '#f3f3f3',
|
|
26
|
-
showTitle: true,
|
|
27
|
-
title: '菜单标题',
|
|
28
|
-
showLogo: true,
|
|
29
|
-
logoPath: '',
|
|
30
|
-
logoUrl: 'https://imgcache.qq.com/qcloud/tcloud_dtc/static/static_source_business/43d3b2b7-445c-4858-8eb0-50ac5d5cc08e.svg',
|
|
31
|
-
titleFontSize: 18,
|
|
32
|
-
titleColor: '#000',
|
|
33
|
-
logoWidth: 32,
|
|
34
|
-
logoHeight: 32,
|
|
35
|
-
},
|
|
36
|
-
};
|
|
37
|
-
// 默认高亮当前路由对应的菜单
|
|
38
|
-
const defaultSelectedMenu = (menu) => {
|
|
39
|
-
try {
|
|
40
|
-
const url = window.location.href;
|
|
41
|
-
let selectedKey = url.substring(url.lastIndexOf('/'));
|
|
42
|
-
const targetMenu = findMenuItemByPath(menu, selectedKey);
|
|
43
|
-
if (targetMenu) {
|
|
44
|
-
selectedKey = targetMenu.key;
|
|
45
|
-
}
|
|
46
|
-
return selectedKey;
|
|
47
|
-
}
|
|
48
|
-
catch (error) {
|
|
49
|
-
return '';
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
/**
|
|
53
|
-
* 导航菜单
|
|
54
|
-
*/
|
|
55
|
-
const defaultCallApi = { getAppCustomNav };
|
|
56
|
-
export default function NavigationBar({ navigationbar, contentSlot, className, style, callApi = defaultCallApi, }) {
|
|
57
|
-
const platform = usePlatform();
|
|
58
|
-
const [menuData, setMenuData] = useState([]);
|
|
59
|
-
const [mobileMenuData, setMobileMenuData] = useState([]);
|
|
60
|
-
// 是否启用多端
|
|
61
|
-
const [isMultiTerminal, setIsMultiTerminal] = useState(false);
|
|
62
|
-
const [navigationStyle, setNavigationStyle] = useState(defaultNavigationBar.navigationStyle);
|
|
63
|
-
// 菜单选中
|
|
64
|
-
const [selected, setSelected] = useState('');
|
|
65
|
-
// 导航样式
|
|
66
|
-
const { isHorizontal = false } = navigationStyle;
|
|
67
|
-
const cls = classNames({
|
|
68
|
-
[CLASS_PREFIX]: true,
|
|
69
|
-
[className]: className,
|
|
70
|
-
[`${CLASS_PREFIX}-mobile`]: platform === 'h5',
|
|
71
|
-
[`${CLASS_PREFIX}-horizontal`]: isHorizontal,
|
|
72
|
-
});
|
|
73
|
-
// 导航容器样式
|
|
74
|
-
const navigationWrapStyle = {
|
|
75
|
-
display: 'flex',
|
|
76
|
-
height: '100vh',
|
|
77
|
-
flexDirection: isHorizontal || platform === 'h5' ? 'column' : 'row',
|
|
78
|
-
position: 'relative',
|
|
79
|
-
...style,
|
|
80
|
-
};
|
|
81
|
-
// 更新导航菜单
|
|
82
|
-
const updateNavigationData = useCallback(() => {
|
|
83
|
-
callApi
|
|
84
|
-
.getAppCustomNav()
|
|
85
|
-
.then((res) => {
|
|
86
|
-
var _a;
|
|
87
|
-
const { Content } = res;
|
|
88
|
-
const navigationData = destr(Content);
|
|
89
|
-
if (navigationData === null || navigationData === void 0 ? void 0 : navigationData.navigationStyle) {
|
|
90
|
-
// 设置默认选中
|
|
91
|
-
let selectedKey = '';
|
|
92
|
-
if ((_a = navigationData === null || navigationData === void 0 ? void 0 : navigationData.menuData) === null || _a === void 0 ? void 0 : _a.length) {
|
|
93
|
-
selectedKey = defaultSelectedMenu(navigationData === null || navigationData === void 0 ? void 0 : navigationData.menuData);
|
|
94
|
-
}
|
|
95
|
-
setSelected(selectedKey);
|
|
96
|
-
// 设置默认展开状态
|
|
97
|
-
let menus = (navigationData === null || navigationData === void 0 ? void 0 : navigationData.menuData) || [];
|
|
98
|
-
menus = expandMenu(menus, { key: selectedKey }, true);
|
|
99
|
-
setMenuData(menus);
|
|
100
|
-
setNavigationStyle({
|
|
101
|
-
...defaultNavigationBar.navigationStyle,
|
|
102
|
-
...navigationData === null || navigationData === void 0 ? void 0 : navigationData.navigationStyle,
|
|
103
|
-
});
|
|
104
|
-
// 如果启用多端独立菜单导航,则设置移动端数据
|
|
105
|
-
if (navigationData === null || navigationData === void 0 ? void 0 : navigationData.isMultiTerminal) {
|
|
106
|
-
let mobileMenus = (navigationData === null || navigationData === void 0 ? void 0 : navigationData.mobileMenuData) || [];
|
|
107
|
-
mobileMenus = expandMenu(mobileMenus, { key: selectedKey }, true);
|
|
108
|
-
setMobileMenuData(mobileMenus);
|
|
109
|
-
setIsMultiTerminal(true);
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
})
|
|
113
|
-
.catch((error) => {
|
|
114
|
-
console.error(error);
|
|
115
|
-
});
|
|
116
|
-
}, [callApi]);
|
|
117
|
-
/**
|
|
118
|
-
* 每次渲染组件通过接口拉取数据
|
|
119
|
-
*/
|
|
120
|
-
useEffect(() => {
|
|
121
|
-
updateNavigationData();
|
|
122
|
-
}, [updateNavigationData]);
|
|
123
|
-
useEffect(() => {
|
|
124
|
-
if (isInIde()) {
|
|
125
|
-
// setMenuData(navigationbar?.menuData);
|
|
126
|
-
// setNavigationStyle(navigationbar?.navigationStyle);
|
|
127
|
-
updateNavigationData();
|
|
128
|
-
}
|
|
129
|
-
}, [navigationbar, updateNavigationData]);
|
|
130
|
-
// 初始化css变量
|
|
131
|
-
useEffect(() => {
|
|
132
|
-
if (navigationStyle.menuHoverColor) {
|
|
133
|
-
const body = document.getElementsByTagName('body')[0];
|
|
134
|
-
if (body) {
|
|
135
|
-
body.style.setProperty('--weda-navigation-menu-hover-color', navigationStyle.menuHoverColor);
|
|
136
|
-
body.style.setProperty('--weda-navigation-menu-selected-color', navigationStyle.menuHoverColor);
|
|
137
|
-
body.style.setProperty('--weda-navigation-menu-background-color', navigationStyle.menuBackgroundColor);
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}, [navigationStyle.menuHoverColor, navigationStyle.menuBackgroundColor]);
|
|
141
|
-
const renderMenu = () => {
|
|
142
|
-
return (React.createElement(React.Fragment, null,
|
|
143
|
-
React.createElement("div", { className: cls, style: navigationWrapStyle, "data-testid": "navigationBar" },
|
|
144
|
-
React.createElement("div", { className: `${CLASS_PREFIX}__wrapper`, style: {
|
|
145
|
-
background: (navigationStyle === null || navigationStyle === void 0 ? void 0 : navigationStyle.menuBackgroundColor) || '#fff',
|
|
146
|
-
} },
|
|
147
|
-
platform !== 'h5' && !isHorizontal && (React.createElement(VerticalMenu, { menuData: menuData, navigationStyle: navigationStyle, setMenuData: setMenuData, selected: selected, setSelected: setSelected })),
|
|
148
|
-
platform !== 'h5' && isHorizontal && (React.createElement(HorizontalMenu, { menuData: menuData, navigationStyle: navigationStyle, selected: selected, setSelected: setSelected })),
|
|
149
|
-
platform === 'h5' && (React.createElement(H5Menu, { menuData: isMultiTerminal ? mobileMenuData : menuData, navigationStyle: navigationStyle, setMenuData: setMenuData, className: className, selected: selected, setSelected: setSelected }))),
|
|
150
|
-
React.createElement("div", { className: "menu-solt" }, contentSlot))));
|
|
151
|
-
};
|
|
152
|
-
return (React.createElement(ConfigProvider, { classPrefix: "wedatea2td" },
|
|
153
|
-
!isInIde() &&
|
|
154
|
-
((menuData === null || menuData === void 0 ? void 0 : menuData.length) > 0 || (mobileMenuData === null || mobileMenuData === void 0 ? void 0 : mobileMenuData.length) > 0) &&
|
|
155
|
-
renderMenu(),
|
|
156
|
-
isInIde() && renderMenu()));
|
|
157
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import type { IMenuItem, INavigationStyle } from './type';
|
|
3
|
-
/**
|
|
4
|
-
* pc端纵向导航
|
|
5
|
-
*/
|
|
6
|
-
declare const VerticalMenu: React.FC<{
|
|
7
|
-
menuData: IMenuItem[];
|
|
8
|
-
navigationStyle: INavigationStyle;
|
|
9
|
-
setMenuData: (menus: IMenuItem[]) => void;
|
|
10
|
-
selected: string;
|
|
11
|
-
setSelected: (selectedKey: string) => void;
|
|
12
|
-
}>;
|
|
13
|
-
export default VerticalMenu;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Menu } from 'tea-component';
|
|
3
|
-
import { renderMenuTitle, renderLogo, renderTitle, navigateTo, expandMenu, } from './common';
|
|
4
|
-
const CLASS_PREFIX = 'weda-menu';
|
|
5
|
-
/**
|
|
6
|
-
* pc端纵向导航
|
|
7
|
-
*/
|
|
8
|
-
const VerticalMenu = ({ menuData, navigationStyle, setMenuData, selected, setSelected }) => {
|
|
9
|
-
// 菜单背景色
|
|
10
|
-
const menuStyle = {
|
|
11
|
-
background: navigationStyle.menuBackgroundColor || '#fff',
|
|
12
|
-
};
|
|
13
|
-
// 渲染subMenu
|
|
14
|
-
const renderSubMenu = (item, hasThereNode = false) => {
|
|
15
|
-
const { key, children, opened } = item;
|
|
16
|
-
return children.length > 0 ? (React.createElement(Menu.SubMenu, { className: hasThereNode ? `${CLASS_PREFIX}__submenu` : '', key: key, title: renderMenuTitle(navigationStyle, item, true), opened: opened, onOpenedChange: (opened) => {
|
|
17
|
-
const menus = expandMenu(menuData, { ...item, opened });
|
|
18
|
-
setMenuData(menus);
|
|
19
|
-
} }, children === null || children === void 0 ? void 0 : children.map((el) => renderSubMenu(el, true)))) : (renderMenuItem(item));
|
|
20
|
-
};
|
|
21
|
-
// 渲染MenuItem
|
|
22
|
-
const renderMenuItem = (item) => {
|
|
23
|
-
const { key } = item;
|
|
24
|
-
return (React.createElement(Menu.Item, { key: key, title: renderMenuTitle(navigationStyle, item, true), selected: item.key === selected, onClick: () => {
|
|
25
|
-
if (item.key !== selected) {
|
|
26
|
-
setSelected(item.key);
|
|
27
|
-
navigateTo(item);
|
|
28
|
-
}
|
|
29
|
-
} }));
|
|
30
|
-
};
|
|
31
|
-
return (React.createElement(Menu, { style: menuStyle, className: `${CLASS_PREFIX}__menu-content`, title: renderTitle(navigationStyle) || ' ', icon: renderLogo(navigationStyle, `${CLASS_PREFIX}__main-icon`) }, menuData === null || menuData === void 0 ? void 0 : menuData.map((item) => {
|
|
32
|
-
var _a;
|
|
33
|
-
return ((_a = item === null || item === void 0 ? void 0 : item.children) === null || _a === void 0 ? void 0 : _a.length) > 0
|
|
34
|
-
? renderSubMenu(item)
|
|
35
|
-
: renderMenuItem(item);
|
|
36
|
-
})));
|
|
37
|
-
};
|
|
38
|
-
export default VerticalMenu;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { CommonPropsType } from '../../types';
|
|
3
|
-
declare const Phone: (props: PropsType) => JSX.Element;
|
|
4
|
-
export interface PropsType extends CommonPropsType {
|
|
5
|
-
/**
|
|
6
|
-
* 按钮标题
|
|
7
|
-
*/
|
|
8
|
-
text?: string;
|
|
9
|
-
/**
|
|
10
|
-
* 按钮风格
|
|
11
|
-
*/
|
|
12
|
-
type?: 'primary' | 'warn' | 'wechat' | 'default';
|
|
13
|
-
/**
|
|
14
|
-
* 按钮大小
|
|
15
|
-
*/
|
|
16
|
-
size?: 'default' | 'mini' | 'large';
|
|
17
|
-
}
|
|
18
|
-
export default Phone;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { CommonPropsType } from '../../types';
|
|
3
|
-
declare const PhoneCode: (props: PropsType) => JSX.Element;
|
|
4
|
-
export interface PropsType extends CommonPropsType {
|
|
5
|
-
/**
|
|
6
|
-
* 按钮标题
|
|
7
|
-
*/
|
|
8
|
-
text?: string;
|
|
9
|
-
/**
|
|
10
|
-
* 按钮风格
|
|
11
|
-
*/
|
|
12
|
-
type?: 'primary' | 'warn' | 'wechat' | 'default';
|
|
13
|
-
/**
|
|
14
|
-
* 按钮大小
|
|
15
|
-
*/
|
|
16
|
-
size?: 'default' | 'mini' | 'large';
|
|
17
|
-
}
|
|
18
|
-
export default PhoneCode;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import type { CommonPropsType } from '../../types';
|
|
3
|
-
export interface PropsType extends CommonPropsType {
|
|
4
|
-
start: string;
|
|
5
|
-
end: string;
|
|
6
|
-
defaultValue: string;
|
|
7
|
-
title: string;
|
|
8
|
-
children?: React.ReactNode | undefined;
|
|
9
|
-
}
|
|
10
|
-
export default function DatePicker(props: PropsType): JSX.Element;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import weui from '../../utils/weui';
|
|
3
|
-
import classNames from '../../utils/classnames';
|
|
4
|
-
export default function DatePicker(props) {
|
|
5
|
-
const { start, end, defaultValue, title, children, className } = props;
|
|
6
|
-
const click = function () {
|
|
7
|
-
let fixedDefaultValue = undefined;
|
|
8
|
-
if (defaultValue) {
|
|
9
|
-
const defaultDate = new Date(defaultValue);
|
|
10
|
-
fixedDefaultValue = [
|
|
11
|
-
defaultDate.getFullYear(),
|
|
12
|
-
defaultDate.getMonth() + 1,
|
|
13
|
-
defaultDate.getDate(),
|
|
14
|
-
];
|
|
15
|
-
}
|
|
16
|
-
weui.datePicker({
|
|
17
|
-
...{
|
|
18
|
-
start,
|
|
19
|
-
end,
|
|
20
|
-
title,
|
|
21
|
-
},
|
|
22
|
-
...(fixedDefaultValue ? { defaultValue: fixedDefaultValue } : {}),
|
|
23
|
-
});
|
|
24
|
-
};
|
|
25
|
-
const cls = classNames({
|
|
26
|
-
'weda-ui': true,
|
|
27
|
-
'weda-date-picker': true,
|
|
28
|
-
[className]: className,
|
|
29
|
-
});
|
|
30
|
-
return (React.createElement("div", { className: cls, onClick: click }, children));
|
|
31
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import weui from '../../utils/weui';
|
|
3
|
-
import classNames from '../../utils/classnames';
|
|
4
|
-
export default function Picker(props) {
|
|
5
|
-
const { title, children, className } = props;
|
|
6
|
-
const click = function () {
|
|
7
|
-
weui.picker([
|
|
8
|
-
{
|
|
9
|
-
label: '飞机票',
|
|
10
|
-
value: 0,
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
label: '火车票',
|
|
14
|
-
value: 1,
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
label: '的士票',
|
|
18
|
-
value: 2,
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
label: '公交票 (disabled)',
|
|
22
|
-
disabled: true,
|
|
23
|
-
value: 3,
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
label: '其他',
|
|
27
|
-
value: 4,
|
|
28
|
-
},
|
|
29
|
-
], {
|
|
30
|
-
onChange() {
|
|
31
|
-
// console.log(result);
|
|
32
|
-
},
|
|
33
|
-
onConfirm() {
|
|
34
|
-
// console.log(result);
|
|
35
|
-
},
|
|
36
|
-
title,
|
|
37
|
-
});
|
|
38
|
-
};
|
|
39
|
-
const cls = classNames({
|
|
40
|
-
'weda-ui': true,
|
|
41
|
-
'weda-picker': true,
|
|
42
|
-
[className]: className,
|
|
43
|
-
});
|
|
44
|
-
return (React.createElement("div", { className: cls, onClick: click }, children));
|
|
45
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import weui from '../../utils/weui';
|
|
3
|
-
import classNames from '../../utils/classnames';
|
|
4
|
-
export default function TimePicker(props) {
|
|
5
|
-
const { title, defaultValue = '', children, className } = props;
|
|
6
|
-
const click = function () {
|
|
7
|
-
const hour = [];
|
|
8
|
-
const min = [];
|
|
9
|
-
const sec = [];
|
|
10
|
-
for (let i = 0; i < 60; i++) {
|
|
11
|
-
if (i < 24) {
|
|
12
|
-
hour.push({ label: i, value: i });
|
|
13
|
-
}
|
|
14
|
-
min.push({ label: i, value: i });
|
|
15
|
-
sec.push({ label: i, value: i });
|
|
16
|
-
}
|
|
17
|
-
let fixedDefaultValue;
|
|
18
|
-
if (defaultValue) {
|
|
19
|
-
fixedDefaultValue = defaultValue.split(':');
|
|
20
|
-
}
|
|
21
|
-
else {
|
|
22
|
-
const now = new Date();
|
|
23
|
-
fixedDefaultValue = [now.getHours(), now.getMinutes(), now.getSeconds()];
|
|
24
|
-
}
|
|
25
|
-
weui.picker(hour, min, sec, {
|
|
26
|
-
onChange() {
|
|
27
|
-
// console.log(result);
|
|
28
|
-
},
|
|
29
|
-
onConfirm() {
|
|
30
|
-
// console.log(result);
|
|
31
|
-
},
|
|
32
|
-
title,
|
|
33
|
-
defaultValue: fixedDefaultValue,
|
|
34
|
-
});
|
|
35
|
-
};
|
|
36
|
-
const cls = classNames({
|
|
37
|
-
'weda-ui': true,
|
|
38
|
-
'weda-time-picker': true,
|
|
39
|
-
[className]: className,
|
|
40
|
-
});
|
|
41
|
-
return (React.createElement("div", { className: cls, onClick: click }, children));
|
|
42
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const defaultBase64 = "data:image/png;base64,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";
|