@douyinfe/semi-ui 2.1.3 → 2.1.6-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (788) hide show
  1. package/_base/_story/index.scss +15 -0
  2. package/_base/_story/index.stories.js +118 -0
  3. package/_base/_story/index.stories.tsx +55 -0
  4. package/_base/base.scss +3 -0
  5. package/_base/base.ts +36 -0
  6. package/_base/baseComponent.tsx +78 -0
  7. package/_base/reactUtils.ts +43 -0
  8. package/_portal/_story/portal.stories.js +17 -0
  9. package/_portal/index.tsx +112 -0
  10. package/_test_/utils/dom/index.js +9 -0
  11. package/_test_/utils/function/index.js +1 -0
  12. package/_test_/utils/function/sleep.js +9 -0
  13. package/_test_/utils/index.js +4 -0
  14. package/_test_/utils/table/index.js +310 -0
  15. package/_test_/utils/tooltip/index.js +39 -0
  16. package/_utils/index.ts +157 -0
  17. package/anchor/__test__/anchor.test.js +59 -0
  18. package/anchor/_story/anchor.stories.js +266 -0
  19. package/anchor/_story/anchor.stories.tsx +165 -0
  20. package/anchor/anchor-context.ts +13 -0
  21. package/anchor/index.tsx +296 -0
  22. package/anchor/link.tsx +136 -0
  23. package/autoComplete/__test__/autoComplete.test.js +456 -0
  24. package/autoComplete/_story/CustomTrigger/index.jsx +106 -0
  25. package/autoComplete/_story/autoComplete.stories.js +349 -0
  26. package/autoComplete/_story/autoComplete.stories.tsx +87 -0
  27. package/autoComplete/index.tsx +476 -0
  28. package/avatar/__test__/avatar.test.js +363 -0
  29. package/avatar/__test__/avatarGroup.test.js +193 -0
  30. package/avatar/_story/Demo.tsx +22 -0
  31. package/avatar/_story/avatar.stories.js +191 -0
  32. package/avatar/_story/avatar.stories.tsx +7 -0
  33. package/avatar/avatarGroup.tsx +81 -0
  34. package/avatar/index.tsx +163 -0
  35. package/avatar/interface.ts +51 -0
  36. package/backtop/__test__/backtop.test.js +49 -0
  37. package/backtop/_story/backtop.stories.js +37 -0
  38. package/backtop/_story/backtop.stories.tsx +30 -0
  39. package/backtop/index.tsx +112 -0
  40. package/badge/__test__/badge.test.js +123 -0
  41. package/badge/_story/Demo.tsx +16 -0
  42. package/badge/_story/badge.stories.js +91 -0
  43. package/badge/_story/badge.stories.tsx +8 -0
  44. package/badge/index.tsx +80 -0
  45. package/banner/__test__/banner.test.js +58 -0
  46. package/banner/_story/Demo.tsx +14 -0
  47. package/banner/_story/banner.stories.js +45 -0
  48. package/banner/_story/banner.stories.tsx +8 -0
  49. package/banner/index.tsx +172 -0
  50. package/breadcrumb/__test__/breadcrumb.test.js +219 -0
  51. package/breadcrumb/_story/Demo.tsx +24 -0
  52. package/breadcrumb/_story/breadcrumb.stories.js +317 -0
  53. package/breadcrumb/_story/breadcrumb.stories.tsx +45 -0
  54. package/breadcrumb/bread-context.tsx +13 -0
  55. package/breadcrumb/index.tsx +293 -0
  56. package/breadcrumb/item.tsx +207 -0
  57. package/button/Button.tsx +126 -0
  58. package/button/__test__/button.test.js +64 -0
  59. package/button/_story/Demo.tsx +51 -0
  60. package/button/_story/button.stories.js +293 -0
  61. package/button/_story/button.stories.tsx +10 -0
  62. package/button/buttonGroup.tsx +49 -0
  63. package/button/index.tsx +38 -0
  64. package/button/splitButtonGroup.tsx +27 -0
  65. package/calendar/__test__/calendar.test.js +163 -0
  66. package/calendar/_story/Demo.tsx +20 -0
  67. package/calendar/_story/calendar.stories.js +405 -0
  68. package/calendar/_story/calendar.stories.tsx +5 -0
  69. package/calendar/dayCalendar.tsx +191 -0
  70. package/calendar/dayCol.tsx +156 -0
  71. package/calendar/index.tsx +61 -0
  72. package/calendar/interface.ts +42 -0
  73. package/calendar/monthCalendar.tsx +399 -0
  74. package/calendar/rangeCalendar.tsx +270 -0
  75. package/calendar/timeCol.tsx +64 -0
  76. package/calendar/weekCalendar.tsx +271 -0
  77. package/card/__test__/card.test.js +202 -0
  78. package/card/_story/card.stories.js +555 -0
  79. package/card/_story/card.stories.tsx +100 -0
  80. package/card/cardGroup.tsx +63 -0
  81. package/card/index.tsx +243 -0
  82. package/card/meta.tsx +73 -0
  83. package/cascader/__test__/cascader.test.js +1030 -0
  84. package/cascader/_story/CustomTrigger/index.jsx +63 -0
  85. package/cascader/_story/Demo.tsx +63 -0
  86. package/cascader/_story/cascader.stories.js +1213 -0
  87. package/cascader/_story/cascader.stories.tsx +6 -0
  88. package/cascader/index.tsx +901 -0
  89. package/cascader/item.tsx +304 -0
  90. package/checkbox/__test__/checkbox.test.js +85 -0
  91. package/checkbox/__test__/checkboxGroup.test.js +180 -0
  92. package/checkbox/_story/Demo.tsx +27 -0
  93. package/checkbox/_story/checkbox.stories.js +1015 -0
  94. package/checkbox/_story/checkbox.stories.tsx +8 -0
  95. package/checkbox/checkbox.tsx +203 -0
  96. package/checkbox/checkboxGroup.tsx +172 -0
  97. package/checkbox/checkboxInner.tsx +88 -0
  98. package/checkbox/context.ts +14 -0
  99. package/checkbox/index.tsx +19 -0
  100. package/collapse/__test__/collapse.test.js +148 -0
  101. package/collapse/_story/Demo.tsx +28 -0
  102. package/collapse/_story/accordion.stories.js +143 -0
  103. package/collapse/_story/accordion.stories.tsx +8 -0
  104. package/collapse/collapse-context.tsx +18 -0
  105. package/collapse/index.tsx +119 -0
  106. package/collapse/item.tsx +139 -0
  107. package/collapsible/_story/Demo.tsx +41 -0
  108. package/collapsible/_story/Nested/index.js +101 -0
  109. package/collapsible/_story/collapsible.stories.js +588 -0
  110. package/collapsible/_story/collapsible.stories.tsx +7 -0
  111. package/collapsible/index.tsx +156 -0
  112. package/configProvider/_story/ChangeTimeZone/index.js +183 -0
  113. package/configProvider/_story/GetPopupContainer/index.js +194 -0
  114. package/configProvider/_story/RTLDirection/RTLForm.jsx +313 -0
  115. package/configProvider/_story/RTLDirection/RTLTable.jsx +94 -0
  116. package/configProvider/_story/RTLDirection/RTLWrapper.tsx +27 -0
  117. package/configProvider/_story/configProvider.stories.js +30 -0
  118. package/configProvider/context.tsx +14 -0
  119. package/configProvider/index.tsx +48 -0
  120. package/datePicker/__test__/datePicker.test.js +873 -0
  121. package/datePicker/_story/AllTypes/index.js +19 -0
  122. package/datePicker/_story/AutoSwitchDate/index.jsx +14 -0
  123. package/datePicker/_story/Autofocus/index.js +11 -0
  124. package/datePicker/_story/BetterRangePicker/index.jsx +172 -0
  125. package/datePicker/_story/Callbacks/index.jsx +24 -0
  126. package/datePicker/_story/ControlledDemo/index.js +149 -0
  127. package/datePicker/_story/CustomTrigger/index.jsx +36 -0
  128. package/datePicker/_story/Cycled/index.jsx +11 -0
  129. package/datePicker/_story/DateOffset/index.js +83 -0
  130. package/datePicker/_story/DatePickerSlot/index.jsx +83 -0
  131. package/datePicker/_story/DatePickerSlot/index.scss +7 -0
  132. package/datePicker/_story/DatePickerTimeZone/index.jsx +27 -0
  133. package/datePicker/_story/Density/index.jsx +69 -0
  134. package/datePicker/_story/DisabledDate/index.js +189 -0
  135. package/datePicker/_story/ExceptionDemo/index.js +20 -0
  136. package/datePicker/_story/Multiple/index.jsx +24 -0
  137. package/datePicker/_story/NeedConfirm/index.jsx +94 -0
  138. package/datePicker/_story/OnChangeWithDateFirst/index.jsx +37 -0
  139. package/datePicker/_story/OverPopover/index.jsx +22 -0
  140. package/datePicker/_story/RenderDate/index.js +21 -0
  141. package/datePicker/_story/RenderFullDate/index.js +56 -0
  142. package/datePicker/_story/RenderFullDate/index.scss +23 -0
  143. package/datePicker/_story/SyncSwitchMonth/index.js +45 -0
  144. package/datePicker/_story/TimePickerOpts/index.jsx +16 -0
  145. package/datePicker/_story/datePicker.stories.js +636 -0
  146. package/datePicker/_story/datePicker.stories.tsx +230 -0
  147. package/datePicker/dateInput.tsx +358 -0
  148. package/datePicker/datePicker.tsx +647 -0
  149. package/datePicker/footer.tsx +29 -0
  150. package/datePicker/index.tsx +71 -0
  151. package/datePicker/month.tsx +388 -0
  152. package/datePicker/monthsGrid.tsx +615 -0
  153. package/datePicker/navigation.tsx +120 -0
  154. package/datePicker/quickControl.tsx +54 -0
  155. package/datePicker/yearAndMonth.tsx +228 -0
  156. package/descriptions/__test__/descriptions.test.js +167 -0
  157. package/descriptions/_story/Demo.tsx +36 -0
  158. package/descriptions/_story/descriptions.stories.js +95 -0
  159. package/descriptions/_story/descriptions.stories.tsx +6 -0
  160. package/descriptions/descriptions-context.ts +11 -0
  161. package/descriptions/index.tsx +82 -0
  162. package/descriptions/item.tsx +63 -0
  163. package/dist/css/semi.css +67 -12
  164. package/dist/css/semi.min.css +1 -1
  165. package/dist/umd/semi-ui.js +310 -279
  166. package/dist/umd/semi-ui.js.map +1 -1
  167. package/dist/umd/semi-ui.min.js +1 -1
  168. package/dist/umd/semi-ui.min.js.map +1 -1
  169. package/dropdown/__test__/dropdown.test.js +308 -0
  170. package/dropdown/_story/AutoClose/index.js +120 -0
  171. package/dropdown/_story/DisabledItem/index.js +31 -0
  172. package/dropdown/_story/InHoverElements/index.js +25 -0
  173. package/dropdown/_story/InHoverElements/index.scss +16 -0
  174. package/dropdown/_story/MultiDropdown/index.js +34 -0
  175. package/dropdown/_story/WrapAvatar/index.jsx +10 -0
  176. package/dropdown/_story/dropdown.stories.js +331 -0
  177. package/dropdown/_story/dropdown.stories.tsx +28 -0
  178. package/dropdown/_story/inTable/index.js +194 -0
  179. package/dropdown/context.ts +6 -0
  180. package/dropdown/dropdownDivider.tsx +23 -0
  181. package/dropdown/dropdownItem.tsx +104 -0
  182. package/dropdown/dropdownMenu.tsx +28 -0
  183. package/dropdown/dropdownTitle.tsx +36 -0
  184. package/dropdown/index.tsx +239 -0
  185. package/empty/__test__/empty.test.js +63 -0
  186. package/empty/_story/Demo.tsx +10 -0
  187. package/empty/_story/empty.stories.js +53 -0
  188. package/empty/_story/empty.stories.tsx +8 -0
  189. package/empty/index.tsx +127 -0
  190. package/form/__test__/arrayField.test.js +204 -0
  191. package/form/__test__/baseForm/baseForm.test.js +628 -0
  192. package/form/__test__/baseForm/onChange.test.js +144 -0
  193. package/form/__test__/errorMessage.test.js +59 -0
  194. package/form/__test__/field.test.js +426 -0
  195. package/form/__test__/formApi.test.js +422 -0
  196. package/form/__test__/group.test.js +108 -0
  197. package/form/__test__/hoc.test.js +24 -0
  198. package/form/__test__/label.test.js +69 -0
  199. package/form/__test__/section.test.js +49 -0
  200. package/form/__test__/slot.test.js +108 -0
  201. package/form/_story/Debug/bugDemo.jsx +219 -0
  202. package/form/_story/Debug/childDidMount.jsx +30 -0
  203. package/form/_story/Debug/myRadio.jsx +32 -0
  204. package/form/_story/DynamicField/arrayFieldDemo.jsx +320 -0
  205. package/form/_story/DynamicField/nestArrayField.jsx +159 -0
  206. package/form/_story/FieldProps/bigNumberFieldPath.jsx +73 -0
  207. package/form/_story/FieldProps/convert.jsx +100 -0
  208. package/form/_story/FieldProps/fieldRef.jsx +74 -0
  209. package/form/_story/FieldProps/helpAndExtra.jsx +136 -0
  210. package/form/_story/FieldProps/pureField.jsx +0 -0
  211. package/form/_story/FieldProps/rulesUpdateDemo.js +116 -0
  212. package/form/_story/FormApi/arrayDemo.jsx +97 -0
  213. package/form/_story/FormApi/formApiDemo.jsx +82 -0
  214. package/form/_story/FormApi/resetDemo.jsx +41 -0
  215. package/form/_story/FormApi/setValuesDemo.jsx +133 -0
  216. package/form/_story/HOC/displayName.jsx +19 -0
  217. package/form/_story/HOC/withFieldDemo.jsx +216 -0
  218. package/form/_story/Hook/hookDemo.jsx +195 -0
  219. package/form/_story/Layout/layoutDemo.jsx +348 -0
  220. package/form/_story/Layout/modalFormDemo.jsx +94 -0
  221. package/form/_story/Layout/slotDemo.jsx +126 -0
  222. package/form/_story/Performance/performanceDemo.jsx +440 -0
  223. package/form/_story/Performance/selectUseReactNode.jsx +110 -0
  224. package/form/_story/Reference/inform.test.js +110 -0
  225. package/form/_story/Validate/validateDemo.jsx +421 -0
  226. package/form/_story/demo.jsx +397 -0
  227. package/form/_story/form.stories.js +439 -0
  228. package/form/_story/form.stories.tsx +176 -0
  229. package/form/arrayField.tsx +199 -0
  230. package/form/baseForm.tsx +290 -0
  231. package/form/context.tsx +18 -0
  232. package/form/errorMessage.tsx +80 -0
  233. package/form/field.tsx +79 -0
  234. package/form/group.tsx +91 -0
  235. package/form/hoc/withField.tsx +559 -0
  236. package/form/hoc/withFormApi.tsx +11 -0
  237. package/form/hoc/withFormState.tsx +11 -0
  238. package/form/hooks/index.ts +12 -0
  239. package/form/hooks/useArrayFieldState.tsx +9 -0
  240. package/form/hooks/useFieldApi.tsx +21 -0
  241. package/form/hooks/useFieldState.tsx +18 -0
  242. package/form/hooks/useFormApi.tsx +6 -0
  243. package/form/hooks/useFormState.tsx +9 -0
  244. package/form/hooks/useFormUpdater.tsx +6 -0
  245. package/form/hooks/useStateWithGetter.ts +13 -0
  246. package/form/index.tsx +42 -0
  247. package/form/interface.ts +132 -0
  248. package/form/label.tsx +79 -0
  249. package/form/section.tsx +38 -0
  250. package/form/slot.tsx +165 -0
  251. package/getBabelConfig.js +37 -0
  252. package/grid/__test__/calculateGutter.test.js +50 -0
  253. package/grid/_story/demo.scss +23 -0
  254. package/grid/_story/grid.stories.js +290 -0
  255. package/grid/_story/grid.stories.tsx +15 -0
  256. package/grid/col.tsx +133 -0
  257. package/grid/index.tsx +7 -0
  258. package/grid/row.tsx +174 -0
  259. package/gulpfile.js +116 -0
  260. package/iconButton/_story/iconButton.stories.tsx +16 -0
  261. package/iconButton/index.tsx +130 -0
  262. package/icons/_story/Others/add-template-icon.jsx +0 -0
  263. package/icons/_story/Others/add-template-icon.svg +10 -0
  264. package/icons/_story/Others/hangup.svg +3 -0
  265. package/icons/_story/Others/index.js +24 -0
  266. package/icons/_story/Others/xianglin.svg +3 -0
  267. package/icons/_story/icon.stories.js +63 -0
  268. package/icons/_story/icon.stories.tsx +46 -0
  269. package/icons/index.tsx +5 -0
  270. package/index.ts +94 -0
  271. package/input/__test__/input.test.js +245 -0
  272. package/input/__test__/textArea.test.js +119 -0
  273. package/input/_story/Demo.tsx +33 -0
  274. package/input/_story/TextareaDemo.tsx +27 -0
  275. package/input/_story/input.scss +0 -0
  276. package/input/_story/input.stories.js +887 -0
  277. package/input/_story/input.stories.tsx +11 -0
  278. package/input/index.tsx +444 -0
  279. package/input/inputGroup.tsx +119 -0
  280. package/input/textarea.tsx +330 -0
  281. package/inputNumber/__test__/inputNumber.test.js +370 -0
  282. package/inputNumber/_story/input.stories.tsx +17 -0
  283. package/inputNumber/_story/inputNumber.scss +10 -0
  284. package/inputNumber/_story/inputNumber.stories.js +643 -0
  285. package/inputNumber/index.tsx +480 -0
  286. package/layout/Sider.tsx +116 -0
  287. package/layout/__test__/layout.test.js +51 -0
  288. package/layout/_story/layout.stories.js +305 -0
  289. package/layout/_story/layout.stories.tsx +13 -0
  290. package/layout/index.tsx +126 -0
  291. package/layout/layout-context.ts +18 -0
  292. package/lib/cjs/_base/base.css +2 -2
  293. package/lib/cjs/button/Button.d.ts +1 -0
  294. package/lib/cjs/button/buttonGroup.js +11 -3
  295. package/lib/cjs/cascader/item.js +5 -0
  296. package/lib/cjs/checkbox/checkbox.js +4 -1
  297. package/lib/cjs/checkbox/checkboxGroup.d.ts +1 -0
  298. package/lib/cjs/checkbox/checkboxGroup.js +3 -1
  299. package/lib/cjs/form/baseForm.d.ts +2 -1
  300. package/lib/cjs/form/field.d.ts +2 -1
  301. package/lib/cjs/form/hoc/withField.js +3 -1
  302. package/lib/cjs/modal/Modal.d.ts +8 -8
  303. package/lib/cjs/modal/Modal.js +4 -4
  304. package/lib/cjs/modal/confirm.d.ts +10 -10
  305. package/lib/cjs/navigation/index.d.ts +2 -2
  306. package/lib/cjs/pagination/index.js +9 -4
  307. package/lib/cjs/radio/radio.js +1 -0
  308. package/lib/cjs/rating/item.js +2 -1
  309. package/lib/cjs/select/index.d.ts +1 -0
  310. package/lib/cjs/select/index.js +5 -1
  311. package/lib/cjs/table/Table.d.ts +1 -1
  312. package/lib/cjs/timeline/item.d.ts +2 -2
  313. package/lib/cjs/timeline/item.js +3 -3
  314. package/lib/cjs/tree/treeNode.js +0 -2
  315. package/lib/cjs/treeSelect/index.js +1 -0
  316. package/lib/cjs/typography/title.d.ts +1 -1
  317. package/lib/cjs/upload/index.d.ts +10 -1
  318. package/lib/cjs/upload/index.js +8 -0
  319. package/lib/es/_base/base.css +2 -2
  320. package/lib/es/button/Button.d.ts +1 -0
  321. package/lib/es/button/buttonGroup.js +3 -3
  322. package/lib/es/cascader/item.js +5 -0
  323. package/lib/es/checkbox/checkbox.js +4 -1
  324. package/lib/es/checkbox/checkboxGroup.d.ts +1 -0
  325. package/lib/es/checkbox/checkboxGroup.js +3 -1
  326. package/lib/es/form/baseForm.d.ts +2 -1
  327. package/lib/es/form/field.d.ts +2 -1
  328. package/lib/es/form/hoc/withField.js +3 -1
  329. package/lib/es/modal/Modal.d.ts +8 -8
  330. package/lib/es/modal/Modal.js +4 -4
  331. package/lib/es/modal/confirm.d.ts +10 -10
  332. package/lib/es/navigation/index.d.ts +2 -2
  333. package/lib/es/pagination/index.js +8 -4
  334. package/lib/es/radio/radio.js +1 -0
  335. package/lib/es/rating/item.js +2 -1
  336. package/lib/es/select/index.d.ts +1 -0
  337. package/lib/es/select/index.js +5 -1
  338. package/lib/es/table/Table.d.ts +1 -1
  339. package/lib/es/timeline/item.d.ts +2 -2
  340. package/lib/es/timeline/item.js +3 -3
  341. package/lib/es/tree/treeNode.js +0 -2
  342. package/lib/es/treeSelect/index.js +1 -0
  343. package/lib/es/typography/title.d.ts +1 -1
  344. package/lib/es/upload/index.d.ts +10 -1
  345. package/lib/es/upload/index.js +8 -0
  346. package/list/__test__/list.test.js +264 -0
  347. package/list/_story/list.stories.js +920 -0
  348. package/list/_story/list.stories.tsx +26 -0
  349. package/list/index.tsx +173 -0
  350. package/list/item.tsx +109 -0
  351. package/list/list-context.ts +15 -0
  352. package/locale/README.md +53 -0
  353. package/locale/_story/locale.stories.js +221 -0
  354. package/locale/_story/locale.stories.tsx +57 -0
  355. package/locale/context.tsx +5 -0
  356. package/locale/interface.ts +152 -0
  357. package/locale/localeConsumer.tsx +58 -0
  358. package/locale/localeProvider.tsx +35 -0
  359. package/locale/source/ar.ts +156 -0
  360. package/locale/source/en_GB.ts +156 -0
  361. package/locale/source/en_US.ts +156 -0
  362. package/locale/source/id_ID.ts +157 -0
  363. package/locale/source/ja_JP.ts +157 -0
  364. package/locale/source/ko_KR.ts +157 -0
  365. package/locale/source/ms_MY.ts +156 -0
  366. package/locale/source/pt_BR.ts +164 -0
  367. package/locale/source/ru_RU.ts +159 -0
  368. package/locale/source/th_TH.ts +160 -0
  369. package/locale/source/tr_TR.ts +156 -0
  370. package/locale/source/vi_VN.ts +159 -0
  371. package/locale/source/zh_CN.ts +157 -0
  372. package/locale/source/zh_TW.ts +157 -0
  373. package/modal/ConfirmModal.tsx +89 -0
  374. package/modal/Modal.tsx +415 -0
  375. package/modal/ModalContent.tsx +276 -0
  376. package/modal/__test__/confirm.test.js +203 -0
  377. package/modal/__test__/modal.test.js +324 -0
  378. package/modal/_story/CollapsibleInModal/index.jsx +100 -0
  379. package/modal/_story/DynamicContext/context.js +8 -0
  380. package/modal/_story/DynamicContext/index.jsx +30 -0
  381. package/modal/_story/modal.stories.js +251 -0
  382. package/modal/_story/modal.stories.tsx +41 -0
  383. package/modal/confirm.tsx +121 -0
  384. package/modal/index.tsx +13 -0
  385. package/modal/useModal/HookModal.tsx +62 -0
  386. package/modal/useModal/index.tsx +72 -0
  387. package/motions/Rotate.tsx +64 -0
  388. package/navigation/CollapseButton.tsx +47 -0
  389. package/navigation/Footer.tsx +72 -0
  390. package/navigation/Header.tsx +80 -0
  391. package/navigation/Item.tsx +274 -0
  392. package/navigation/OpenIconTransition.tsx +57 -0
  393. package/navigation/README.md +10 -0
  394. package/navigation/SubNav.tsx +376 -0
  395. package/navigation/SubNavTransition.tsx +58 -0
  396. package/navigation/__test__/navigation.test.js +274 -0
  397. package/navigation/_story/AutoOpen/index.js +69 -0
  398. package/navigation/_story/ControlledSelectedKeys/index.js +78 -0
  399. package/navigation/_story/DisabledNav/index.js +46 -0
  400. package/navigation/_story/ItemsChange/index.js +41 -0
  401. package/navigation/_story/LinkNav/index.jsx +90 -0
  402. package/navigation/_story/MountUnmount/index.js +57 -0
  403. package/navigation/_story/WithChildren/index.js +119 -0
  404. package/navigation/_story/WithRouter/index.js +111 -0
  405. package/navigation/_story/navigation.stories.js +330 -0
  406. package/navigation/_story/navigation.stories.tsx +101 -0
  407. package/navigation/index.tsx +427 -0
  408. package/navigation/nav-context.ts +9 -0
  409. package/notification/NoticeTransition.tsx +68 -0
  410. package/notification/__test__/notification.test.js +325 -0
  411. package/notification/_story/Demo.tsx +29 -0
  412. package/notification/_story/notification.stories.js +225 -0
  413. package/notification/_story/notification.stories.tsx +6 -0
  414. package/notification/_story/useNotification/context.js +3 -0
  415. package/notification/_story/useNotification/index.jsx +29 -0
  416. package/notification/index.tsx +265 -0
  417. package/notification/notice.tsx +185 -0
  418. package/notification/useNotification/HookNotice.tsx +36 -0
  419. package/notification/useNotification/index.tsx +94 -0
  420. package/overflowList/__test__/overflowList.test.js +31 -0
  421. package/overflowList/_story/Demo.tsx +36 -0
  422. package/overflowList/_story/overflowList.stories.js +356 -0
  423. package/overflowList/_story/overflowList.stories.tsx +7 -0
  424. package/overflowList/index.tsx +279 -0
  425. package/overflowList/intersectionObserver.tsx +93 -0
  426. package/package.json +16 -13
  427. package/pagination/__test__/pagination.test.js +255 -0
  428. package/pagination/_story/pagination.stories.js +159 -0
  429. package/pagination/_story/pagination.stories.tsx +11 -0
  430. package/pagination/index.tsx +455 -0
  431. package/popconfirm/__test__/popconfirm.test.js +131 -0
  432. package/popconfirm/_story/DynamicDisable/index.jsx +25 -0
  433. package/popconfirm/_story/InTable/index.js +75 -0
  434. package/popconfirm/_story/ShowArrow/index.jsx +141 -0
  435. package/popconfirm/_story/TitlePopconfirm/index.js +130 -0
  436. package/popconfirm/_story/TypesConfirm/index.jsx +121 -0
  437. package/popconfirm/_story/popconfirm.stories.js +170 -0
  438. package/popconfirm/_story/popconfirm.stories.tsx +20 -0
  439. package/popconfirm/index.tsx +239 -0
  440. package/popover/Arrow.tsx +66 -0
  441. package/popover/__test__/popover.test.js +52 -0
  442. package/popover/_story/ArrowPointAtCenter/index.jsx +138 -0
  443. package/popover/_story/BtnClose/index.jsx +80 -0
  444. package/popover/_story/NestedPopover/index.js +41 -0
  445. package/popover/_story/PopRight/index.js +25 -0
  446. package/popover/_story/PopRight/index.scss +25 -0
  447. package/popover/_story/SelectInPopover/index.jsx +38 -0
  448. package/popover/_story/popover.stories.js +574 -0
  449. package/popover/_story/popover.stories.tsx +53 -0
  450. package/popover/index.tsx +156 -0
  451. package/progress/__test__/progress.test.js +127 -0
  452. package/progress/_story/progress.stories.js +71 -0
  453. package/progress/_story/progress.stories.tsx +11 -0
  454. package/progress/index.tsx +245 -0
  455. package/radio/__test__/radio.test.jsx +91 -0
  456. package/radio/__test__/radioGroup.test.jsx +199 -0
  457. package/radio/_story/Demo.tsx +34 -0
  458. package/radio/_story/radio.scss +4 -0
  459. package/radio/_story/radio.stories.js +868 -0
  460. package/radio/_story/radio.stories.tsx +7 -0
  461. package/radio/context.ts +25 -0
  462. package/radio/index.tsx +12 -0
  463. package/radio/radio.tsx +245 -0
  464. package/radio/radioGroup.tsx +204 -0
  465. package/radio/radioInner.tsx +130 -0
  466. package/rating/__test__/rating.test.js +265 -0
  467. package/rating/_story/rating.stories.js +97 -0
  468. package/rating/_story/rating.stories.tsx +11 -0
  469. package/rating/index.tsx +283 -0
  470. package/rating/item.tsx +112 -0
  471. package/resizeObserver/index.tsx +115 -0
  472. package/scripts/compileDist.js +52 -0
  473. package/scripts/compileLib.js +13 -0
  474. package/scripts/compileScss.js +25 -0
  475. package/scrollList/__test__/scrollList.test.js +226 -0
  476. package/scrollList/_story/ScrollList/index.js +66 -0
  477. package/scrollList/_story/WheelList/index.js +116 -0
  478. package/scrollList/_story/scrolllist.stories.js +26 -0
  479. package/scrollList/_story/scrolllist.stories.tsx +131 -0
  480. package/scrollList/index.tsx +65 -0
  481. package/scrollList/scrollItem.tsx +509 -0
  482. package/select/__test__/select.test.js +1266 -0
  483. package/select/_story/CustomTrigger/index.jsx +21 -0
  484. package/select/_story/select.scss +51 -0
  485. package/select/_story/select.stories.js +2852 -0
  486. package/select/_story/select.stories.tsx +195 -0
  487. package/select/index.tsx +1124 -0
  488. package/select/option.tsx +157 -0
  489. package/select/optionGroup.tsx +42 -0
  490. package/select/utils.tsx +76 -0
  491. package/select/virtualRow.tsx +13 -0
  492. package/sideSheet/SideSheetContent.tsx +174 -0
  493. package/sideSheet/SideSheetTransition.tsx +104 -0
  494. package/sideSheet/__test__/sideSheet.test.js +319 -0
  495. package/sideSheet/_story/sideSheet.stories.js +379 -0
  496. package/sideSheet/_story/sideSheet.stories.tsx +48 -0
  497. package/sideSheet/index.tsx +268 -0
  498. package/skeleton/__test__/skeleton.test.js +32 -0
  499. package/skeleton/_story/skeleton.stories.js +82 -0
  500. package/skeleton/_story/skeleton.stories.tsx +61 -0
  501. package/skeleton/index.tsx +62 -0
  502. package/skeleton/item.tsx +82 -0
  503. package/slider/__test__/__snapshots__/slider.test.js.snap +5 -0
  504. package/slider/__test__/slider.test.js +155 -0
  505. package/slider/_story/Demo.scss +3 -0
  506. package/slider/_story/Demo.tsx +28 -0
  507. package/slider/_story/slider.stories.js +404 -0
  508. package/slider/_story/slider.stories.tsx +7 -0
  509. package/slider/index.tsx +561 -0
  510. package/space/__test__/space.test.js +99 -0
  511. package/space/_story/space.stories.js +254 -0
  512. package/space/_story/space.stories.tsx +26 -0
  513. package/space/index.tsx +95 -0
  514. package/space/utils.ts +24 -0
  515. package/spin/__test__/spin.test.js +46 -0
  516. package/spin/_story/Demo.tsx +10 -0
  517. package/spin/_story/spin.stories.js +92 -0
  518. package/spin/_story/spin.stories.tsx +6 -0
  519. package/spin/icon.tsx +54 -0
  520. package/spin/index.tsx +131 -0
  521. package/steps/__test__/steps.test.js +372 -0
  522. package/steps/_story/steps.stories.js +306 -0
  523. package/steps/_story/steps.stories.tsx +17 -0
  524. package/steps/basicStep.tsx +130 -0
  525. package/steps/basicSteps.tsx +110 -0
  526. package/steps/context.ts +7 -0
  527. package/steps/fillStep.tsx +113 -0
  528. package/steps/fillSteps.tsx +96 -0
  529. package/steps/index.tsx +69 -0
  530. package/steps/navStep.tsx +63 -0
  531. package/steps/navSteps.tsx +73 -0
  532. package/steps/step.tsx +37 -0
  533. package/switch/__test__/switch.test.js +128 -0
  534. package/switch/_story/switch.stories.js +160 -0
  535. package/switch/_story/switch.stories.tsx +124 -0
  536. package/switch/index.tsx +155 -0
  537. package/table/Body/BaseRow.tsx +361 -0
  538. package/table/Body/ExpandedRow.tsx +155 -0
  539. package/table/Body/SectionRow.tsx +200 -0
  540. package/table/Body/index.tsx +842 -0
  541. package/table/ColGroup.tsx +66 -0
  542. package/table/Column.tsx +17 -0
  543. package/table/ColumnFilter.tsx +203 -0
  544. package/table/ColumnSelection.tsx +88 -0
  545. package/table/ColumnShape.ts +33 -0
  546. package/table/ColumnSorter.tsx +58 -0
  547. package/table/CustomExpandIcon.tsx +95 -0
  548. package/table/HeadTable.tsx +118 -0
  549. package/table/ResizableHeaderCell.tsx +44 -0
  550. package/table/ResizableTable.tsx +176 -0
  551. package/table/Table.tsx +1384 -0
  552. package/table/TableCell.tsx +355 -0
  553. package/table/TableContextProvider.tsx +53 -0
  554. package/table/TableHeader.tsx +183 -0
  555. package/table/TableHeaderRow.tsx +180 -0
  556. package/table/TablePagination.tsx +52 -0
  557. package/table/__test__/table.test.js +1887 -0
  558. package/table/_story/BetterScrollbar.tsx +115 -0
  559. package/table/_story/ChildrenData/index.js +251 -0
  560. package/table/_story/ChildrenDataInnerSelected/index.js +221 -0
  561. package/table/_story/ChildrenDataSelected/index.js +247 -0
  562. package/table/_story/ControlledPagination/index.jsx +232 -0
  563. package/table/_story/ControlledSortOrder/index.jsx +85 -0
  564. package/table/_story/CustomComponents/index.js +101 -0
  565. package/table/_story/CustomExpandIcons/index.js +97 -0
  566. package/table/_story/CustomFilterDropdownItem/index.jsx +98 -0
  567. package/table/_story/DefaultSortOrder.tsx +120 -0
  568. package/table/_story/Demos/columnRender.jsx +131 -0
  569. package/table/_story/Demos/controlledPagination.jsx +125 -0
  570. package/table/_story/Demos/customFilter.jsx +110 -0
  571. package/table/_story/Demos/default.jsx +82 -0
  572. package/table/_story/Demos/dynamic.jsx +594 -0
  573. package/table/_story/Demos/expand.jsx +114 -0
  574. package/table/_story/Demos/filterAndSorter.jsx +102 -0
  575. package/table/_story/Demos/fixed.jsx +117 -0
  576. package/table/_story/Demos/fullRender.jsx +131 -0
  577. package/table/_story/Demos/group.jsx +109 -0
  578. package/table/_story/Demos/headerMerge.jsx +121 -0
  579. package/table/_story/Demos/headerMergeJSX.jsx +83 -0
  580. package/table/_story/Demos/infiniteScroll.jsx +118 -0
  581. package/table/_story/Demos/onRow.jsx +114 -0
  582. package/table/_story/Demos/pagination.jsx +101 -0
  583. package/table/_story/Demos/resizable copy.jsx +102 -0
  584. package/table/_story/Demos/resizable.jsx +183 -0
  585. package/table/_story/Demos/rowSelection.jsx +130 -0
  586. package/table/_story/Demos/sortTree.jsx +218 -0
  587. package/table/_story/Demos/sortable.jsx +183 -0
  588. package/table/_story/Demos/span.jsx +155 -0
  589. package/table/_story/Demos/tree.jsx +109 -0
  590. package/table/_story/Demos/treeSelect.jsx +196 -0
  591. package/table/_story/Demos/virtualized.jsx +103 -0
  592. package/table/_story/Demos/zebra.jsx +124 -0
  593. package/table/_story/DragableTable/index.jsx +156 -0
  594. package/table/_story/DragableTable/index.scss +7 -0
  595. package/table/_story/DynamicFilters/data.json +105 -0
  596. package/table/_story/DynamicFilters/index.js +78 -0
  597. package/table/_story/DynamicTable/index.jsx +569 -0
  598. package/table/_story/EventTable/index.jsx +76 -0
  599. package/table/_story/Expand/index.js +85 -0
  600. package/table/_story/ExpandAllGroupRows/index.jsx +90 -0
  601. package/table/_story/ExpandAllRows/index.jsx +111 -0
  602. package/table/_story/ExpandRowByClick.jsx +77 -0
  603. package/table/_story/FilterWithNewDataTable/index.jsx +108 -0
  604. package/table/_story/FixAllColumnsWithoutWidth.tsx +52 -0
  605. package/table/_story/FixRenderReturnProps.jsx +105 -0
  606. package/table/_story/FixedExpandedRows/index.js +105 -0
  607. package/table/_story/FixedGroups/index.js +80 -0
  608. package/table/_story/FixedTable/index.js +92 -0
  609. package/table/_story/FnTable/index.js +103 -0
  610. package/table/_story/FullRender/index.jsx +135 -0
  611. package/table/_story/GroupedCols/index.jsx +83 -0
  612. package/table/_story/GroupedColsFixed/index.jsx +95 -0
  613. package/table/_story/GroupedColsFixedJSX/index.jsx +122 -0
  614. package/table/_story/GroupedColsFixedVirtualized/index.jsx +107 -0
  615. package/table/_story/GroupedColsFixedVirtualizedGroups/index.jsx +110 -0
  616. package/table/_story/GroupedRows/index.js +83 -0
  617. package/table/_story/GroupedRowsFixed/index.js +81 -0
  618. package/table/_story/InSideSheet/index.jsx +90 -0
  619. package/table/_story/InfiniteScroll/index.js +115 -0
  620. package/table/_story/JSXAsyncData/index.jsx +47 -0
  621. package/table/_story/JSXColumnPropColumn.jsx +57 -0
  622. package/table/_story/JSXColumnsComplex.jsx +174 -0
  623. package/table/_story/JSXColumnsNest.tsx +74 -0
  624. package/table/_story/JSXColumnsSmiple.jsx +53 -0
  625. package/table/_story/JSXFixedTable/index.js +224 -0
  626. package/table/_story/JSXTitles/index.js +55 -0
  627. package/table/_story/LinkedScroll/index.jsx +137 -0
  628. package/table/_story/LinkedScroll/index.scss +0 -0
  629. package/table/_story/MassiveColumns/index.jsx +109 -0
  630. package/table/_story/MassiveColumns/index.scss +9 -0
  631. package/table/_story/ModalTable/index.jsx +228 -0
  632. package/table/_story/PagintaionTable/index.js +123 -0
  633. package/table/_story/Perf/Render/complex.jsx +191 -0
  634. package/table/_story/Perf/Render/context.jsx +72 -0
  635. package/table/_story/Perf/Render/controlledSelection.jsx +103 -0
  636. package/table/_story/Perf/Render/index.jsx +95 -0
  637. package/table/_story/Perf/Render/onRow.jsx +112 -0
  638. package/table/_story/Perf/Render/resizableSelection.jsx +193 -0
  639. package/table/_story/Perf/Virtualized/index.jsx +65 -0
  640. package/table/_story/Perf/index.js +8 -0
  641. package/table/_story/RTL/AlignScrollBar.jsx +17 -0
  642. package/table/_story/RTL/index.js +2 -0
  643. package/table/_story/RenderPagination/index.jsx +161 -0
  644. package/table/_story/ResizableColumns/index.jsx +95 -0
  645. package/table/_story/ResizableColumns/index.scss +30 -0
  646. package/table/_story/ResizableTable/index.jsx +85 -0
  647. package/table/_story/ScrollBar/index.jsx +71 -0
  648. package/table/_story/SelectedRows/index.js +137 -0
  649. package/table/_story/TableSpan/index.jsx +117 -0
  650. package/table/_story/TabsTable/index.jsx +78 -0
  651. package/table/_story/TestClone/index.js +0 -0
  652. package/table/_story/VirtualTableOnCell/index.jsx +84 -0
  653. package/table/_story/VirtualizedDynamicData/index.jsx +111 -0
  654. package/table/_story/VirtualizedGroupedRows/index.jsx +135 -0
  655. package/table/_story/VirtualizedNotFixed/index.js +89 -0
  656. package/table/_story/VritualizedDataSelected/index.js +273 -0
  657. package/table/_story/WarnColumnWithoutDataIndex.tsx +71 -0
  658. package/table/_story/WithSideSheet/index.js +82 -0
  659. package/table/_story/data/big.json +8205 -0
  660. package/table/_story/data/big2.json +42271 -0
  661. package/table/_story/table.stories.js +595 -0
  662. package/table/_story/table.stories.tsx +382 -0
  663. package/table/_story/virtualized/index.js +92 -0
  664. package/table/_story/virtualizedFixed/index.js +131 -0
  665. package/table/getColumns.tsx +34 -0
  666. package/table/index.tsx +44 -0
  667. package/table/interface.ts +320 -0
  668. package/table/table-context.ts +28 -0
  669. package/table/utils.ts +123 -0
  670. package/tabs/TabBar.tsx +248 -0
  671. package/tabs/TabPane.tsx +116 -0
  672. package/tabs/TabPaneTransition.tsx +67 -0
  673. package/tabs/__test__/tabs.test.js +208 -0
  674. package/tabs/_story/Demo.tsx +30 -0
  675. package/tabs/_story/search.jsx +37 -0
  676. package/tabs/_story/tabs.stories.js +797 -0
  677. package/tabs/_story/tabs.stories.tsx +6 -0
  678. package/tabs/index.tsx +300 -0
  679. package/tabs/interface.ts +83 -0
  680. package/tabs/tabs-context.ts +6 -0
  681. package/tag/_story/Demo.tsx +22 -0
  682. package/tag/_story/tag.stories.js +234 -0
  683. package/tag/_story/tag.stories.tsx +6 -0
  684. package/tag/group.tsx +131 -0
  685. package/tag/index.tsx +132 -0
  686. package/tag/interface.ts +48 -0
  687. package/tagInput/__test__/tagInput.test.js +352 -0
  688. package/tagInput/_story/tagInput.stories.js +414 -0
  689. package/tagInput/_story/tagInput.stories.tsx +24 -0
  690. package/tagInput/index.tsx +440 -0
  691. package/timePicker/Combobox.tsx +331 -0
  692. package/timePicker/PanelShape.ts +8 -0
  693. package/timePicker/TimeInput.tsx +205 -0
  694. package/timePicker/TimePicker.tsx +531 -0
  695. package/timePicker/TimeShape.ts +19 -0
  696. package/timePicker/__test__/timePicker.test.js +283 -0
  697. package/timePicker/_story/Callbacks/index.jsx +24 -0
  698. package/timePicker/_story/CustomTrigger/index.jsx +35 -0
  699. package/timePicker/_story/DisabledTime/index.jsx +17 -0
  700. package/timePicker/_story/timepicker.stories.js +264 -0
  701. package/timePicker/_story/timepicker.stories.tsx +18 -0
  702. package/timePicker/index.tsx +47 -0
  703. package/timeline/__test__/timeline.test.js +253 -0
  704. package/timeline/_story/timeline.stories.js +185 -0
  705. package/timeline/_story/timeline.stories.tsx +15 -0
  706. package/timeline/index.tsx +96 -0
  707. package/timeline/item.tsx +76 -0
  708. package/toast/ToastTransition.tsx +43 -0
  709. package/toast/__test__/toast-command-call.test.js +63 -0
  710. package/toast/__test__/toast.test.js +104 -0
  711. package/toast/_story/Demo.tsx +22 -0
  712. package/toast/_story/toast.stories.js +98 -0
  713. package/toast/_story/toast.stories.tsx +7 -0
  714. package/toast/index.tsx +234 -0
  715. package/toast/toast.tsx +148 -0
  716. package/toast/useToast/HookToast.tsx +35 -0
  717. package/toast/useToast/index.tsx +79 -0
  718. package/tooltip/ArrowBoundingShape.ts +8 -0
  719. package/tooltip/TooltipStyledTransition.tsx +30 -0
  720. package/tooltip/TriangleArrow.tsx +12 -0
  721. package/tooltip/TriangleArrowVertical.tsx +12 -0
  722. package/tooltip/__test__/tooltip.test.js +320 -0
  723. package/tooltip/_story/ArrowPointAtCenter/index.jsx +137 -0
  724. package/tooltip/_story/ContainerPosition/index.jsx +15 -0
  725. package/tooltip/_story/ContainerPosition/index.scss +10 -0
  726. package/tooltip/_story/CustomContainer/index.jsx +39 -0
  727. package/tooltip/_story/DangerousHtml/index.js +30 -0
  728. package/tooltip/_story/Edge/index.js +16 -0
  729. package/tooltip/_story/InTable/index.jsx +86 -0
  730. package/tooltip/_story/Safari/autoAdjust.js +23 -0
  731. package/tooltip/_story/ScrollDemo/index.js +65 -0
  732. package/tooltip/_story/story.scss +50 -0
  733. package/tooltip/_story/tooltip.stories.js +690 -0
  734. package/tooltip/_story/tooltip.stories.tsx +54 -0
  735. package/tooltip/index.tsx +646 -0
  736. package/transfer/__test__/transfer.test.js +324 -0
  737. package/transfer/_story/transfer.scss +124 -0
  738. package/transfer/_story/transfer.stories.js +758 -0
  739. package/transfer/_story/transfer.stories.tsx +80 -0
  740. package/transfer/index.tsx +652 -0
  741. package/tree/__test__/autosizer.test.js +102 -0
  742. package/tree/__test__/tree.test.js +842 -0
  743. package/tree/__test__/treeMultiple.test.js +593 -0
  744. package/tree/__test__/treeNodeProps.test.js +192 -0
  745. package/tree/_story/BigData.jsx +58 -0
  746. package/tree/_story/Demo.tsx +72 -0
  747. package/tree/_story/bigDataGen.jsx +98 -0
  748. package/tree/_story/data.js +3 -0
  749. package/tree/_story/tree.stories.js +2172 -0
  750. package/tree/_story/tree.stories.tsx +7 -0
  751. package/tree/autoSizer.tsx +86 -0
  752. package/tree/collapse.tsx +144 -0
  753. package/tree/index.tsx +754 -0
  754. package/tree/interface.ts +141 -0
  755. package/tree/nodeList.tsx +87 -0
  756. package/tree/treeContext.tsx +49 -0
  757. package/tree/treeNode.tsx +399 -0
  758. package/tree/treeUtil.tsx +14 -0
  759. package/treeSelect/__test__/treeMultiple.test.js +676 -0
  760. package/treeSelect/__test__/treeSelect.test.js +783 -0
  761. package/treeSelect/_story/CustomTrigger/index.jsx +47 -0
  762. package/treeSelect/_story/Demo.tsx +83 -0
  763. package/treeSelect/_story/treeSelect.stories.js +1155 -0
  764. package/treeSelect/_story/treeSelect.stories.tsx +7 -0
  765. package/treeSelect/index.tsx +1289 -0
  766. package/trigger/__test__/trigger.test.js +17 -0
  767. package/trigger/index.tsx +45 -0
  768. package/tsconfig.json +33 -0
  769. package/typography/__test__/typography.test.js +74 -0
  770. package/typography/_story/typography.stories.js +629 -0
  771. package/typography/_story/typography.stories.tsx +175 -0
  772. package/typography/base.tsx +628 -0
  773. package/typography/copyable.tsx +135 -0
  774. package/typography/index.tsx +24 -0
  775. package/typography/interface.ts +27 -0
  776. package/typography/paragraph.tsx +77 -0
  777. package/typography/text.tsx +68 -0
  778. package/typography/title.tsx +74 -0
  779. package/typography/typography.tsx +41 -0
  780. package/typography/util.tsx +141 -0
  781. package/upload/__test__/dragUpload.test.js +122 -0
  782. package/upload/__test__/upload.test.js +896 -0
  783. package/upload/_story/upload.stories.js +943 -0
  784. package/upload/_story/upload.stories.tsx +13 -0
  785. package/upload/fileCard.tsx +270 -0
  786. package/upload/index.tsx +545 -0
  787. package/upload/interface.ts +59 -0
  788. package/webpack.config.js +86 -0
@@ -0,0 +1,2172 @@
1
+ import React, { useRef, useState } from 'react';
2
+ import Tree from '../index';
3
+ import AutoSizer from '../autoSizer';
4
+ import { Button, ButtonGroup, Input, Popover, Toast } from '../../index';
5
+ import BigTree from './BigData';
6
+ import testData from './data';
7
+ import { cloneDeep, difference, isEqual } from 'lodash';
8
+ import { IconEdit, IconMapPin, IconMore } from '@douyinfe/semi-icons';
9
+
10
+ const TreeNode = Tree.TreeNode;
11
+
12
+ export default {
13
+ title: 'Tree'
14
+ }
15
+
16
+ const treeChildren = [
17
+ {
18
+ label: '北京',
19
+ value: 'beijing',
20
+ key: 'beijing',
21
+ },
22
+ {
23
+ label: '上海',
24
+ value: 'shanghai',
25
+ key: 'shanghai',
26
+ },
27
+ ];
28
+
29
+ const treeData1 = [
30
+ {
31
+ label: '亚洲',
32
+ value: 'yazhou',
33
+ key: 'yazhou',
34
+ children: [
35
+ {
36
+ label: '中国',
37
+ value: 'zhongguo',
38
+ key: 'zhongguo',
39
+ disabled: true,
40
+ children: treeChildren,
41
+ },
42
+ {
43
+ label: '日本',
44
+ value: 'riben',
45
+ key: 'riben',
46
+ children: [
47
+ {
48
+ label: '东京',
49
+ value: 'dongjing',
50
+ key: 'dongjing',
51
+ },
52
+ {
53
+ label: '大阪',
54
+ value: 'daban',
55
+ key: 'daban',
56
+ },
57
+ ],
58
+ },
59
+ ],
60
+ },
61
+ {
62
+ label: '北美洲',
63
+ value: 'beimeizhou',
64
+ key: 'beimeizhou',
65
+ children: [
66
+ {
67
+ label: '美国',
68
+ value: 'meiguo',
69
+ key: 'meiguo',
70
+ },
71
+ {
72
+ label: '加拿大',
73
+ value: 'jianada',
74
+ key: 'jianada',
75
+ },
76
+ ],
77
+ },
78
+ ];
79
+
80
+ const treeDataWithoutValue = [
81
+ {
82
+ label: '亚洲',
83
+ key: 'yazhou',
84
+ children: [
85
+ {
86
+ label: '中国',
87
+ key: 'zhongguo',
88
+ disabled: true,
89
+ children: treeChildren,
90
+ },
91
+ {
92
+ label: '日本',
93
+ key: 'riben',
94
+ children: [
95
+ {
96
+ label: '东京',
97
+ key: 'dongjing',
98
+ },
99
+ {
100
+ label: '大阪',
101
+ key: 'daban',
102
+ },
103
+ ],
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ label: '北美洲',
109
+ key: 'beimeizhou',
110
+ children: [
111
+ {
112
+ label: '美国',
113
+ key: 'meiguo',
114
+ },
115
+ {
116
+ label: '加拿大',
117
+ key: 'jianada',
118
+ },
119
+ ],
120
+ },
121
+ ];
122
+
123
+ const treeDataWithIcon = [
124
+ {
125
+ label: 'Asia',
126
+ value: 'Asia',
127
+ key: '0',
128
+ icon: <IconMapPin style={{ color: 'var(--semi-color-text-2)' }} />,
129
+ children: [
130
+ {
131
+ label: 'China',
132
+ value: 'China',
133
+ key: '0-0',
134
+ icon: <IconMapPin style={{ color: 'var(--semi-color-text-2)' }} />,
135
+ },
136
+ {
137
+ label: 'Japan',
138
+ value: 'Japan',
139
+ key: '0-1',
140
+ icon: <IconMapPin style={{ color: 'var(--semi-color-text-2)' }} />,
141
+ },
142
+ ],
143
+ },
144
+ ];
145
+
146
+ let opts = {
147
+ content: 'Hi, Bytedance dance dance',
148
+ duration: 3,
149
+ };
150
+
151
+ const treeDataWithNode = [
152
+ {
153
+ label: (
154
+ <span>
155
+ <span style={{ marginRight: 30 }}>亚洲</span>
156
+ <Button
157
+ style={{ zIndex: 2 }}
158
+ onClick={e => {
159
+ Toast.info(opts);
160
+ e.stopPropagation();
161
+ }}
162
+ >
163
+ Display Toast
164
+ </Button>
165
+ </span>
166
+ ),
167
+ value: 'yazhou',
168
+ key: 'yazhou',
169
+ children: [
170
+ {
171
+ label: '中国',
172
+ value: 'zhongguo',
173
+ key: 'zhongguo',
174
+ children: [
175
+ {
176
+ label: '北京',
177
+ value: 'beijing',
178
+ key: 'beijing',
179
+ },
180
+ {
181
+ label: '上海',
182
+ value: 'shanghai',
183
+ key: 'shanghai',
184
+ },
185
+ ],
186
+ },
187
+ {
188
+ label: '日本',
189
+ value: 'riben',
190
+ key: 'riben',
191
+ },
192
+ ],
193
+ },
194
+ {
195
+ label: '北美洲',
196
+ value: 'beimeizhou',
197
+ key: 'beimeizhou',
198
+ children: [
199
+ {
200
+ label: '美国',
201
+ value: 'meiguo',
202
+ key: 'meiguo',
203
+ },
204
+ {
205
+ label: '加拿大',
206
+ value: 'jianada',
207
+ key: 'jianada',
208
+ },
209
+ ],
210
+ },
211
+ ];
212
+
213
+ const treeJson = {
214
+ Node1: {
215
+ Child1: '0-0-1',
216
+ Child2: '0-0-2',
217
+ },
218
+ Node2: '0-1',
219
+ };
220
+
221
+ const benchmarkSet = size => {
222
+ console.time('benchmarkSet');
223
+ var set = new Set();
224
+ for (var i = 0; i < size; i++) set.add(i);
225
+ for (var i = 0; i < size; i++) set.has(i);
226
+ console.timeEnd('benchmarkSet');
227
+ };
228
+
229
+ const benchmarkArr = size => {
230
+ console.time('benchmarkArr');
231
+ var arr = [];
232
+ for (var i = 0; i < size; i++) arr.push(i);
233
+ for (var i = 0; i < size; i++) arr.indexOf(i);
234
+ console.timeEnd('benchmarkArr');
235
+ };
236
+
237
+ export const BenchMark = () => {
238
+ const size = 100000;
239
+ benchmarkSet(size);
240
+ benchmarkArr(size);
241
+ return <div>check console please</div>;
242
+ };
243
+
244
+ BenchMark.story = {
245
+ name: 'bench mark',
246
+ };
247
+
248
+ export const SimpleTree = () => (
249
+ <Tree
250
+ treeData={treeData1}
251
+ // onExpand={(e, { expanded, node }) => console.log('expand', e, expanded, node)}
252
+ // onSelect={(e, bool, node) => console.log('select', e, bool, node)}
253
+ // onChange={e => console.log('change', e)}
254
+ onContextMenu={(e, node) => console.log(e.currentTarget, node)}
255
+ onDoubleClick={(e, node) => console.log(e, node)}
256
+ motion={true}
257
+ />
258
+ );
259
+
260
+ SimpleTree.story = {
261
+ name: 'simple tree',
262
+ };
263
+
264
+ export const MultipleTree = () => (
265
+ <Tree
266
+ treeData={treeData1}
267
+ multiple
268
+ labelInValue
269
+ // onExpand={(e, { expanded, node }) => console.log('expand', e, expanded, node)}
270
+ // onSelect={(e, bool) => console.log('select', e, bool)}
271
+ onContextMenu={(e, node) => console.log(e, node)}
272
+ onDoubleClick={(e, node) => console.log(e, node)}
273
+ onChange={e => console.log('change', e)}
274
+ />
275
+ );
276
+
277
+ MultipleTree.story = {
278
+ name: 'multiple tree',
279
+ };
280
+
281
+ export const SearchableTree = () => (
282
+ <Tree
283
+ treeData={treeData1}
284
+ filterTreeNode
285
+ treeNodeFilterProp="value"
286
+ multiple
287
+ searchStyle={{ width: '300px' }}
288
+ />
289
+ );
290
+
291
+ SearchableTree.story = {
292
+ name: 'searchable tree',
293
+ };
294
+
295
+ export const DisabledTree = () => (
296
+ <Tree treeData={treeData1} defaultValue={['dongjing', 'daban']} multiple disabled />
297
+ );
298
+
299
+ DisabledTree.story = {
300
+ name: 'disabled tree',
301
+ };
302
+
303
+ export const DefaultTree = () => (
304
+ <div>
305
+ <Tree treeData={treeData1} defaultValue={['zhongguo']} />
306
+ <br />
307
+ <Tree
308
+ treeData={treeData1}
309
+ multiple
310
+ defaultValue={['shanghai', 'dongjing', 'beijing', 'daban']}
311
+ onChange={e => console.log(e)}
312
+ onSelect={e => console.log(e)}
313
+ />
314
+ </div>
315
+ );
316
+
317
+ DefaultTree.story = {
318
+ name: 'default tree',
319
+ };
320
+
321
+ export const ExpandAction = () => (
322
+ <div>
323
+ <Tree treeData={treeData1} defaultValue={['zhongguo']} />
324
+ <br />
325
+ <Tree
326
+ treeData={treeData1}
327
+ //multiple
328
+ defaultValue={['shanghai', 'dongjing', 'beijing', 'daban']}
329
+ expandAction="click"
330
+ onDoubleClick={e => console.log(e.detail)}
331
+ />
332
+ <br />
333
+ <Tree
334
+ treeData={treeData1}
335
+ multiple
336
+ defaultValue={['shanghai', 'dongjing', 'beijing', 'daban']}
337
+ expandAction="doubleClick"
338
+ />
339
+ </div>
340
+ );
341
+
342
+ ExpandAction.story = {
343
+ name: 'expandAction',
344
+ };
345
+
346
+ class Demo extends React.Component {
347
+ constructor() {
348
+ super();
349
+ this.state = {
350
+ value: 'shanghai',
351
+ };
352
+ }
353
+
354
+ onChange(value) {
355
+ this.setState({ value });
356
+ }
357
+
358
+ render() {
359
+ return (
360
+ <Tree
361
+ style={{ width: 300 }}
362
+ dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
363
+ treeData={treeData1}
364
+ value={this.state.value}
365
+ placeholder="Please select"
366
+ onChange={e => this.onChange(e)}
367
+ />
368
+ );
369
+ }
370
+ }
371
+
372
+ export const ControlledComponentSingle = () => <Demo />;
373
+
374
+ ControlledComponentSingle.story = {
375
+ name: 'controlled Component single',
376
+ };
377
+
378
+ class Demo2 extends React.Component {
379
+ constructor() {
380
+ super();
381
+ this.state = {
382
+ value: ['shanghai', 'beijing', 'zhongguo'],
383
+ };
384
+ }
385
+
386
+ onChange(value) {
387
+ console.log(value);
388
+ this.setState({ value });
389
+ }
390
+
391
+ render() {
392
+ console.log(this.state.value);
393
+ return (
394
+ <Tree
395
+ style={{ width: 300 }}
396
+ multiple
397
+ dropdownStyle={{ maxHeight: 200, overflow: 'auto' }}
398
+ treeData={treeData1}
399
+ value={this.state.value}
400
+ placeholder="Please select"
401
+ onChange={e => this.onChange(e)}
402
+ />
403
+ );
404
+ }
405
+ }
406
+
407
+ export const ControlledComponentMultiple = () => <Demo2 />;
408
+
409
+ ControlledComponentMultiple.story = {
410
+ name: 'controlled Component multiple',
411
+ };
412
+
413
+ export const JsonTree = () => (
414
+ <div>
415
+ <Tree
416
+ treeDataSimpleJson={treeJson}
417
+ onChange={e => console.log('change', e)}
418
+ onSelect={e => console.log('select', e)}
419
+ />
420
+ <br />
421
+ <Tree
422
+ treeDataSimpleJson={treeJson}
423
+ multiple
424
+ onChange={e => console.log(e)}
425
+ onSelect={e => console.log(e)}
426
+ />
427
+ </div>
428
+ );
429
+
430
+ JsonTree.story = {
431
+ name: 'json tree',
432
+ };
433
+
434
+ export const IconTree = () => (
435
+ <div>
436
+ <Tree treeData={treeDataWithIcon} />
437
+ <br />
438
+ <Tree treeData={treeDataWithIcon} multiple blockNode />
439
+ </div>
440
+ );
441
+
442
+ IconTree.story = {
443
+ name: 'icon tree',
444
+ };
445
+
446
+ export const DirectoryTree = () => <Tree treeData={treeData1} directory multiple blockNode />;
447
+
448
+ DirectoryTree.story = {
449
+ name: 'directory tree',
450
+ };
451
+
452
+ const button = (
453
+ <ButtonGroup size="small" theme="borderless">
454
+ <Button
455
+ onClick={e => {
456
+ Toast.info(opts);
457
+ e.stopPropagation();
458
+ }}
459
+ >
460
+ 提示
461
+ </Button>
462
+ <Button>点击</Button>
463
+ </ButtonGroup>
464
+ );
465
+
466
+ const style = {
467
+ display: 'flex',
468
+ justifyContent: 'space-between',
469
+ alignItems: 'center',
470
+ };
471
+
472
+ const treeDataWithNode2 = [
473
+ {
474
+ label: (
475
+ <div style={style}>
476
+ <span>亚洲</span>
477
+ <ButtonGroup size="small" theme="borderless">
478
+ {button}
479
+ </ButtonGroup>
480
+ </div>
481
+ ),
482
+ value: 'yazhou',
483
+ key: 'yazhou',
484
+ children: [
485
+ {
486
+ label: (
487
+ <div style={style}>
488
+ <span>中国</span>
489
+ {button}
490
+ </div>
491
+ ),
492
+ value: 'zhongguo',
493
+ key: 'zhongguo',
494
+ children: [
495
+ {
496
+ label: (
497
+ <div style={style}>
498
+ <span>test</span>
499
+ {button}
500
+ </div>
501
+ ),
502
+ value: 'test',
503
+ key: 'test',
504
+ },
505
+ ],
506
+ },
507
+ {
508
+ label: (
509
+ <div style={style}>
510
+ <span>日本</span>
511
+ {button}
512
+ </div>
513
+ ),
514
+ value: 'riben',
515
+ key: 'riben',
516
+ },
517
+ ],
518
+ },
519
+ ];
520
+
521
+ export const TreeLabelUsingNode = () => (
522
+ <div>
523
+ <Tree treeData={treeDataWithNode2} blockNode defaultExpandAll />
524
+ </div>
525
+ );
526
+
527
+ TreeLabelUsingNode.story = {
528
+ name: 'tree label using node',
529
+ };
530
+
531
+ const treeDataTest = [
532
+ {
533
+ value: '一级标签1',
534
+ label: '一级标签1',
535
+ id: 1,
536
+ key: '1',
537
+ },
538
+ ];
539
+
540
+ class TagSideSheet2 extends React.Component {
541
+ constructor() {
542
+ super();
543
+ this.state = {
544
+ tagList: [],
545
+ visibles: false,
546
+ };
547
+ this.onVisible = this.onVisible.bind(this);
548
+ this.renderLabel = this.renderLabel.bind(this);
549
+ this.transLabel = this.transLabel.bind(this);
550
+ }
551
+
552
+ componentDidMount() {
553
+ let tagList = [...treeDataTest];
554
+ this.setState({
555
+ tagList,
556
+ });
557
+ }
558
+
559
+ onVisible(visibles) {
560
+ this.setState({
561
+ visibles,
562
+ });
563
+ }
564
+
565
+ renderLabel(item) {
566
+ const { visibles } = this.state;
567
+ console.log('rendering label', visibles);
568
+ return (
569
+ <Popover trigger="custom" position="bottomLeft" visible={visibles} content={'测试popover'}>
570
+ <Button
571
+ icon={<IconEdit />}
572
+ onClick={e => {
573
+ e.stopPropagation();
574
+ this.onVisible(!visibles);
575
+ }}
576
+ >
577
+ {item.label}
578
+ </Button>
579
+ </Popover>
580
+ );
581
+ }
582
+
583
+ transLabel(list) {
584
+ // list = cloneDeep(list);
585
+ list.forEach(item => {
586
+ item.label = this.renderLabel(item);
587
+ // item.key += Math.random().toString().slice(0, 5);
588
+ });
589
+ return list;
590
+ }
591
+
592
+ render() {
593
+ const { tagList = [] } = this.state;
594
+ const transformedTags = this.transLabel(cloneDeep(tagList));
595
+ console.log('transformedTags', transformedTags, treeDataTest);
596
+ return <Tree treeData={transformedTags} />;
597
+ }
598
+ }
599
+
600
+ export const TreeLabelUsingPopover = () => <TagSideSheet2 />;
601
+
602
+ TreeLabelUsingPopover.story = {
603
+ name: 'tree label using popover',
604
+ };
605
+
606
+ export const DefaultExpandKeysTree = () => (
607
+ <>
608
+ <Tree treeData={treeData1} defaultExpandedKeys={['zhongguo', 'beimeizhou']} blockNode />
609
+ <Tree treeData={treeData1} defaultExpandAll blockNode />
610
+ <Tree treeData={treeData1} defaultExpandAll multiple blockNode />
611
+ </>
612
+ );
613
+
614
+ DefaultExpandKeysTree.story = {
615
+ name: 'defaultExpandKeys tree',
616
+ };
617
+
618
+ export const LabelInValueTree = () => (
619
+ <>
620
+ <Tree treeData={treeData1} labelInValue onChange={e => console.log(e)} />
621
+ <Tree treeData={treeData1} labelInValue onChange={e => console.log(e)} multiple />
622
+ <Tree treeData={treeDataWithIcon} labelInValue onChange={e => console.log(e)} multiple />
623
+ </>
624
+ );
625
+
626
+ LabelInValueTree.story = {
627
+ name: 'labelInValue tree',
628
+ };
629
+
630
+ class Test extends React.Component {
631
+ constructor() {
632
+ super();
633
+ this.state = {
634
+ loading: false,
635
+ };
636
+ }
637
+
638
+ componentDidMount() {
639
+ setTimeout(() => {
640
+ console.log('set loading');
641
+ this.setState({ loading: true });
642
+ }, 5000);
643
+ }
644
+
645
+ render() {
646
+ const treeDataWithNode2 = [
647
+ {
648
+ label: (
649
+ <div style={style}>
650
+ <span>亚洲</span>
651
+ <ButtonGroup size="small" theme="borderless">
652
+ {button}
653
+ </ButtonGroup>
654
+ </div>
655
+ ),
656
+ value: 'yazhou',
657
+ key: 'yazhou',
658
+ children: [
659
+ {
660
+ label: (
661
+ <div style={style}>
662
+ <span>中国</span>
663
+ {button}
664
+ </div>
665
+ ),
666
+ value: 'zhongguo',
667
+ key: 'zhongguo',
668
+ children: [
669
+ {
670
+ label: (
671
+ <div style={style}>
672
+ <span>test</span>
673
+ {button}
674
+ </div>
675
+ ),
676
+ value: 'test',
677
+ key: 'test',
678
+ },
679
+ ],
680
+ },
681
+ {
682
+ label: (
683
+ <div style={style}>
684
+ <span>日本</span>
685
+ {button}
686
+ </div>
687
+ ),
688
+ value: 'riben',
689
+ key: 'riben',
690
+ },
691
+ ],
692
+ },
693
+ ];
694
+ return <Tree treeData={treeDataWithNode2} />;
695
+ }
696
+ }
697
+
698
+ export const SetStateAfter5S = () => <Test />;
699
+
700
+ SetStateAfter5S.story = {
701
+ name: 'setState after 5s',
702
+ };
703
+
704
+ class DemoExpandedKeys extends React.Component {
705
+ constructor() {
706
+ super();
707
+ this.state = {
708
+ expand: ['zhongguo', 'beimeizhou'],
709
+ };
710
+ }
711
+
712
+ onExpand(expand) {
713
+ console.log(expand);
714
+ this.setState({ expand });
715
+ }
716
+
717
+ render() {
718
+ return (
719
+ <Tree
720
+ style={{ width: 300 }}
721
+ dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
722
+ treeData={treeData1}
723
+ expandedKeys={this.state.expand}
724
+ placeholder="Please select"
725
+ onExpand={(e, rest) => this.onExpand(e, rest)}
726
+ />
727
+ );
728
+ }
729
+ }
730
+
731
+ class DemoExpandeKeysMulti extends React.Component {
732
+ constructor() {
733
+ super();
734
+ this.state = {
735
+ expand: ['zhongguo'],
736
+ };
737
+ }
738
+
739
+ onExpand(expand) {
740
+ console.log(expand);
741
+ this.setState({ expand });
742
+ }
743
+
744
+ render() {
745
+ return (
746
+ <Tree
747
+ style={{ width: 300 }}
748
+ multiple
749
+ dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
750
+ treeData={treeData1}
751
+ expandedKeys={this.state.expand}
752
+ placeholder="Please select"
753
+ onExpand={e => this.onExpand(e)}
754
+ />
755
+ );
756
+ }
757
+ }
758
+
759
+ export const ExpandedKeys = () => (
760
+ <>
761
+ <DemoExpandedKeys />
762
+ <br />
763
+ <DemoExpandeKeysMulti />
764
+ </>
765
+ );
766
+
767
+ ExpandedKeys.story = {
768
+ name: 'expandedKeys',
769
+ };
770
+
771
+ class DmExpandedKeys extends React.Component {
772
+ constructor() {
773
+ super();
774
+ this.state = {
775
+ treeData: [
776
+ {
777
+ key: '0',
778
+ label: 'item-0',
779
+ value: '0',
780
+ },
781
+ ],
782
+ };
783
+ this.add = this.add.bind(this);
784
+ }
785
+
786
+ add() {
787
+ let itemLength = Math.floor(Math.random() * 5) + 1;
788
+ let treeData = new Array(itemLength).fill(0).map((v, i) => {
789
+ let length = Math.floor(Math.random() * 3);
790
+ let children = new Array(length).fill(0).map((cv, ci) => {
791
+ let child = {
792
+ key: `${i}-${ci}`,
793
+ label: `Leaf-${i}-${ci}`,
794
+ value: `${i}-${ci}`,
795
+ };
796
+ return child;
797
+ });
798
+ let item = {
799
+ key: `${i}`,
800
+ label: `Item-${i}`,
801
+ value: `${i}`,
802
+ children,
803
+ };
804
+ return item;
805
+ });
806
+ this.setState({ treeData });
807
+ }
808
+
809
+ render() {
810
+ const { treeData } = this.state;
811
+ return (
812
+ <>
813
+ <Tree treeData={this.state.treeData} expandedKeys={['0', '1']} />
814
+ <br />
815
+ <Button onClick={this.add}>动态改变数据</Button>
816
+ </>
817
+ );
818
+ }
819
+ }
820
+
821
+ export const DynamicExpandKeys = () => (
822
+ <>
823
+ <DmExpandedKeys />
824
+ </>
825
+ );
826
+
827
+ DynamicExpandKeys.story = {
828
+ name: 'dynamic expandKeys',
829
+ };
830
+
831
+ class DmSelectedKeys extends React.Component {
832
+ constructor() {
833
+ super();
834
+ this.state = {
835
+ treeData: [
836
+ {
837
+ key: '0',
838
+ label: 'item-0',
839
+ value: '0',
840
+ },
841
+ ],
842
+ };
843
+ this.add = this.add.bind(this);
844
+ }
845
+
846
+ add() {
847
+ let itemLength = Math.floor(Math.random() * 5) + 1;
848
+ let treeData = new Array(itemLength).fill(0).map((v, i) => {
849
+ let length = Math.floor(Math.random() * 3);
850
+ let children = new Array(length).fill(0).map((cv, ci) => {
851
+ let child = {
852
+ key: `${i}-${ci}`,
853
+ label: `Leaf-${i}-${ci}`,
854
+ value: `${i}-${ci}`,
855
+ };
856
+ return child;
857
+ });
858
+ let item = {
859
+ key: `${i}`,
860
+ label: `Item-${i}`,
861
+ value: `${i}`,
862
+ children,
863
+ };
864
+ return item;
865
+ });
866
+ this.setState({ treeData });
867
+ }
868
+
869
+ render() {
870
+ const { treeData } = this.state;
871
+ return (
872
+ <>
873
+ <Tree treeData={treeData} value={['0-0']} onChange={e => console.log(e)} />
874
+ <br />
875
+ <Button onClick={this.add}>动态改变数据</Button>
876
+ </>
877
+ );
878
+ }
879
+ }
880
+
881
+ export const DynamicSelectedKey = () => (
882
+ <>
883
+ <DmSelectedKeys />
884
+ </>
885
+ );
886
+
887
+ DynamicSelectedKey.story = {
888
+ name: 'dynamic selectedKey',
889
+ };
890
+
891
+ export const LargeAmountOfData = () => (
892
+ <>
893
+ <BigTree />
894
+ </>
895
+ );
896
+
897
+ LargeAmountOfData.story = {
898
+ name: 'large amount of data',
899
+ };
900
+
901
+ export const Autosizer = () => (
902
+ <div
903
+ style={{
904
+ boxSizing: 'border-box',
905
+ height: 400,
906
+ width: 200,
907
+ }}
908
+ >
909
+ <div
910
+ style={{
911
+ boxSizing: 'border-box',
912
+ height: '50%',
913
+ width: 200,
914
+ }}
915
+ >
916
+ <AutoSizer
917
+ // defaultHeight={defaultHeight}
918
+ // defaultWidth={defaultWidth}
919
+ >
920
+ {({ height, width }) => (
921
+ <div
922
+ style={{
923
+ width: width,
924
+ height: height,
925
+ }}
926
+ >
927
+ {`width:${width}, height:${height}`}
928
+ </div>
929
+ )}
930
+ </AutoSizer>
931
+ </div>
932
+ </div>
933
+ );
934
+
935
+ Autosizer.story = {
936
+ name: 'autosizer',
937
+ };
938
+
939
+ const MotionCustomLabelDemo = () => {
940
+ const treeData = [
941
+ {
942
+ label: '亚洲',
943
+ value: 'Asia',
944
+ key: '0',
945
+ children: [
946
+ {
947
+ label: '中国',
948
+ value: 'China',
949
+ key: '0-0',
950
+ children: [
951
+ {
952
+ label: '北京',
953
+ value: 'Beijing',
954
+ key: '0-0-0',
955
+ },
956
+ {
957
+ label: '上海',
958
+ value: 'Shanghai',
959
+ key: '0-0-1',
960
+ },
961
+ ],
962
+ },
963
+ ],
964
+ },
965
+ {
966
+ label: '北美洲',
967
+ value: 'North America',
968
+ key: '1',
969
+ },
970
+ ];
971
+
972
+ const [hoverKey, setHoverKey] = useState();
973
+ const cusLabel = (list = []) => {
974
+ const recusive = (list = []) => {
975
+ if (!list.length) {
976
+ return;
977
+ }
978
+ list.forEach(item => {
979
+ const { type, label, key } = item;
980
+ item.label = (
981
+ <div onMouseEnter={() => setHoverKey(key)}>
982
+ {label}
983
+ {hoverKey === key ? <IconMore /> : null}
984
+ </div>
985
+ );
986
+ recusive(item.children);
987
+ });
988
+ };
989
+ recusive(list);
990
+ return list;
991
+ };
992
+ return <Tree treeData={cusLabel(treeData)} defaultExpandAll />;
993
+ };
994
+
995
+ export const MotionCustomLabel = () => <MotionCustomLabelDemo />;
996
+
997
+ MotionCustomLabel.story = {
998
+ name: 'motion custom label',
999
+ };
1000
+
1001
+ const AutoParentDemo = () => {
1002
+ const [expandedKeys, setExpandedKeys] = useState(['beimeizhou']);
1003
+ const [selectedKeys, setSelectedKeys] = useState(['beimeizhou']);
1004
+ const [autoExpandParent, setAutoExpandParent] = useState(true);
1005
+
1006
+ const onExpand = expandedKeys => {
1007
+ console.log('onExpand', expandedKeys);
1008
+ // if not set autoExpandParent to false, if children expanded, parent can not collapse.
1009
+ // or, you can remove all expanded children keys.
1010
+ setExpandedKeys(expandedKeys);
1011
+ setAutoExpandParent(false);
1012
+ };
1013
+
1014
+ const onSelect = (selectedKeys, info) => {
1015
+ console.log('onSelect:', info);
1016
+ setSelectedKeys(selectedKeys);
1017
+ };
1018
+
1019
+ return (
1020
+ <div>
1021
+ <Button
1022
+ onClick={() => {
1023
+ setSelectedKeys(['riben']);
1024
+ setExpandedKeys(['riben']);
1025
+ setAutoExpandParent(true);
1026
+ }}
1027
+ >
1028
+ Update
1029
+ </Button>
1030
+ <Tree
1031
+ onExpand={onExpand}
1032
+ expandedKeys={expandedKeys}
1033
+ autoExpandParent={autoExpandParent}
1034
+ onChange={onSelect}
1035
+ value={selectedKeys}
1036
+ treeData={treeData1}
1037
+ multiple
1038
+ />
1039
+ </div>
1040
+ );
1041
+ };
1042
+
1043
+ export const AutoExpandParent = () => (
1044
+ <>
1045
+ <AutoParentDemo />
1046
+ </>
1047
+ );
1048
+
1049
+ AutoExpandParent.story = {
1050
+ name: 'autoExpandParent',
1051
+ };
1052
+
1053
+ const findDescendantKeys = node => {
1054
+ let res = [node.key];
1055
+ const findChild = item => {
1056
+ if (!item) return;
1057
+ const { children } = item;
1058
+
1059
+ if (children && children.length) {
1060
+ children.forEach(child => {
1061
+ res.push(child.key);
1062
+ findChild(child);
1063
+ });
1064
+ }
1065
+ };
1066
+ findChild(node);
1067
+ return res;
1068
+ };
1069
+
1070
+ class DyTreeWithExpandControlled extends React.Component {
1071
+ constructor() {
1072
+ super();
1073
+ this.state = {
1074
+ treeData: [
1075
+ {
1076
+ key: '0',
1077
+ label: 'item-0',
1078
+ value: '0',
1079
+ },
1080
+ ],
1081
+ expandedKeys: [],
1082
+ autoExpandParent: false,
1083
+ inputValue: '',
1084
+ collapsedKeys: new Set([]),
1085
+ };
1086
+ }
1087
+
1088
+ componentDidUpdate(prevProps, prevState) {
1089
+ if (
1090
+ !isEqual(prevState.treeData, this.state.treeData) ||
1091
+ !isEqual(prevState.inputValue, this.state.inputValue)
1092
+ ) {
1093
+ const { treeData, inputValue, collapsedKeys } = this.state;
1094
+ let filteredKeys = [];
1095
+
1096
+ const findFilteredKey = arr => {
1097
+ arr.forEach(item => {
1098
+ if (item.label.indexOf(inputValue) > -1) {
1099
+ filteredKeys.push(item.key);
1100
+ }
1101
+ if (item.children) {
1102
+ findFilteredKey(item.children);
1103
+ }
1104
+ });
1105
+ };
1106
+ findFilteredKey(treeData);
1107
+ const expanded = difference(filteredKeys, [...collapsedKeys]);
1108
+ this.setState({
1109
+ expandedKeys: expanded,
1110
+ autoExpandParent: true,
1111
+ });
1112
+ }
1113
+ }
1114
+
1115
+ add = () => {
1116
+ let itemLength = Math.floor(Math.random() * 5) + 1;
1117
+ let treeData = new Array(itemLength).fill(0).map((v, i) => {
1118
+ let length = Math.floor(Math.random() * 3) + 1;
1119
+ let children = new Array(length).fill(0).map((cv, ci) => {
1120
+ let child = {
1121
+ key: `${i}-${ci}`,
1122
+ label: `Leaf-${i}-${ci}`,
1123
+ value: `${i}-${ci}`,
1124
+ };
1125
+ return child;
1126
+ });
1127
+ let item = {
1128
+ key: `${i}`,
1129
+ label: `Item-${i}`,
1130
+ value: `${i}`,
1131
+ children,
1132
+ };
1133
+ return item;
1134
+ });
1135
+ this.setState({ treeData });
1136
+ };
1137
+
1138
+ search = val => {
1139
+ this.setState({ inputValue: val });
1140
+ };
1141
+
1142
+ onExpand = (keys, { expanded, node }) => {
1143
+ let collapsed = this.state.collapsedKeys;
1144
+ let desKeys = findDescendantKeys(node);
1145
+ if (!expanded) {
1146
+ desKeys.forEach(key => collapsed.add(key));
1147
+ } else {
1148
+ desKeys.forEach(key => collapsed.has(key) && collapsed.delete(key));
1149
+ }
1150
+ this.setState({
1151
+ expandedKeys: keys,
1152
+ autoExpandParent: false,
1153
+ collapsedKeys: collapsed,
1154
+ });
1155
+ };
1156
+
1157
+ render() {
1158
+ const { treeData, expandedKeys, autoExpandParent } = this.state;
1159
+ return (
1160
+ <div>
1161
+ <Tree
1162
+ treeData={treeData}
1163
+ filterTreeNode
1164
+ autoExpandParent={autoExpandParent}
1165
+ expandedKeys={expandedKeys}
1166
+ onSearch={this.search}
1167
+ onExpand={this.onExpand}
1168
+ />
1169
+ <br />
1170
+ <Button onClick={this.add} style={{ margin: 20 }}>
1171
+ 动态改变数据
1172
+ </Button>
1173
+ </div>
1174
+ );
1175
+ }
1176
+ }
1177
+
1178
+ export const DynamicTreeDataWithSearchValueAndControlledExpand = () => (
1179
+ <DyTreeWithExpandControlled />
1180
+ );
1181
+
1182
+ DynamicTreeDataWithSearchValueAndControlledExpand.story = {
1183
+ name: 'dynamic treeData with searchValue and controlled expand',
1184
+ };
1185
+
1186
+ const CusSearchRender = () => {
1187
+ const [inputValue, setInputValue] = useState('');
1188
+ const ref = useRef();
1189
+
1190
+ const setValue = value => {
1191
+ setInputValue(value);
1192
+ ref.current.search(value);
1193
+ };
1194
+
1195
+ return (
1196
+ <Tree
1197
+ ref={ref}
1198
+ treeData={treeData1}
1199
+ filterTreeNode
1200
+ showFilteredOnly
1201
+ searchRender={({ prefix, placeholder }) => (
1202
+ <Input
1203
+ prefix={prefix}
1204
+ placeholder={placeholder}
1205
+ value={inputValue}
1206
+ onChange={value => setValue(value)}
1207
+ />
1208
+ )}
1209
+ />
1210
+ );
1211
+ };
1212
+
1213
+ export const _CusSearchRender = () => (
1214
+ <>
1215
+ <CusSearchRender />
1216
+ </>
1217
+ );
1218
+
1219
+ _CusSearchRender.story = {
1220
+ name: 'CusSearchRender',
1221
+ };
1222
+
1223
+ const RefSearch = () => {
1224
+ const ref = useRef();
1225
+ const treeData = [
1226
+ {
1227
+ label: 'Asia',
1228
+ value: 'Asia',
1229
+ key: '0',
1230
+ children: [
1231
+ {
1232
+ label: 'China',
1233
+ value: 'China',
1234
+ key: '0-0',
1235
+ children: [
1236
+ {
1237
+ label: 'Beijing',
1238
+ value: 'Beijing',
1239
+ key: '0-0-0',
1240
+ },
1241
+ {
1242
+ label: 'Shanghai',
1243
+ value: 'Shanghai',
1244
+ key: '0-0-1',
1245
+ },
1246
+ ],
1247
+ },
1248
+ {
1249
+ label: 'Japan',
1250
+ value: 'Japan',
1251
+ key: '0-1',
1252
+ children: [
1253
+ {
1254
+ label: 'Osaka',
1255
+ value: 'Osaka',
1256
+ key: '0-1-0',
1257
+ },
1258
+ ],
1259
+ },
1260
+ ],
1261
+ },
1262
+ {
1263
+ label: 'North America',
1264
+ value: 'North America',
1265
+ key: '1',
1266
+ children: [
1267
+ {
1268
+ label: 'United States',
1269
+ value: 'United States',
1270
+ key: '1-0',
1271
+ },
1272
+ {
1273
+ label: 'Canada',
1274
+ value: 'Canada',
1275
+ key: '1-1',
1276
+ },
1277
+ ],
1278
+ },
1279
+ ];
1280
+ return (
1281
+ <div>
1282
+ <Input onChange={v => ref.current.search(v)} />
1283
+ <Tree
1284
+ treeData={treeData}
1285
+ defaultValue="Shanghai"
1286
+ blockNode={false}
1287
+ ref={ref}
1288
+ filterTreeNode
1289
+ searchRender={() => null}
1290
+ />
1291
+ </div>
1292
+ );
1293
+ };
1294
+
1295
+ export const _RefSearch = () => (
1296
+ <>
1297
+ <RefSearch />
1298
+ </>
1299
+ );
1300
+
1301
+ _RefSearch.story = {
1302
+ name: 'RefSearch',
1303
+ };
1304
+
1305
+ const initTreeDate = [
1306
+ {
1307
+ label: 'Expand to load',
1308
+ key: '0',
1309
+ },
1310
+ {
1311
+ label: 'Expand to load',
1312
+ key: '1',
1313
+ },
1314
+ {
1315
+ label: 'Tree Node',
1316
+ key: '2',
1317
+ isLeaf: true,
1318
+ },
1319
+ ];
1320
+
1321
+ function updateTreeData(list, key, children) {
1322
+ return list.map(node => {
1323
+ if (node.key === key) {
1324
+ return { ...node, children };
1325
+ }
1326
+ if (node.children) {
1327
+ return { ...node, children: updateTreeData(node.children, key, children) };
1328
+ }
1329
+
1330
+ return node;
1331
+ });
1332
+ }
1333
+
1334
+ const LoadingTreeDemo = () => {
1335
+ const [treeData, setTreeData] = useState(initTreeDate);
1336
+
1337
+ function onLoadData({ key, children }) {
1338
+ return new Promise(resolve => {
1339
+ if (children) {
1340
+ resolve();
1341
+ return;
1342
+ }
1343
+
1344
+ setTimeout(() => {
1345
+ setTreeData(origin =>
1346
+ updateTreeData(origin, key, [
1347
+ {
1348
+ label: 'Child Node',
1349
+ key: `${key}-0`,
1350
+ },
1351
+ {
1352
+ label: 'Child Node',
1353
+ key: `${key}-1`,
1354
+ },
1355
+ ])
1356
+ );
1357
+ resolve();
1358
+ }, 1000);
1359
+ });
1360
+ }
1361
+
1362
+ return <Tree loadData={onLoadData} treeData={cloneDeep(treeData)} />;
1363
+ };
1364
+
1365
+ export const Loading = () => (
1366
+ <>
1367
+ <LoadingTreeDemo />
1368
+ </>
1369
+ );
1370
+
1371
+ Loading.story = {
1372
+ name: 'loading',
1373
+ };
1374
+
1375
+ const LoadingWithSearch = () => {
1376
+ const [treeData, setTreeData] = useState(initTreeDate);
1377
+
1378
+ function onLoadData({ key, children }) {
1379
+ return new Promise(resolve => {
1380
+ if (children) {
1381
+ resolve();
1382
+ return;
1383
+ }
1384
+
1385
+ setTimeout(() => {
1386
+ setTreeData(origin =>
1387
+ updateTreeData(origin, key, [
1388
+ {
1389
+ label: 'Child Node',
1390
+ key: `${key}-0`,
1391
+ },
1392
+ {
1393
+ label: 'Child Node',
1394
+ key: `${key}-1`,
1395
+ },
1396
+ ])
1397
+ );
1398
+ resolve();
1399
+ }, 1000);
1400
+ });
1401
+ }
1402
+
1403
+ return <Tree loadData={onLoadData} treeData={cloneDeep(treeData)} filterTreeNode />;
1404
+ };
1405
+
1406
+ export const _LoadingWithSearch = () => (
1407
+ <>
1408
+ <LoadingWithSearch />
1409
+ </>
1410
+ );
1411
+
1412
+ _LoadingWithSearch.story = {
1413
+ name: 'Loading with search',
1414
+ };
1415
+
1416
+ const DisabledStrictly = () => {
1417
+ return (
1418
+ <>
1419
+ <span> disable shanghai(checked), China </span>
1420
+ <Tree
1421
+ treeData={[
1422
+ {
1423
+ label: 'Asia',
1424
+ value: 'Asia',
1425
+ key: '0',
1426
+ children: [
1427
+ {
1428
+ label: 'China',
1429
+ value: 'China',
1430
+ key: '0-0',
1431
+ disabled: true,
1432
+ children: [
1433
+ {
1434
+ label: 'Beijing',
1435
+ value: 'Beijing',
1436
+ key: '0-0-0',
1437
+ },
1438
+ {
1439
+ label: 'Shanghai',
1440
+ value: 'Shanghai',
1441
+ key: '0-0-1',
1442
+ disabled: true,
1443
+ },
1444
+ ],
1445
+ },
1446
+ {
1447
+ label: 'Japan',
1448
+ value: 'Japan',
1449
+ key: '0-1',
1450
+ children: [
1451
+ {
1452
+ label: 'Osaka',
1453
+ value: 'Osaka',
1454
+ key: '0-1-0',
1455
+ },
1456
+ ],
1457
+ },
1458
+ ],
1459
+ },
1460
+ ]}
1461
+ defaultValue="Shanghai"
1462
+ multiple
1463
+ defaultExpandAll
1464
+ disableStrictly
1465
+ />
1466
+ <br />
1467
+ <span> disable shanghai(checked), beijing(checked) </span>
1468
+ <Tree
1469
+ treeData={[
1470
+ {
1471
+ label: 'Asia',
1472
+ value: 'Asia',
1473
+ key: '0',
1474
+ children: [
1475
+ {
1476
+ label: 'China',
1477
+ value: 'China',
1478
+ key: '0-0',
1479
+ children: [
1480
+ {
1481
+ label: 'Beijing',
1482
+ value: 'Beijing',
1483
+ key: '0-0-0',
1484
+ disabled: true,
1485
+ },
1486
+ {
1487
+ label: 'Shanghai',
1488
+ value: 'Shanghai',
1489
+ key: '0-0-1',
1490
+ disabled: true,
1491
+ },
1492
+ ],
1493
+ },
1494
+ {
1495
+ label: 'Japan',
1496
+ value: 'Japan',
1497
+ key: '0-1',
1498
+ children: [
1499
+ {
1500
+ label: 'Osaka',
1501
+ value: 'Osaka',
1502
+ key: '0-1-0',
1503
+ },
1504
+ ],
1505
+ },
1506
+ ],
1507
+ },
1508
+ ]}
1509
+ defaultValue={['Shanghai', 'Beijing']}
1510
+ multiple
1511
+ defaultExpandAll
1512
+ disableStrictly
1513
+ />
1514
+ <span> disable shanghai(checked) </span>
1515
+ <Tree
1516
+ treeData={[
1517
+ {
1518
+ label: 'Asia',
1519
+ value: 'Asia',
1520
+ key: '0',
1521
+ children: [
1522
+ {
1523
+ label: 'China',
1524
+ value: 'China',
1525
+ key: '0-0',
1526
+ children: [
1527
+ {
1528
+ label: 'Beijing',
1529
+ value: 'Beijing',
1530
+ key: '0-0-0',
1531
+ },
1532
+ {
1533
+ label: 'Shanghai',
1534
+ value: 'Shanghai',
1535
+ key: '0-0-1',
1536
+ disabled: true,
1537
+ },
1538
+ ],
1539
+ },
1540
+ {
1541
+ label: 'Japan',
1542
+ value: 'Japan',
1543
+ key: '0-1',
1544
+ children: [
1545
+ {
1546
+ label: 'Osaka',
1547
+ value: 'Osaka',
1548
+ key: '0-1-0',
1549
+ },
1550
+ ],
1551
+ },
1552
+ ],
1553
+ },
1554
+ ]}
1555
+ defaultValue={['Shanghai']}
1556
+ multiple
1557
+ defaultExpandAll
1558
+ disableStrictly
1559
+ />
1560
+ <br />
1561
+ <span> disable shanghai </span>
1562
+ <Tree
1563
+ treeData={[
1564
+ {
1565
+ label: 'Asia',
1566
+ value: 'Asia',
1567
+ key: '0',
1568
+ children: [
1569
+ {
1570
+ label: 'China',
1571
+ value: 'China',
1572
+ key: '0-0',
1573
+ children: [
1574
+ {
1575
+ label: 'Beijing',
1576
+ value: 'Beijing',
1577
+ key: '0-0-0',
1578
+ },
1579
+ {
1580
+ label: 'Chengdu',
1581
+ value: 'Chengdu',
1582
+ key: '0-0-2',
1583
+ },
1584
+ {
1585
+ label: 'Shanghai',
1586
+ value: 'Shanghai',
1587
+ key: '0-0-1',
1588
+ disabled: true,
1589
+ },
1590
+ ],
1591
+ },
1592
+ {
1593
+ label: 'Japan',
1594
+ value: 'Japan',
1595
+ key: '0-1',
1596
+ children: [
1597
+ {
1598
+ label: 'Osaka',
1599
+ value: 'Osaka',
1600
+ key: '0-1-0',
1601
+ },
1602
+ ],
1603
+ },
1604
+ ],
1605
+ },
1606
+ ]}
1607
+ multiple
1608
+ defaultExpandAll
1609
+ disableStrictly
1610
+ />
1611
+ <span> disable China(checked) - Shanghai </span>
1612
+ <Tree
1613
+ treeData={[
1614
+ {
1615
+ label: 'Asia',
1616
+ value: 'Asia',
1617
+ key: '0',
1618
+ children: [
1619
+ {
1620
+ label: 'China',
1621
+ value: 'China',
1622
+ key: '0-0',
1623
+ disabled: true,
1624
+ children: [
1625
+ {
1626
+ label: 'Beijing',
1627
+ value: 'Beijing',
1628
+ key: '0-0-0',
1629
+ },
1630
+ {
1631
+ label: 'Shanghai',
1632
+ value: 'Shanghai',
1633
+ key: '0-0-1',
1634
+ disabled: true,
1635
+ },
1636
+ ],
1637
+ },
1638
+ {
1639
+ label: 'Japan',
1640
+ value: 'Japan',
1641
+ key: '0-1',
1642
+ children: [
1643
+ {
1644
+ label: 'Osaka',
1645
+ value: 'Osaka',
1646
+ key: '0-1-0',
1647
+ },
1648
+ ],
1649
+ },
1650
+ ],
1651
+ },
1652
+ ]}
1653
+ defaultValue="China"
1654
+ multiple
1655
+ defaultExpandAll
1656
+ disableStrictly
1657
+ />
1658
+ <span> disable China </span>
1659
+ <Tree
1660
+ treeData={[
1661
+ {
1662
+ label: 'Asia',
1663
+ value: 'Asia',
1664
+ key: '0',
1665
+ children: [
1666
+ {
1667
+ label: 'China',
1668
+ value: 'China',
1669
+ key: '0-0',
1670
+ disabled: true,
1671
+ children: [
1672
+ {
1673
+ label: 'Beijing',
1674
+ value: 'Beijing',
1675
+ key: '0-0-0',
1676
+ },
1677
+ {
1678
+ label: 'Shanghai',
1679
+ value: 'Shanghai',
1680
+ key: '0-0-1',
1681
+ },
1682
+ ],
1683
+ },
1684
+ {
1685
+ label: 'Japan',
1686
+ value: 'Japan',
1687
+ key: '0-1',
1688
+ children: [
1689
+ {
1690
+ label: 'Osaka',
1691
+ value: 'Osaka',
1692
+ key: '0-1-0',
1693
+ },
1694
+ ],
1695
+ },
1696
+ ],
1697
+ },
1698
+ ]}
1699
+ multiple
1700
+ defaultExpandAll
1701
+ disableStrictly
1702
+ />
1703
+ </>
1704
+ );
1705
+ };
1706
+
1707
+ export const DisableStrictly = () => <DisabledStrictly />;
1708
+
1709
+ DisableStrictly.story = {
1710
+ name: 'disableStrictly',
1711
+ };
1712
+
1713
+ const ActionTree = () => {
1714
+ let initData = [
1715
+ {
1716
+ label: 'Asia',
1717
+ value: 'Asia',
1718
+ key: 'asia',
1719
+ children: [
1720
+ {
1721
+ label: 0,
1722
+ value: `${0}`,
1723
+ key: `${0}`,
1724
+ },
1725
+ {
1726
+ label: 1,
1727
+ value: `${1}`,
1728
+ key: `${1}`,
1729
+ },
1730
+ {
1731
+ label: 2,
1732
+ value: `${2}`,
1733
+ key: `${2}`,
1734
+ },
1735
+ {
1736
+ label: 3,
1737
+ value: `${3}`,
1738
+ key: `${3}`,
1739
+ },
1740
+ {
1741
+ label: 4,
1742
+ value: `${4}`,
1743
+ key: `${4}`,
1744
+ },
1745
+ ],
1746
+ },
1747
+ ];
1748
+
1749
+ const [data, setData] = useState(initData);
1750
+
1751
+ const remove = key => {
1752
+ let ind = data[0].children.findIndex(item => item.key === key);
1753
+ if (ind >= 0) {
1754
+ let items = cloneDeep(data);
1755
+ items[0].children.splice(ind, 1);
1756
+ setData(items);
1757
+ }
1758
+ };
1759
+
1760
+ return (
1761
+ <Tree
1762
+ treeData={cloneDeep(data)}
1763
+ renderLabel={(label, data) => (
1764
+ <div>
1765
+ {label}
1766
+ <Button onClick={() => remove(data.key)}>remove</Button>
1767
+ </div>
1768
+ )}
1769
+ />
1770
+ );
1771
+ };
1772
+
1773
+ export const DeleteOrAddChildNode = () => <ActionTree />;
1774
+
1775
+ DeleteOrAddChildNode.story = {
1776
+ name: 'Delete or Add Child Node',
1777
+ };
1778
+
1779
+ const MutipleHLTree = () => {
1780
+ const [selected, setSelected] = useState(new Set());
1781
+ const [selectedThroughParent, setSelectedThroughParent] = useState(new Set());
1782
+
1783
+ const findDescendantKeys = node => {
1784
+ let res = [node.key];
1785
+ const findChild = item => {
1786
+ if (!item) return;
1787
+ const { children } = item;
1788
+
1789
+ if (children && children.length) {
1790
+ children.forEach(child => {
1791
+ res.push(child.key);
1792
+ findChild(child);
1793
+ });
1794
+ }
1795
+ };
1796
+ findChild(node);
1797
+ return res;
1798
+ };
1799
+
1800
+ const handleSelect = (key, bool, node) => {
1801
+ setSelected(new Set([key]));
1802
+ const descendantKeys = findDescendantKeys(node);
1803
+ setSelectedThroughParent(new Set(descendantKeys));
1804
+ };
1805
+
1806
+ const renderLabel = ({ className, data, onClick, expandIcon }) => {
1807
+ const { label, icon, key } = data;
1808
+ const isLeaf = !(data.children && data.children.length);
1809
+ const style = {
1810
+ backgroundColor: selected.has(key)
1811
+ ? 'rgba(var(--semi-blue-0), 1)'
1812
+ : selectedThroughParent.has(key)
1813
+ ? 'rgba(var(--semi-blue-0), .5)'
1814
+ : 'transparent',
1815
+ };
1816
+ return (
1817
+ <li className={className} role="treenode" onClick={onClick} style={style}>
1818
+ {isLeaf ? null : expandIcon}
1819
+ {icon ? icon : null}
1820
+ <span>{label}</span>
1821
+ </li>
1822
+ );
1823
+ };
1824
+
1825
+ const treeStyle = {
1826
+ width: 260,
1827
+ height: 420,
1828
+ border: '1px solid var(--semi-color-border)',
1829
+ };
1830
+ return (
1831
+ <Tree
1832
+ treeData={treeData1}
1833
+ renderFullLabel={renderLabel}
1834
+ onSelect={handleSelect}
1835
+ style={treeStyle}
1836
+ />
1837
+ );
1838
+ };
1839
+
1840
+ export const RenderOuterLable = () => <MutipleHLTree />;
1841
+
1842
+ RenderOuterLable.story = {
1843
+ name: 'renderOuterLable',
1844
+ };
1845
+
1846
+ export const TreeWithoutValueProps = () => (
1847
+ <Tree
1848
+ treeData={treeDataWithoutValue}
1849
+ value="meiguo"
1850
+ defaultExpandAll
1851
+ onChange={(...args) => console.log(args)}
1852
+ />
1853
+ );
1854
+
1855
+ TreeWithoutValueProps.story = {
1856
+ name: 'tree without value props',
1857
+ };
1858
+
1859
+ const DnDTree = () => {
1860
+ const initialData = [
1861
+ {
1862
+ label: 'Asia',
1863
+ value: 'Asia',
1864
+ key: '0',
1865
+ children: [
1866
+ {
1867
+ label: 'China',
1868
+ value: 'China',
1869
+ key: '0-0',
1870
+ children: [
1871
+ {
1872
+ label: 'Beijing',
1873
+ value: 'Beijing',
1874
+ key: '0-0-0',
1875
+ },
1876
+ {
1877
+ label: 'Shanghai',
1878
+ value: 'Shanghai',
1879
+ key: '0-0-1',
1880
+ },
1881
+ ],
1882
+ },
1883
+ {
1884
+ label: 'Japan',
1885
+ value: 'Japan',
1886
+ key: '0-1',
1887
+ children: [
1888
+ {
1889
+ label: 'Osaka',
1890
+ value: 'Osaka',
1891
+ key: '0-1-0',
1892
+ },
1893
+ ],
1894
+ },
1895
+ ],
1896
+ },
1897
+ {
1898
+ label: 'North America',
1899
+ value: 'North America',
1900
+ key: '1',
1901
+ children: [
1902
+ {
1903
+ label: 'United States',
1904
+ value: 'United States',
1905
+ key: '1-0',
1906
+ },
1907
+ {
1908
+ label: 'Canada',
1909
+ value: 'Canada',
1910
+ key: '1-1',
1911
+ },
1912
+ ],
1913
+ },
1914
+ {
1915
+ label: 'Europe',
1916
+ value: 'Europe',
1917
+ key: '2',
1918
+ },
1919
+ ];
1920
+
1921
+ const [treeData, setTreeData] = useState(initialData);
1922
+
1923
+ // const [expandedKeys, setExpandedKeys] = useState(['zhongguo']);
1924
+
1925
+ function onDragEnter(info) {
1926
+ console.log(info);
1927
+ // if in controlled expandedKeys mode
1928
+ // setExpandedKeys(info.expandedKeys)
1929
+ }
1930
+
1931
+ function onDrop(info) {
1932
+ const { dropToGap, node, dragNode } = info;
1933
+ const dropKey = node.key;
1934
+ const dragKey = dragNode.key;
1935
+ const dropPos = node.pos.split('-');
1936
+ const dropPosition = info.dropPosition - Number(dropPos[dropPos.length - 1]);
1937
+ const data = [...treeData];
1938
+ const loop = (data, key, callback) => {
1939
+ data.forEach((item, ind, arr) => {
1940
+ if (item.key === key) return callback(item, ind, arr);
1941
+ if (item.children) return loop(item.children, key, callback);
1942
+ });
1943
+ };
1944
+
1945
+ let dragObj;
1946
+ loop(data, dragKey, (item, ind, arr) => {
1947
+ arr.splice(ind, 1);
1948
+ dragObj = item;
1949
+ });
1950
+
1951
+ if (!dropToGap) {
1952
+ // inset into the dropPosition
1953
+ loop(data, dropKey, (item, ind, arr) => {
1954
+ item.children = item.children || [];
1955
+ item.children.push(dragObj);
1956
+ });
1957
+ } else if (dropPosition === 1 && node.children && node.expanded) {
1958
+ // has children && expanded and drop into the node bottom gap
1959
+ // insert to the top 这里我们添加在头部,可以是任意位置
1960
+ loop(data, dropKey, item => {
1961
+ item.children = item.children || [];
1962
+ item.children.unshift(dragObj);
1963
+ });
1964
+ } else {
1965
+ let dropNodeInd;
1966
+ let dropNodePosArr;
1967
+ loop(data, dropKey, (item, ind, arr) => {
1968
+ dropNodePosArr = arr;
1969
+ dropNodeInd = ind;
1970
+ });
1971
+ if (dropPosition === -1) {
1972
+ // insert to top
1973
+ dropNodePosArr.splice(dropNodeInd, 0, dragObj);
1974
+ } else {
1975
+ // insert to bottom
1976
+ dropNodePosArr.splice(dropNodeInd + 1, 0, dragObj);
1977
+ }
1978
+ }
1979
+ setTreeData(data);
1980
+ }
1981
+
1982
+ return (
1983
+ <Tree
1984
+ treeData={treeData}
1985
+ draggable
1986
+ //expandedKeys={expandedKeys}
1987
+ onDragEnter={onDragEnter}
1988
+ onDrop={onDrop}
1989
+ />
1990
+ );
1991
+ };
1992
+
1993
+ export const DraggableTree = () => <DnDTree />;
1994
+
1995
+ DraggableTree.story = {
1996
+ name: 'draggable Tree',
1997
+ };
1998
+
1999
+ const TestTree = () => {
2000
+ return (
2001
+ <Tree
2002
+ treeData={testData}
2003
+ // motion={false}
2004
+ style={{ height: '100%' }}
2005
+ filterTreeNode
2006
+ expandAction="click"
2007
+ showFilteredOnly
2008
+ />
2009
+ );
2010
+ };
2011
+
2012
+ export const Draggable = () => <TestTree />;
2013
+
2014
+ Draggable.story = {
2015
+ name: 'draggable',
2016
+ };
2017
+
2018
+ export const RenderFullLabelWithDraggable = () => {
2019
+ const [selected, setSelected] = useState(new Set());
2020
+ const [selectedThroughParent, setSelectedThroughParent] = useState(new Set());
2021
+ const defaultTreeData = [
2022
+ {
2023
+ label: '黑色固定按钮',
2024
+ key: 'fix-btn-0',
2025
+ },
2026
+ {
2027
+ label: '模块',
2028
+ key: 'module-0',
2029
+ children: [
2030
+ {
2031
+ label: '可自由摆放的组件',
2032
+ key: 'free-compo-0',
2033
+ },
2034
+ {
2035
+ label: '分栏容器',
2036
+ key: 'split-col-0',
2037
+ children: [
2038
+ {
2039
+ label: '按钮组件',
2040
+ key: 'btn-0',
2041
+ },
2042
+ {
2043
+ label: '按钮组件',
2044
+ key: 'btn-1',
2045
+ },
2046
+ ],
2047
+ },
2048
+ ],
2049
+ },
2050
+ {
2051
+ label: '模块',
2052
+ key: 'module-1',
2053
+ children: [
2054
+ {
2055
+ label: '自定义组件',
2056
+ key: 'cus-0',
2057
+ },
2058
+ ],
2059
+ },
2060
+ ];
2061
+ const [treeData, setTreeData] = useState(defaultTreeData);
2062
+
2063
+ const onDrop = info => {
2064
+ const { dropToGap, node, dragNode } = info;
2065
+ const dropKey = node.key;
2066
+ const dragKey = dragNode.key;
2067
+ const dropPos = node.pos.split('-');
2068
+ const dropPosition = info.dropPosition - Number(dropPos[dropPos.length - 1]);
2069
+
2070
+ const data = [...treeData];
2071
+ const loop = (data, key, callback) => {
2072
+ data.forEach((item, ind, arr) => {
2073
+ if (item.key === key) return callback(item, ind, arr);
2074
+ if (item.children) return loop(item.children, key, callback);
2075
+ });
2076
+ };
2077
+
2078
+ let dragObj;
2079
+ loop(data, dragKey, (item, ind, arr) => {
2080
+ arr.splice(ind, 1);
2081
+ dragObj = item;
2082
+ });
2083
+
2084
+ if (!dropToGap) {
2085
+ loop(data, dropKey, (item, ind, arr) => {
2086
+ item.children = item.children || [];
2087
+ item.children.push(dragObj);
2088
+ });
2089
+ } else if (dropPosition === 1 && node.children && node.expanded) {
2090
+ loop(data, dropKey, item => {
2091
+ item.children = item.children || [];
2092
+ item.children.unshift(dragObj);
2093
+ });
2094
+ } else {
2095
+ let dropNodeInd;
2096
+ let dropNodePosArr;
2097
+ loop(data, dropKey, (item, ind, arr) => {
2098
+ dropNodePosArr = arr;
2099
+ dropNodeInd = ind;
2100
+ });
2101
+ if (dropPosition === -1) {
2102
+ dropNodePosArr.splice(dropNodeInd, 0, dragObj);
2103
+ } else {
2104
+ dropNodePosArr.splice(dropNodeInd + 1, 0, dragObj);
2105
+ }
2106
+ }
2107
+ setTreeData(data);
2108
+ };
2109
+
2110
+ const findDescendantKeys = node => {
2111
+ let res = [node.key];
2112
+ const findChild = item => {
2113
+ if (!item) return;
2114
+ const { children } = item;
2115
+
2116
+ if (children && children.length) {
2117
+ children.forEach(child => {
2118
+ res.push(child.key);
2119
+ findChild(child);
2120
+ });
2121
+ }
2122
+ };
2123
+ findChild(node);
2124
+ return res;
2125
+ };
2126
+
2127
+ const handleSelect = (key, bool, node) => {
2128
+ setSelected(new Set([key]));
2129
+ const descendantKeys = findDescendantKeys(node);
2130
+ setSelectedThroughParent(new Set(descendantKeys));
2131
+ };
2132
+
2133
+ const renderLabel = ({ className, data, onClick, expandIcon }) => {
2134
+ const { label, icon, key } = data;
2135
+ const isLeaf = !(data.children && data.children.length);
2136
+ const style = {
2137
+ backgroundColor: selected.has(key)
2138
+ ? 'rgba(var(--semi-blue-0), 1)'
2139
+ : selectedThroughParent.has(key)
2140
+ ? 'rgba(var(--semi-blue-0), .5)'
2141
+ : 'transparent',
2142
+ };
2143
+ return (
2144
+ <li className={className} role="treenode" onClick={onClick} style={style}>
2145
+ {isLeaf ? <span style={{ width: 24 }}></span> : expandIcon}
2146
+ {icon ? icon : null}
2147
+ <span>{label}</span>
2148
+ </li>
2149
+ );
2150
+ };
2151
+
2152
+ const treeStyle = {
2153
+ height: 420,
2154
+ border: '1px solid var(--semi-color-border)',
2155
+ };
2156
+
2157
+ return (
2158
+ <Tree
2159
+ treeData={treeData}
2160
+ draggable
2161
+ onDrop={onDrop}
2162
+ renderFullLabel={renderLabel}
2163
+ onSelect={handleSelect}
2164
+ style={treeStyle}
2165
+ defaultExpandAll
2166
+ />
2167
+ );
2168
+ };
2169
+
2170
+ RenderFullLabelWithDraggable.story = {
2171
+ name: 'renderFullLabel with draggable',
2172
+ };