@cloud-app-dev/vidc 3.2.11 → 3.2.13

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.
Files changed (421) hide show
  1. package/.dumi/tmp/core/EmptyRoute.tsx +9 -0
  2. package/.dumi/tmp/core/defineApp.ts +16 -0
  3. package/.dumi/tmp/core/history.ts +61 -0
  4. package/.dumi/tmp/core/plugin.ts +42 -0
  5. package/.dumi/tmp/core/pluginConfig.d.ts +276 -0
  6. package/.dumi/tmp/core/polyfill.ts +202 -0
  7. package/.dumi/tmp/core/route.tsx +38 -0
  8. package/.dumi/tmp/core/terminal.ts +38 -0
  9. package/.dumi/tmp/dumi/exports.ts +5 -0
  10. package/.dumi/tmp/dumi/locales/config.ts +56 -0
  11. package/.dumi/tmp/dumi/locales/runtime.tsx +38 -0
  12. package/.dumi/tmp/dumi/meta/atoms.ts +4 -0
  13. package/.dumi/tmp/dumi/meta/index.ts +186 -0
  14. package/.dumi/tmp/dumi/meta/runtime.ts +18 -0
  15. package/.dumi/tmp/dumi/meta/tabs.ts +8 -0
  16. package/.dumi/tmp/dumi/theme/ContextWrapper.tsx +41 -0
  17. package/.dumi/tmp/dumi/theme/builtins/API.ts +4 -0
  18. package/.dumi/tmp/dumi/theme/builtins/Badge.ts +4 -0
  19. package/.dumi/tmp/dumi/theme/builtins/Container.ts +4 -0
  20. package/.dumi/tmp/dumi/theme/builtins/Previewer.ts +4 -0
  21. package/.dumi/tmp/dumi/theme/builtins/SourceCode.ts +4 -0
  22. package/.dumi/tmp/dumi/theme/builtins/Table.ts +4 -0
  23. package/.dumi/tmp/dumi/theme/layouts/DocLayout.ts +4 -0
  24. package/.dumi/tmp/dumi/theme/slots/Content.ts +4 -0
  25. package/.dumi/tmp/dumi/theme/slots/ContentTabs.ts +4 -0
  26. package/.dumi/tmp/dumi/theme/slots/Features.ts +4 -0
  27. package/.dumi/tmp/dumi/theme/slots/Footer.ts +4 -0
  28. package/.dumi/tmp/dumi/theme/slots/Header.ts +4 -0
  29. package/.dumi/tmp/dumi/theme/slots/Hero.ts +4 -0
  30. package/.dumi/tmp/dumi/theme/slots/HeroTitle.ts +4 -0
  31. package/.dumi/tmp/dumi/theme/slots/LangSwitch.ts +4 -0
  32. package/.dumi/tmp/dumi/theme/slots/Logo.ts +4 -0
  33. package/.dumi/tmp/dumi/theme/slots/Navbar.ts +4 -0
  34. package/.dumi/tmp/dumi/theme/slots/NotFound.ts +4 -0
  35. package/.dumi/tmp/dumi/theme/slots/PreviewerActions.ts +4 -0
  36. package/.dumi/tmp/dumi/theme/slots/PreviewerActionsExtra.ts +4 -0
  37. package/.dumi/tmp/dumi/theme/slots/RtlSwitch.ts +4 -0
  38. package/.dumi/tmp/dumi/theme/slots/SearchBar.ts +4 -0
  39. package/.dumi/tmp/dumi/theme/slots/SearchResult.ts +4 -0
  40. package/.dumi/tmp/dumi/theme/slots/Sidebar.ts +4 -0
  41. package/.dumi/tmp/dumi/theme/slots/Toc.ts +4 -0
  42. package/.dumi/tmp/exports.ts +15 -0
  43. package/.dumi/tmp/testBrowser.tsx +82 -0
  44. package/.dumi/tmp/tsconfig.json +35 -0
  45. package/.dumi/tmp/typings.d.ts +136 -0
  46. package/.dumi/tmp/umi.ts +77 -0
  47. package/.dumi/tmp-production/core/EmptyRoute.tsx +9 -0
  48. package/.dumi/tmp-production/core/defineApp.ts +16 -0
  49. package/.dumi/tmp-production/core/history.ts +61 -0
  50. package/.dumi/tmp-production/core/plugin.ts +42 -0
  51. package/.dumi/tmp-production/core/pluginConfig.d.ts +276 -0
  52. package/.dumi/tmp-production/core/polyfill.ts +202 -0
  53. package/.dumi/tmp-production/core/route.tsx +38 -0
  54. package/.dumi/tmp-production/core/terminal.ts +38 -0
  55. package/.dumi/tmp-production/dumi/exports.ts +5 -0
  56. package/.dumi/tmp-production/dumi/locales/config.ts +56 -0
  57. package/.dumi/tmp-production/dumi/locales/runtime.tsx +38 -0
  58. package/.dumi/tmp-production/dumi/meta/atoms.ts +4 -0
  59. package/.dumi/tmp-production/dumi/meta/index.ts +178 -0
  60. package/.dumi/tmp-production/dumi/meta/runtime.ts +18 -0
  61. package/.dumi/tmp-production/dumi/meta/tabs.ts +5 -0
  62. package/.dumi/tmp-production/dumi/theme/ContextWrapper.tsx +41 -0
  63. package/.dumi/tmp-production/dumi/theme/builtins/API.ts +4 -0
  64. package/.dumi/tmp-production/dumi/theme/builtins/Badge.ts +4 -0
  65. package/.dumi/tmp-production/dumi/theme/builtins/Container.ts +4 -0
  66. package/.dumi/tmp-production/dumi/theme/builtins/Previewer.ts +4 -0
  67. package/.dumi/tmp-production/dumi/theme/builtins/SourceCode.ts +4 -0
  68. package/.dumi/tmp-production/dumi/theme/builtins/Table.ts +4 -0
  69. package/.dumi/tmp-production/dumi/theme/layouts/DocLayout.ts +4 -0
  70. package/.dumi/tmp-production/dumi/theme/slots/Content.ts +4 -0
  71. package/.dumi/tmp-production/dumi/theme/slots/ContentTabs.ts +4 -0
  72. package/.dumi/tmp-production/dumi/theme/slots/Features.ts +4 -0
  73. package/.dumi/tmp-production/dumi/theme/slots/Footer.ts +4 -0
  74. package/.dumi/tmp-production/dumi/theme/slots/Header.ts +4 -0
  75. package/.dumi/tmp-production/dumi/theme/slots/Hero.ts +4 -0
  76. package/.dumi/tmp-production/dumi/theme/slots/HeroTitle.ts +4 -0
  77. package/.dumi/tmp-production/dumi/theme/slots/LangSwitch.ts +4 -0
  78. package/.dumi/tmp-production/dumi/theme/slots/Logo.ts +4 -0
  79. package/.dumi/tmp-production/dumi/theme/slots/Navbar.ts +4 -0
  80. package/.dumi/tmp-production/dumi/theme/slots/NotFound.ts +4 -0
  81. package/.dumi/tmp-production/dumi/theme/slots/PreviewerActions.ts +4 -0
  82. package/.dumi/tmp-production/dumi/theme/slots/PreviewerActionsExtra.ts +4 -0
  83. package/.dumi/tmp-production/dumi/theme/slots/RtlSwitch.ts +4 -0
  84. package/.dumi/tmp-production/dumi/theme/slots/SearchBar.ts +4 -0
  85. package/.dumi/tmp-production/dumi/theme/slots/SearchResult.ts +4 -0
  86. package/.dumi/tmp-production/dumi/theme/slots/Sidebar.ts +4 -0
  87. package/.dumi/tmp-production/dumi/theme/slots/Toc.ts +4 -0
  88. package/.dumi/tmp-production/exports.ts +14 -0
  89. package/.dumi/tmp-production/testBrowser.tsx +82 -0
  90. package/.dumi/tmp-production/tsconfig.json +35 -0
  91. package/.dumi/tmp-production/typings.d.ts +136 -0
  92. package/.dumi/tmp-production/umi.ts +77 -0
  93. package/.dumirc.ts +71 -0
  94. package/.editorconfig +0 -3
  95. package/.eslintrc.js +3 -0
  96. package/.fatherrc.ts +19 -0
  97. package/.husky/commit-msg +5 -0
  98. package/.husky/pre-commit +4 -0
  99. package/.prettierrc.js +16 -0
  100. package/.stylelintrc +3 -0
  101. package/README.md +14 -26
  102. package/es/Api/index.js +100 -30
  103. package/es/AppContext/Sync.js +19 -3
  104. package/es/AppContext/index.js +86 -42
  105. package/es/AppContext/static.js +7 -0
  106. package/es/Auth/index.js +11 -4
  107. package/es/AutoExit/index.js +11 -3
  108. package/es/Box/BetweenBox/index.js +19 -10
  109. package/es/Box/BetweenBox/{index.css → index.less} +0 -0
  110. package/es/Box/InfoBox/index.js +24 -18
  111. package/es/Box/InfoBox/index.less +22 -0
  112. package/es/Box/TwoColumnBox/index.js +42 -25
  113. package/es/Box/TwoColumnBox/index.less +70 -0
  114. package/es/Box/deps/grid-factory.d.ts +2 -2
  115. package/es/Box/deps/grid-factory.js +12 -0
  116. package/es/Box/index.js +29 -16
  117. package/es/Box/{index.css → index.less} +5 -4
  118. package/es/CheckGroupFixed/demo.d.ts +3 -0
  119. package/es/CheckGroupFixed/demo.js +28 -0
  120. package/es/CheckGroupFixed/index.js +117 -82
  121. package/es/CheckGroupFixed/index.less +50 -0
  122. package/es/Config/index.js +5 -1
  123. package/es/Config/utils.js +18 -3
  124. package/es/ConfigContext/index.js +8 -4
  125. package/es/CustomRenderSelect/index.js +71 -36
  126. package/es/CustomRenderSelect/index.less +25 -0
  127. package/es/DisableMark/index.js +14 -11
  128. package/es/DisableMark/{index.css → index.less} +0 -0
  129. package/es/DomMove/demo.js +14 -10
  130. package/es/DomMove/index.js +52 -30
  131. package/es/DomMove/utils.js +8 -3
  132. package/es/Drag/DragAndDropItem.js +44 -20
  133. package/es/Drag/DropItem.js +22 -6
  134. package/es/Drag/index.js +2 -2
  135. package/es/Drag/{index.css → index.less} +0 -0
  136. package/es/Drawer/Footer.js +22 -15
  137. package/es/Drawer/{Demo.d.ts → demo.d.ts} +0 -0
  138. package/es/Drawer/demo.js +109 -0
  139. package/es/Drawer/index.js +98 -60
  140. package/es/Drawer/index.less +42 -0
  141. package/es/ErrorFallback/index.js +23 -14
  142. package/es/FrontendPlayer/index.js +1 -1
  143. package/es/FullScreen/index.js +30 -17
  144. package/es/FullScreen/index.less +16 -0
  145. package/es/HightLevel/index.js +11 -4
  146. package/es/HightLevel/{index.css → index.less} +0 -0
  147. package/es/IconFont/index.js +39 -18
  148. package/es/ImageView/index.js +37 -13
  149. package/es/ImageView/index.less +10 -0
  150. package/es/Input/demo.d.ts +3 -0
  151. package/es/Input/demo.js +16 -0
  152. package/es/Input/index.js +46 -22
  153. package/es/Input/index.less +12 -0
  154. package/es/InstanceHistory/index.js +2 -0
  155. package/es/LabelValue/index.js +25 -18
  156. package/es/LabelValue/index.less +20 -0
  157. package/es/List/DynamicGridList/Demo.d.ts +1 -0
  158. package/es/List/DynamicGridList/Demo.js +52 -32
  159. package/es/List/DynamicGridList/index.js +37 -22
  160. package/es/List/DynamicList/index.js +76 -56
  161. package/es/List/DynamicList/index.less +15 -0
  162. package/es/List/GridList/Demo.d.ts +1 -0
  163. package/es/List/GridList/Demo.js +60 -38
  164. package/es/List/GridList/hook.d.ts +1 -1
  165. package/es/List/GridList/hook.js +66 -35
  166. package/es/List/GridList/index.js +33 -29
  167. package/es/List/GridList/{index.css → index.less} +0 -0
  168. package/es/List/GridList/utils.d.ts +2 -2
  169. package/es/List/GridList/utils.js +1 -0
  170. package/es/List/VList/index.d.ts +1 -1
  171. package/es/List/VList/index.js +32 -19
  172. package/es/List/VList/{index.css → index.less} +0 -0
  173. package/es/List/VList/utils.d.ts +2 -2
  174. package/es/List/VList/utils.js +8 -6
  175. package/es/List/demo.d.ts +3 -0
  176. package/es/List/demo.js +26 -0
  177. package/es/List/index.d.ts +1 -1
  178. package/es/List/index.js +31 -23
  179. package/es/List/{index.css → index.less} +5 -4
  180. package/es/LoaderApp/index.js +59 -25
  181. package/es/LoaderApp/{index.css → index.less} +0 -0
  182. package/es/LoaderApp/loader.js +40 -23
  183. package/es/LoaderApp/sandbox.back.js +101 -24
  184. package/es/LoaderApp/sandbox.js +26 -9
  185. package/es/LoaderApp/utils.d.ts +1 -1
  186. package/es/LoaderApp/utils.js +68 -25
  187. package/es/LoaderScript/index.js +25 -10
  188. package/es/LoaderScript/utils.js +151 -87
  189. package/es/Map/BasicMap/AMapInstance.d.ts +1 -1
  190. package/es/Map/BasicMap/AMapInstance.js +25 -3
  191. package/es/Map/BasicMap/LeafletInstance.js +28 -11
  192. package/es/Map/BasicMap/index.js +67 -27
  193. package/es/Map/BasicMap/index.less +24 -0
  194. package/es/Map/ClusterLayer/hook.d.ts +2 -2
  195. package/es/Map/ClusterLayer/hook.js +51 -23
  196. package/es/Map/ClusterLayer/index.d.ts +1 -1
  197. package/es/Map/ClusterLayer/index.js +14 -6
  198. package/es/Map/ClusterLayer/index.less +27 -0
  199. package/es/Map/Config/index.js +44 -16
  200. package/es/Map/Config/utils.js +17 -3
  201. package/es/Map/Context/index.js +43 -9
  202. package/es/Map/FindPio/index.js +5 -2
  203. package/es/Map/FindPio/{index.css → index.less} +0 -0
  204. package/es/Map/InfoWindow/MakerLikeWindow.d.ts +1 -1
  205. package/es/Map/InfoWindow/MakerLikeWindow.js +41 -18
  206. package/es/Map/InfoWindow/demo.d.ts +1 -0
  207. package/es/Map/InfoWindow/demo.js +51 -29
  208. package/es/Map/InfoWindow/index.d.ts +1 -1
  209. package/es/Map/InfoWindow/index.js +39 -18
  210. package/es/Map/LevelCenter/DragMarker/index.js +16 -10
  211. package/es/Map/LevelCenter/demo.d.ts +1 -0
  212. package/es/Map/LevelCenter/demo.js +41 -22
  213. package/es/Map/LevelCenter/index.js +41 -29
  214. package/es/Map/LevelCenter/index.less +2 -0
  215. package/es/Map/LoaderMap/index.js +38 -22
  216. package/es/Map/MapDrawSelect/demo.d.ts +1 -0
  217. package/es/Map/MapDrawSelect/demo.js +65 -46
  218. package/es/Map/MapDrawSelect/index.js +43 -31
  219. package/es/Map/MapDrawSelect/index.less +2 -0
  220. package/es/Map/MouseTool/index.js +32 -18
  221. package/es/Map/MouseTool/useMouseTools.js +37 -8
  222. package/es/Map/ResetTools/index.js +58 -44
  223. package/es/Map/ResetTools/index.less +35 -0
  224. package/es/Map/SinglePoint/index.js +39 -27
  225. package/es/Map/SinglePoint/index.less +41 -0
  226. package/es/Map/hook/useMapEvent.js +8 -4
  227. package/es/Map/hook/useMapType.js +3 -2
  228. package/es/Map/index.d.ts +1 -0
  229. package/es/Map/index.js +11 -11
  230. package/es/Map/useMarker/index.d.ts +1 -1
  231. package/es/Map/useMarker/index.js +33 -13
  232. package/es/Map/{LevelCenter/index.css → useMarker/index.less} +0 -0
  233. package/es/Map/withMap/index.d.ts +1 -0
  234. package/es/Map/withMap/index.js +14 -4
  235. package/es/Modal/demo.d.ts +3 -0
  236. package/es/Modal/demo.js +106 -0
  237. package/es/Modal/index.js +94 -57
  238. package/es/Modal/index.less +45 -0
  239. package/es/Picture/component/DefaultRects/RectInfo.js +59 -37
  240. package/es/Picture/component/DefaultRects/index.js +46 -32
  241. package/es/Picture/component/DefaultRects/index.less +188 -0
  242. package/es/Picture/component/DrawRect/index.js +37 -24
  243. package/es/Picture/component/DrawRect/{index.css → index.less} +0 -0
  244. package/es/Picture/component/RectMenu/index.js +35 -26
  245. package/es/Picture/component/RectMenu/index.less +31 -0
  246. package/es/Picture/component/RectMenu/utils.js +6 -3
  247. package/es/Picture/component/Tools/index.js +91 -69
  248. package/es/Picture/component/Tools/index.less +43 -0
  249. package/es/Picture/component/WheelScale/index.js +9 -4
  250. package/es/Picture/demo.js +14 -11
  251. package/es/Picture/dragBound.d.ts +1 -1
  252. package/es/Picture/dragBound.js +17 -4
  253. package/es/Picture/index.d.ts +2 -2
  254. package/es/Picture/index.js +201 -137
  255. package/es/Picture/index.less +14 -0
  256. package/es/Picture/loadCaptureRectImage.d.ts +1 -1
  257. package/es/Picture/loadCaptureRectImage.js +39 -14
  258. package/es/Picture/useDraw.js +40 -20
  259. package/es/Picture/utils.d.ts +9 -9
  260. package/es/Picture/utils.js +18 -3
  261. package/es/Player/api/index.d.ts +3 -3
  262. package/es/Player/api/index.js +117 -82
  263. package/es/Player/context.js +21 -7
  264. package/es/Player/contraller_bar/bar.d.ts +1 -1
  265. package/es/Player/contraller_bar/bar.js +28 -10
  266. package/es/Player/contraller_bar/contraller_event.js +34 -12
  267. package/es/Player/contraller_bar/index.js +30 -22
  268. package/es/Player/contraller_bar/left_bar.js +62 -39
  269. package/es/Player/contraller_bar/right_bar.js +34 -18
  270. package/es/Player/contraller_bar/time.js +19 -8
  271. package/es/Player/contraller_bar/useBarStatus.js +29 -11
  272. package/es/Player/contraller_bar/volume.js +43 -21
  273. package/es/Player/demo.d.ts +1 -0
  274. package/es/Player/demo.js +258 -215
  275. package/es/Player/event/errorEvent.js +41 -16
  276. package/es/Player/event/eventName.js +12 -1
  277. package/es/Player/event/index.js +66 -24
  278. package/es/Player/fps_play.js +33 -15
  279. package/es/Player/frontend_player.js +42 -20
  280. package/es/Player/frontend_timeline.js +95 -55
  281. package/es/Player/iconfont.js +23 -8
  282. package/es/Player/index.js +1 -1
  283. package/es/Player/live_heart.js +15 -3
  284. package/es/Player/message.js +68 -37
  285. package/es/Player/segment_player.js +113 -62
  286. package/es/Player/segment_timeline.js +145 -97
  287. package/es/Player/single_player.js +153 -111
  288. package/es/Player/style/bar.less +39 -0
  289. package/es/Player/style/iconfont.js +17 -10
  290. package/es/Player/style/index.less +30 -0
  291. package/es/Player/style/message.less +50 -0
  292. package/es/Player/style/slider.less +103 -0
  293. package/es/Player/style/timeline.less +106 -0
  294. package/es/Player/style/volume.less +21 -0
  295. package/es/Player/timeline.d.ts +1 -1
  296. package/es/Player/timeline.js +59 -32
  297. package/es/Player/util.js +46 -7
  298. package/es/PlayerExt/demo.d.ts +1 -0
  299. package/es/PlayerExt/demo.js +145 -112
  300. package/es/PlayerExt/index.d.ts +1 -1
  301. package/es/PlayerExt/index.js +135 -82
  302. package/es/PlayerExt/{index.css → index.less} +0 -0
  303. package/es/Progress/index.js +18 -5
  304. package/es/Progress/index.less +20 -0
  305. package/es/ROI/demo.d.ts +1 -0
  306. package/es/ROI/demo.js +12 -8
  307. package/es/ROI/index.js +45 -35
  308. package/es/ROI/index.less +29 -0
  309. package/es/ScreenPlayer/Live.d.ts +1 -1
  310. package/es/ScreenPlayer/Live.js +159 -103
  311. package/es/ScreenPlayer/LiveTools.js +153 -116
  312. package/es/ScreenPlayer/PlayerWithExt.js +168 -113
  313. package/es/ScreenPlayer/RatePick.js +35 -22
  314. package/es/ScreenPlayer/Record.js +291 -185
  315. package/es/ScreenPlayer/RecordTools.js +192 -148
  316. package/es/ScreenPlayer/ScreenSelect.js +33 -26
  317. package/es/ScreenPlayer/SegmentTimeLine.js +23 -16
  318. package/es/ScreenPlayer/TimeMode.js +22 -16
  319. package/es/ScreenPlayer/TimeSelect.js +84 -63
  320. package/es/ScreenPlayer/demo.js +16 -18
  321. package/es/ScreenPlayer/demo2.js +192 -177
  322. package/es/ScreenPlayer/index.d.ts +1 -0
  323. package/es/ScreenPlayer/index.js +3 -3
  324. package/es/ScreenPlayer/index.less +178 -0
  325. package/es/ScreenPlayer/useTimeSlider.js +148 -49
  326. package/es/ScreenPlayer/useVideoFit.js +18 -5
  327. package/es/ScreenPlayer/utils.js +6 -0
  328. package/es/SegmentPlayer/index.js +1 -1
  329. package/es/Service/fetch-adapter.d.ts +1 -1
  330. package/es/Service/fetch-adapter.js +48 -5
  331. package/es/Service/http.js +46 -16
  332. package/es/Service/index.js +2 -2
  333. package/es/TableLayout/index.js +18 -12
  334. package/es/TableLayout/{index.css → index.less} +0 -0
  335. package/es/ThemeAntd/demo.d.ts +1 -0
  336. package/es/ThemeAntd/demo.js +126 -76
  337. package/es/ThemeAntd/{demo.css → demo.less} +4 -3
  338. package/es/ThemeAntd/index.js +6 -2
  339. package/es/ThemeAntd/index.less +16 -0
  340. package/es/ThemeAntd/style/button.less +67 -0
  341. package/es/ThemeAntd/style/checkbox.less +72 -0
  342. package/es/ThemeAntd/style/form.less +12 -0
  343. package/es/ThemeAntd/style/input.less +83 -0
  344. package/es/ThemeAntd/style/pagination.less +95 -0
  345. package/es/ThemeAntd/style/picker.less +106 -0
  346. package/es/ThemeAntd/style/popover.less +5 -0
  347. package/es/ThemeAntd/style/radio.less +87 -0
  348. package/es/ThemeAntd/style/{scrollbar.css → scrollbar.less} +4 -2
  349. package/es/ThemeAntd/style/select.less +81 -0
  350. package/es/ThemeAntd/style/table.less +57 -0
  351. package/es/ThemeAntd/style/tree.less +18 -0
  352. package/es/Timeout/index.js +36 -12
  353. package/es/Tree/demo.js +26 -21
  354. package/es/Tree/index.js +51 -30
  355. package/es/Tree/index.less +59 -0
  356. package/es/index.js +47 -47
  357. package/es/useDrawROI/index.js +130 -65
  358. package/es/useEventEmitterHandle/index.js +6 -2
  359. package/es/useFullscreen/demo.js +44 -27
  360. package/es/useFullscreen/index.js +30 -8
  361. package/es/useHistory/index.js +3 -1
  362. package/es/useInfiniteScroll/index.js +50 -19
  363. package/es/useRafInterval/index.js +28 -4
  364. package/es/useSimpleState/index.js +23 -6
  365. package/es/useVirtualList/index.js +58 -20
  366. package/es/utils.d.ts +1 -1
  367. package/es/utils.js +53 -14
  368. package/package.json +42 -32
  369. package/tsconfig.json +8 -32
  370. package/.eslintrc +0 -4
  371. package/.fatherrc.js +0 -25
  372. package/.prettierrc +0 -11
  373. package/.umirc.ts +0 -55
  374. package/es/Box/InfoBox/index.css +0 -22
  375. package/es/Box/TwoColumnBox/index.css +0 -70
  376. package/es/CheckGroupFixed/index.css +0 -49
  377. package/es/CustomRenderSelect/index.css +0 -20
  378. package/es/Drawer/Demo.js +0 -59
  379. package/es/Drawer/index.css +0 -40
  380. package/es/FullScreen/index.css +0 -16
  381. package/es/ImageView/index.css +0 -10
  382. package/es/Input/index.css +0 -8
  383. package/es/LabelValue/index.css +0 -18
  384. package/es/List/DynamicList/index.css +0 -15
  385. package/es/Map/BasicMap/index.css +0 -24
  386. package/es/Map/ClusterLayer/index.css +0 -26
  387. package/es/Map/MapDrawSelect/index.css +0 -0
  388. package/es/Map/ResetTools/index.css +0 -32
  389. package/es/Map/SinglePoint/icon/Place_icon_OnLine_Hover.svg +0 -15
  390. package/es/Map/SinglePoint/icon/Place_icon_OnLine_Normal.svg +0 -15
  391. package/es/Map/SinglePoint/icon/Place_icon_OutLine_Hover.svg +0 -15
  392. package/es/Map/SinglePoint/icon/Place_icon_OutLine_Normal.svg +0 -15
  393. package/es/Map/SinglePoint/index.css +0 -29
  394. package/es/Map/useMarker/index.css +0 -0
  395. package/es/Modal/index.css +0 -43
  396. package/es/Picture/component/DefaultRects/index.css +0 -247
  397. package/es/Picture/component/RectMenu/index.css +0 -31
  398. package/es/Picture/component/Tools/index.css +0 -42
  399. package/es/Picture/index.css +0 -12
  400. package/es/Player/style/bar.css +0 -38
  401. package/es/Player/style/index.css +0 -30
  402. package/es/Player/style/message.css +0 -49
  403. package/es/Player/style/slider.css +0 -96
  404. package/es/Player/style/timeline.css +0 -99
  405. package/es/Player/style/volume.css +0 -19
  406. package/es/Progress/index.css +0 -20
  407. package/es/ROI/index.css +0 -29
  408. package/es/ScreenPlayer/index.css +0 -166
  409. package/es/ThemeAntd/index.css +0 -620
  410. package/es/ThemeAntd/style/button.css +0 -55
  411. package/es/ThemeAntd/style/checkbox.css +0 -64
  412. package/es/ThemeAntd/style/form.css +0 -10
  413. package/es/ThemeAntd/style/input.css +0 -68
  414. package/es/ThemeAntd/style/pagination.css +0 -82
  415. package/es/ThemeAntd/style/picker.css +0 -98
  416. package/es/ThemeAntd/style/popover.css +0 -3
  417. package/es/ThemeAntd/style/radio.css +0 -80
  418. package/es/ThemeAntd/style/select.css +0 -76
  419. package/es/ThemeAntd/style/table.css +0 -46
  420. package/es/ThemeAntd/style/tree.css +0 -16
  421. package/es/Tree/index.css +0 -64
@@ -1,39 +1,69 @@
1
1
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+
2
3
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
4
+
3
5
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
6
+
4
7
  function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
8
+
5
9
  function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
10
+
6
11
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
12
+
7
13
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
14
+
8
15
  function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
16
+
9
17
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
18
+
10
19
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
20
+
11
21
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
22
+
23
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
24
+
12
25
  import React from 'react';
13
- import LoaderMap from '../LoaderMap';
14
- import { Provider } from '../Context';
15
- import LeafletInstance from './LeafletInstance';
16
- import AMapInstance from './AMapInstance';
17
- import Config from '../Config';
26
+ import LoaderMap from "../LoaderMap";
27
+ import { Provider } from "../Context";
28
+ import LeafletInstance from "./LeafletInstance";
29
+ import AMapInstance from "./AMapInstance";
30
+ import Config from "../Config";
18
31
  import { withErrorBoundary } from 'react-error-boundary';
19
- import { errorBoundaryOptions } from '../../ErrorFallback';
20
- import "./index.css";
32
+ import { errorBoundaryOptions } from "../../ErrorFallback";
33
+ import "./index.less";
34
+ import { jsx as _jsx } from "react/jsx-runtime";
35
+ import { jsxs as _jsxs } from "react/jsx-runtime";
36
+
21
37
  var Map = /*#__PURE__*/function (_React$Component) {
22
38
  _inherits(Map, _React$Component);
39
+
23
40
  var _super = _createSuper(Map);
41
+
24
42
  function Map() {
25
43
  var _this;
44
+
26
45
  _classCallCheck(this, Map);
27
- _this = _super.apply(this, arguments);
28
- _this.domRef = /*#__PURE__*/React.createRef();
46
+
47
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
48
+ args[_key] = arguments[_key];
49
+ }
50
+
51
+ _this = _super.call.apply(_super, [this].concat(args));
52
+
53
+ _defineProperty(_assertThisInitialized(_this), "domRef", /*#__PURE__*/React.createRef());
54
+
55
+ _defineProperty(_assertThisInitialized(_this), "mapInstance", void 0);
56
+
29
57
  return _this;
30
58
  }
59
+
31
60
  _createClass(Map, [{
32
61
  key: "componentDidMount",
33
62
  value: function componentDidMount() {
34
63
  if (!this.domRef.current) {
35
64
  return;
36
65
  }
66
+
37
67
  var mapOptions = this.props.config;
38
68
  var instance = this.props.isL ? LeafletInstance : AMapInstance;
39
69
  this.mapInstance = new instance(this.domRef.current, mapOptions);
@@ -49,34 +79,44 @@ var Map = /*#__PURE__*/function (_React$Component) {
49
79
  key: "render",
50
80
  value: function render() {
51
81
  var _this$props = this.props,
52
- children = _this$props.children,
53
- _this$props$className = _this$props.className,
54
- className = _this$props$className === void 0 ? '' : _this$props$className,
55
- glaobalKey = _this$props.glaobalKey;
56
- return /*#__PURE__*/React.createElement(Provider, {
82
+ children = _this$props.children,
83
+ _this$props$className = _this$props.className,
84
+ className = _this$props$className === void 0 ? '' : _this$props$className,
85
+ glaobalKey = _this$props.glaobalKey;
86
+ return /*#__PURE__*/_jsx(Provider, {
57
87
  value: {
58
88
  instance: this.mapInstance,
59
89
  glaobalKey: glaobalKey
60
- }
61
- }, /*#__PURE__*/React.createElement("div", {
62
- className: "c-map-container ".concat(className)
63
- }, /*#__PURE__*/React.createElement("div", {
64
- ref: this.domRef
65
- }), this.mapInstance && children));
90
+ },
91
+ children: /*#__PURE__*/_jsxs("div", {
92
+ className: "c-map-container ".concat(className),
93
+ children: [/*#__PURE__*/_jsx("div", {
94
+ ref: this.domRef
95
+ }), this.mapInstance && children]
96
+ })
97
+ });
66
98
  }
67
99
  }]);
100
+
68
101
  return Map;
69
102
  }(React.Component);
103
+
70
104
  var MapViewType = withErrorBoundary(Map, errorBoundaryOptions);
71
105
  var MapView = MapViewType;
106
+
72
107
  function WithLoaderMap(_ref) {
73
108
  var MAP_GLABAL_KEY = _ref.MAP_GLABAL_KEY,
74
- children = _ref.children,
75
- className = _ref.className;
76
- return /*#__PURE__*/React.createElement(LoaderMap, {
77
- MAP_GLABAL_KEY: MAP_GLABAL_KEY
78
- }, /*#__PURE__*/React.createElement(Config, null, /*#__PURE__*/React.createElement(MapView, {
79
- className: className
80
- }, children)));
109
+ children = _ref.children,
110
+ className = _ref.className;
111
+ return /*#__PURE__*/_jsx(LoaderMap, {
112
+ MAP_GLABAL_KEY: MAP_GLABAL_KEY,
113
+ children: /*#__PURE__*/_jsx(Config, {
114
+ children: /*#__PURE__*/_jsx(MapView, {
115
+ className: className,
116
+ children: children
117
+ })
118
+ })
119
+ });
81
120
  }
121
+
82
122
  export default WithLoaderMap;
@@ -0,0 +1,24 @@
1
+ .c-map-container {
2
+ width: 100%;
3
+ height: 100%;
4
+ position: relative;
5
+ .amap-container {
6
+ width: 100%;
7
+ height: 100%;
8
+ .amap-logo {
9
+ display: none !important;
10
+ }
11
+ .amap-copyright {
12
+ display: none !important;
13
+ }
14
+ }
15
+ .leaflet-container {
16
+ width: 100%;
17
+ height: 100%;
18
+ z-index: 1;
19
+ }
20
+ .leaflet-div-icon {
21
+ border: none;
22
+ background-color: transparent;
23
+ }
24
+ }
@@ -1,5 +1,5 @@
1
- /// <reference types="src/map/amap" />
1
+ /// <reference path="../AMap.d.ts" />
2
2
  import { MapPoint, Marker, LClusterInterface } from '../interface';
3
3
  import './index.less';
4
- export declare function useMarkerCluster(onPointClick?: (point: MapPoint) => void): LClusterInterface & AMap.MarkerCluster;
4
+ export declare function useMarkerCluster(onPointClick?: (point: MapPoint) => void): (LClusterInterface & AMap.MarkerCluster) | null;
5
5
  export declare function useMarkers(points?: MapPoint[]): Marker[];
@@ -1,17 +1,30 @@
1
1
  import _useUnmount from "ahooks/es/useUnmount";
2
2
  import _useUpdate from "ahooks/es/useUpdate";
3
+
4
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
5
+
6
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
7
+
8
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
9
+
3
10
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
11
+
4
12
  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."); }
13
+
5
14
  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); }
15
+
6
16
  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; }
17
+
7
18
  function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
19
+
8
20
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
21
+
9
22
  /// <reference path="../AMap.d.ts" />
10
23
  import { useContext, useEffect, useRef, useState } from 'react';
11
- import useMapType from '../hook/useMapType';
12
- import { mapContext } from '../Context';
13
- import { createMapCenterIcon } from '../icon';
14
- import "./index.css";
24
+ import useMapType from "../hook/useMapType";
25
+ import { mapContext } from "../Context";
26
+ import { createMapCenterIcon } from "../icon";
27
+ import "./index.less";
15
28
  var clusterOptions = {
16
29
  showCoverageOnHover: false,
17
30
  maxClusterRadius: 80,
@@ -22,9 +35,12 @@ var clusterOptions = {
22
35
  };
23
36
  export function useMarkerCluster(onPointClick) {
24
37
  var _useContext = useContext(mapContext),
25
- instance = _useContext.instance;
38
+ instance = _useContext.instance;
39
+
26
40
  var type = useMapType();
41
+
27
42
  var update = _useUpdate();
43
+
28
44
  var clusterRef = useRef(null);
29
45
  useEffect(function () {
30
46
  if (type.leaflet) {
@@ -33,6 +49,7 @@ export function useMarkerCluster(onPointClick) {
33
49
  clusterGroup.addTo(instance.map);
34
50
  clusterRef.current = clusterGroup;
35
51
  }
52
+
36
53
  if (type.AMap) {
37
54
  AMap.plugin(['AMap.MarkerCluster'], function () {
38
55
  var cluster = new AMap.MarkerCluster(instance.map, [], {
@@ -52,44 +69,52 @@ export function useMarkerCluster(onPointClick) {
52
69
  if (e.clusterData.length === 1) {
53
70
  return;
54
71
  }
72
+
55
73
  var lnglat = e === null || e === void 0 ? void 0 : e.lnglat;
56
74
  lnglat && instance.setZoomAndCenter(instance.getZoom() + 1, lnglat);
57
75
  });
58
76
  clusterRef.current = cluster;
59
77
  });
60
78
  }
61
- update();
62
- // eslint-disable-next-line react-hooks/exhaustive-deps
79
+
80
+ update(); // eslint-disable-next-line react-hooks/exhaustive-deps
63
81
  }, []);
82
+
64
83
  _useUnmount(function () {
65
84
  try {
66
85
  instance.map.remove(clusterRef.current);
67
86
  } catch (_) {}
68
87
  });
88
+
69
89
  return clusterRef.current;
70
90
  }
71
91
  export function useMarkers(points) {
72
92
  var type = useMapType();
73
93
  var L = window.L;
94
+
74
95
  var _useState = useState({
75
- markers: []
76
- }),
77
- _useState2 = _slicedToArray(_useState, 2),
78
- state = _useState2[0],
79
- setState = _useState2[1];
96
+ markers: []
97
+ }),
98
+ _useState2 = _slicedToArray(_useState, 2),
99
+ state = _useState2[0],
100
+ setState = _useState2[1];
101
+
80
102
  useEffect(function () {
81
103
  if (!points) {
82
104
  return;
83
105
  }
106
+
84
107
  var arr = [];
108
+
85
109
  if (type.leaflet) {
86
110
  for (var i = 0, l = points.length; i < l; i++) {
87
- var point = points[i];
88
- if (point && point.latitude && point.longitude) {
89
- var marker = new L.Marker(L.latLng(point.latitude, point.longitude), {
111
+ var _point = points[i];
112
+
113
+ if (_point && _point.latitude && _point.longitude) {
114
+ var marker = new L.Marker(L.latLng(_point.latitude, _point.longitude), {
90
115
  icon: createMapCenterIcon()
91
116
  });
92
- marker.bindTooltip(point.deviceName, {
117
+ marker.bindTooltip(_point.deviceName, {
93
118
  direction: 'top',
94
119
  offset: [0, -30]
95
120
  });
@@ -97,22 +122,25 @@ export function useMarkers(points) {
97
122
  }
98
123
  }
99
124
  }
125
+
100
126
  if (type.AMap) {
101
127
  for (var _i2 = 0, _l = points.length; _i2 < _l; _i2++) {
102
- var _point = points[_i2];
103
- if (_point && _point.latitude && _point.longitude) {
104
- var _marker = Object.assign({
105
- lnglat: new AMap.LngLat(_point.longitude, _point.latitude),
128
+ var _point2 = points[_i2];
129
+
130
+ if (_point2 && _point2.latitude && _point2.longitude) {
131
+ var _marker = _objectSpread({
132
+ lnglat: new AMap.LngLat(_point2.longitude, _point2.latitude),
106
133
  weight: 1
107
- }, _point);
134
+ }, _point2);
135
+
108
136
  arr.push(_marker);
109
137
  }
110
138
  }
111
139
  }
140
+
112
141
  setState({
113
142
  markers: arr
114
- });
115
- // eslint-disable-next-line react-hooks/exhaustive-deps
143
+ }); // eslint-disable-next-line react-hooks/exhaustive-deps
116
144
  }, [points]);
117
145
  return state.markers;
118
146
  }
@@ -1,5 +1,5 @@
1
+ /// <reference path="../AMap.d.ts" />
1
2
  /// <reference types="react" />
2
- /// <reference types="src/map/amap" />
3
3
  import { IClusterLayerProps } from './props';
4
4
  import './index.less';
5
5
  declare function ClusterLayer({ points, onPointClick, children }: IClusterLayerProps): JSX.Element;
@@ -1,12 +1,15 @@
1
1
  /// <reference path="../AMap.d.ts" />
2
2
  import React, { useEffect } from 'react';
3
- import { useMarkerCluster, useMarkers } from './hook';
4
- import useMapType from '../hook/useMapType';
5
- import "./index.css";
3
+ import { useMarkerCluster, useMarkers } from "./hook";
4
+ import useMapType from "../hook/useMapType";
5
+ import "./index.less";
6
+ import { Fragment as _Fragment } from "react/jsx-runtime";
7
+ import { jsx as _jsx } from "react/jsx-runtime";
8
+
6
9
  function ClusterLayer(_ref) {
7
10
  var points = _ref.points,
8
- onPointClick = _ref.onPointClick,
9
- children = _ref.children;
11
+ onPointClick = _ref.onPointClick,
12
+ children = _ref.children;
10
13
  var type = useMapType();
11
14
  var cluster = useMarkerCluster(onPointClick);
12
15
  var markers = useMarkers(points);
@@ -14,15 +17,20 @@ function ClusterLayer(_ref) {
14
17
  if (!cluster) {
15
18
  return;
16
19
  }
20
+
17
21
  if (type.leaflet) {
18
22
  cluster.clearLayers();
19
23
  cluster.addLayers(markers);
20
24
  }
25
+
21
26
  if (type.AMap) {
22
27
  cluster.setData([]);
23
28
  cluster.setData(markers);
24
29
  }
25
30
  }, [cluster, markers, type.AMap, type.leaflet]);
26
- return /*#__PURE__*/React.createElement(React.Fragment, null, children);
31
+ return /*#__PURE__*/_jsx(_Fragment, {
32
+ children: children
33
+ });
27
34
  }
35
+
28
36
  export default ClusterLayer;
@@ -0,0 +1,27 @@
1
+ .c-cluster-marker-layout {
2
+ width: 35px;
3
+ height: 35px;
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ position: relative;
8
+ & > div {
9
+ width: 28px;
10
+ height: 28px;
11
+ border-radius: 50%;
12
+ display: flex;
13
+ justify-content: center;
14
+ align-items: center;
15
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
16
+ text-align: center;
17
+ line-height: 28px;
18
+ .anticon {
19
+ font-size: 17px;
20
+ color: #fff;
21
+ }
22
+ }
23
+ }
24
+
25
+ .c-cluster-div-icon {
26
+ background: unset;
27
+ }
@@ -1,24 +1,47 @@
1
+ var _excluded = ["children", "MAP_GLABAL_KEY"];
2
+
3
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
4
+
5
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
6
+
7
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+
1
9
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
10
+
2
11
  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."); }
12
+
3
13
  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); }
14
+
4
15
  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; }
16
+
5
17
  function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
18
+
6
19
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
7
- import { __rest } from "tslib";
20
+
21
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
22
+
23
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
24
+
8
25
  import React, { useEffect, useMemo, useState } from 'react';
9
- import { queryMapConfig } from './utils';
10
- function Config(_a) {
11
- var children = _a.children,
12
- MAP_GLABAL_KEY = _a.MAP_GLABAL_KEY,
13
- props = __rest(_a, ["children", "MAP_GLABAL_KEY"]);
26
+ import { queryMapConfig } from "./utils";
27
+ import { Fragment as _Fragment } from "react/jsx-runtime";
28
+ import { jsx as _jsx } from "react/jsx-runtime";
29
+
30
+ function Config(_ref) {
31
+ var children = _ref.children,
32
+ MAP_GLABAL_KEY = _ref.MAP_GLABAL_KEY,
33
+ props = _objectWithoutProperties(_ref, _excluded);
34
+
14
35
  var _useState = useState(),
15
- _useState2 = _slicedToArray(_useState, 2),
16
- config = _useState2[0],
17
- setConfig = _useState2[1];
36
+ _useState2 = _slicedToArray(_useState, 2),
37
+ config = _useState2[0],
38
+ setConfig = _useState2[1];
39
+
18
40
  var _useState3 = useState(false),
19
- _useState4 = _slicedToArray(_useState3, 2),
20
- isInit = _useState4[0],
21
- setInit = _useState4[1];
41
+ _useState4 = _slicedToArray(_useState3, 2),
42
+ isInit = _useState4[0],
43
+ setInit = _useState4[1];
44
+
22
45
  var extProps = useMemo(function () {
23
46
  return config ? {
24
47
  config: config
@@ -29,11 +52,16 @@ function Config(_a) {
29
52
  return setInit(true);
30
53
  });
31
54
  }, [MAP_GLABAL_KEY]);
55
+
32
56
  if (!isInit) {
33
- return /*#__PURE__*/React.createElement(React.Fragment, null);
57
+ return /*#__PURE__*/_jsx(_Fragment, {});
34
58
  }
35
- return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.cloneElement(children, Object.assign(Object.assign(Object.assign({}, props), extProps), {
36
- MAP_GLABAL_KEY: MAP_GLABAL_KEY
37
- })));
59
+
60
+ return /*#__PURE__*/_jsx(_Fragment, {
61
+ children: /*#__PURE__*/React.cloneElement(children, _objectSpread(_objectSpread(_objectSpread({}, props), extProps), {}, {
62
+ MAP_GLABAL_KEY: MAP_GLABAL_KEY
63
+ }))
64
+ });
38
65
  }
66
+
39
67
  export default Config;
@@ -1,6 +1,11 @@
1
1
  function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+
2
3
  function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return generator._invoke = function (innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; }(innerFn, self, context), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (object) { var keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
3
- import { __awaiter } from "tslib";
4
+
5
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
6
+
7
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
8
+
4
9
  var localconfig = {
5
10
  url: 'http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}',
6
11
  subdomains: ['1', '2', '3', '4'],
@@ -14,18 +19,24 @@ var localconfig = {
14
19
  amapStyle: 'normal',
15
20
  maxBounds: [[66.749529, 3.31743], [138.55617, 56.353861]]
16
21
  };
17
- export function queryMapConfig(type) {
18
- return __awaiter(this, void 0, void 0, /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
22
+ export function queryMapConfig(_x) {
23
+ return _queryMapConfig.apply(this, arguments);
24
+ }
25
+
26
+ function _queryMapConfig() {
27
+ _queryMapConfig = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(type) {
19
28
  var url, crs, maxBounds, subdomains, zoom, zoomOffset, center, maxZoom, minZoom, distance, amapStyle;
20
29
  return _regeneratorRuntime().wrap(function _callee$(_context) {
21
30
  while (1) {
22
31
  switch (_context.prev = _context.next) {
23
32
  case 0:
24
33
  url = localconfig.url, crs = localconfig.crs, maxBounds = localconfig.maxBounds, subdomains = localconfig.subdomains, zoom = localconfig.zoom, zoomOffset = localconfig.zoomOffset, center = localconfig.center, maxZoom = localconfig.maxZoom, minZoom = localconfig.minZoom, distance = localconfig.distance, amapStyle = localconfig.amapStyle;
34
+
25
35
  if (!(type === 'L')) {
26
36
  _context.next = 3;
27
37
  break;
28
38
  }
39
+
29
40
  return _context.abrupt("return", {
30
41
  url: url,
31
42
  crs: crs,
@@ -40,6 +51,7 @@ export function queryMapConfig(type) {
40
51
  minZoom: minZoom,
41
52
  distance: distance
42
53
  });
54
+
43
55
  case 3:
44
56
  return _context.abrupt("return", {
45
57
  crs: crs,
@@ -52,6 +64,7 @@ export function queryMapConfig(type) {
52
64
  maxBounds: maxBounds,
53
65
  amapStyle: amapStyle
54
66
  });
67
+
55
68
  case 4:
56
69
  case "end":
57
70
  return _context.stop();
@@ -59,4 +72,5 @@ export function queryMapConfig(type) {
59
72
  }
60
73
  }, _callee);
61
74
  }));
75
+ return _queryMapConfig.apply(this, arguments);
62
76
  }