@abtnode/ux 1.16.27-beta-c450492a → 1.16.27-beta-d1555a79

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 (546) hide show
  1. package/lib/actions.js +39 -56
  2. package/lib/analytics/card.js +62 -41
  3. package/lib/analytics/chart.js +40 -53
  4. package/lib/analytics/cpu.js +20 -28
  5. package/lib/analytics/disk.js +40 -52
  6. package/lib/analytics/memory.js +28 -37
  7. package/lib/analytics/runtime.js +40 -52
  8. package/lib/analytics/traffic.js +87 -98
  9. package/lib/blocklet/access/config-access.js +109 -106
  10. package/lib/blocklet/access/index.js +96 -102
  11. package/lib/blocklet/actions.js +312 -332
  12. package/lib/blocklet/add-cert.js +57 -73
  13. package/lib/blocklet/agreement-app.js +13 -23
  14. package/lib/blocklet/agreement.js +126 -58
  15. package/lib/blocklet/app-avatar.js +19 -35
  16. package/lib/blocklet/audit-logs.js +139 -98
  17. package/lib/blocklet/authentication/common-settings.js +88 -104
  18. package/lib/blocklet/authentication/federated/federated-detail-dialog.js +57 -66
  19. package/lib/blocklet/authentication/federated/federated-invite-dialog.js +29 -39
  20. package/lib/blocklet/authentication/federated/federated-join-dialog.js +36 -45
  21. package/lib/blocklet/authentication/federated/federated-site-list.js +73 -87
  22. package/lib/blocklet/authentication/federated/index.js +35 -48
  23. package/lib/blocklet/authentication/index.js +27 -34
  24. package/lib/blocklet/authentication/oauth/apple.js +125 -152
  25. package/lib/blocklet/authentication/oauth/auth0.js +93 -114
  26. package/lib/blocklet/authentication/oauth/drag-item.js +49 -57
  27. package/lib/blocklet/authentication/oauth/github.js +78 -96
  28. package/lib/blocklet/authentication/oauth/google.js +78 -96
  29. package/lib/blocklet/authentication/oauth/index.js +47 -61
  30. package/lib/blocklet/blocklet-source.js +23 -32
  31. package/lib/blocklet/bundle-avatar.js +26 -42
  32. package/{es/blocklet/component → lib/blocklet/component/add-component}/add-component-core.js +161 -237
  33. package/{es/blocklet/component → lib/blocklet/component/add-component}/add-component-dialog.js +2 -2
  34. package/lib/blocklet/component/add-component/step-connect.js +215 -0
  35. package/lib/blocklet/component/button.js +9 -20
  36. package/lib/blocklet/component/component-cell.js +141 -137
  37. package/lib/blocklet/component/component-info-dialog.js +94 -90
  38. package/lib/blocklet/component/configuration.js +56 -58
  39. package/lib/blocklet/component/delete.js +56 -66
  40. package/lib/blocklet/component/did-space/connect-to.js +100 -108
  41. package/lib/blocklet/component/did-space/connected.js +14 -21
  42. package/lib/blocklet/component/did-space/delete.js +31 -39
  43. package/lib/blocklet/component/did-space/disconnect.js +58 -69
  44. package/lib/blocklet/component/did-space/index.js +40 -47
  45. package/lib/blocklet/component/did-space/item.js +113 -78
  46. package/lib/blocklet/component/domain-list.js +211 -230
  47. package/lib/blocklet/component/environment.js +137 -92
  48. package/lib/blocklet/component/index.js +230 -222
  49. package/lib/blocklet/component/line.js +10 -18
  50. package/lib/blocklet/component/navigation/locale-tabs.js +64 -76
  51. package/lib/blocklet/component/navigation/navigation-actions.js +43 -51
  52. package/lib/blocklet/component/navigation/navigation-dialog.js +263 -299
  53. package/lib/blocklet/component/navigation/navigation-preview.js +44 -48
  54. package/lib/blocklet/component/navigation/simple-select.js +54 -70
  55. package/lib/blocklet/component/optional-component-cell.js +91 -55
  56. package/lib/blocklet/component/related-components-dialog.js +40 -50
  57. package/lib/blocklet/component/select-store.js +70 -74
  58. package/lib/blocklet/component/selected/index.js +72 -26
  59. package/lib/blocklet/component/setting.js +48 -62
  60. package/lib/blocklet/component/shorten-label.js +34 -0
  61. package/lib/blocklet/component/sortable-tree.js +49 -63
  62. package/lib/blocklet/component/space-connector.js +64 -78
  63. package/lib/blocklet/component/space-selector.js +65 -71
  64. package/lib/blocklet/component/start.js +42 -49
  65. package/lib/blocklet/component/step-actions.js +72 -37
  66. package/lib/blocklet/component/store-blocklet-list.js +93 -103
  67. package/lib/blocklet/component/switch-control.js +36 -42
  68. package/lib/blocklet/config-navigation.js +106 -134
  69. package/lib/blocklet/configuration.js +188 -171
  70. package/lib/blocklet/disk-info.js +26 -44
  71. package/lib/blocklet/icons.js +21 -28
  72. package/lib/blocklet/install-from-url.js +93 -107
  73. package/lib/blocklet/log.js +27 -43
  74. package/lib/blocklet/logo-uploader.js +76 -58
  75. package/lib/blocklet/migration.js +40 -50
  76. package/lib/blocklet/mode.js +12 -28
  77. package/lib/blocklet/notification/email.js +154 -186
  78. package/lib/blocklet/notification/index.js +20 -27
  79. package/lib/blocklet/overview.js +59 -60
  80. package/lib/blocklet/page-group.js +12 -28
  81. package/lib/blocklet/preferences/app-sk.js +54 -57
  82. package/lib/blocklet/preferences/index.js +100 -111
  83. package/lib/blocklet/publish/connect-store-button.js +112 -0
  84. package/lib/blocklet/publish/connect-store-list.js +51 -56
  85. package/lib/blocklet/publish/create-release.js +512 -392
  86. package/lib/blocklet/publish/index.js +42 -46
  87. package/lib/blocklet/publish/project-list.js +128 -106
  88. package/lib/blocklet/publish/release-list.js +98 -97
  89. package/lib/blocklet/publish/resource.js +186 -157
  90. package/lib/blocklet/publish/select-components.js +73 -68
  91. package/lib/blocklet/publish/tree.js +141 -109
  92. package/lib/blocklet/publish/wait-connect.js +64 -0
  93. package/lib/blocklet/purchase/common.js +37 -45
  94. package/lib/blocklet/purchase/component-purchase.js +74 -91
  95. package/lib/blocklet/purchase/index.js +3 -12
  96. package/lib/blocklet/resource-type.js +19 -36
  97. package/lib/blocklet/router/action/add-domain-alias.js +56 -67
  98. package/lib/blocklet/router/action/add-rule.js +63 -73
  99. package/lib/blocklet/router/action/config-routing-rule.js +84 -93
  100. package/lib/blocklet/router/action/delete-domain-alias.js +27 -34
  101. package/lib/blocklet/router/action/delete-rule.js +31 -39
  102. package/lib/blocklet/router/action/update-rule.js +66 -76
  103. package/lib/blocklet/router/add-domain.js +113 -131
  104. package/lib/blocklet/router/dns-tip.js +40 -57
  105. package/lib/blocklet/router/domain-actions.js +52 -67
  106. package/lib/blocklet/router/domain-status.js +27 -35
  107. package/lib/blocklet/router/rule-actions.js +45 -60
  108. package/lib/blocklet/router/rule-list.js +83 -92
  109. package/lib/blocklet/router/util.js +30 -46
  110. package/lib/blocklet/runtime-info.js +30 -48
  111. package/lib/blocklet/status.js +37 -52
  112. package/lib/blocklet/storage/action.js +59 -76
  113. package/lib/blocklet/storage/auto-backup.js +23 -31
  114. package/lib/blocklet/storage/auto-check-update.js +28 -42
  115. package/lib/blocklet/storage/backups.js +50 -60
  116. package/lib/blocklet/storage/connect-to.js +100 -106
  117. package/lib/blocklet/storage/connected.js +35 -40
  118. package/lib/blocklet/storage/delete.js +34 -42
  119. package/lib/blocklet/storage/disconnect.js +65 -76
  120. package/lib/blocklet/storage/index.js +9 -16
  121. package/lib/blocklet/storage/item.js +193 -153
  122. package/lib/blocklet/storage/preview-nft.js +74 -87
  123. package/lib/blocklet/transfer-owner.js +70 -74
  124. package/lib/blocklet/types.js +12 -18
  125. package/lib/blocklet/util.js +38 -55
  126. package/lib/blocklet/version.js +59 -69
  127. package/lib/card-selector.js +63 -39
  128. package/lib/certificate.js +35 -43
  129. package/lib/chain.js +3 -10
  130. package/lib/clear-cache.js +28 -44
  131. package/lib/click-to-copy.js +15 -31
  132. package/lib/confirm.js +72 -84
  133. package/lib/contexts/audit-log.js +30 -41
  134. package/lib/contexts/blocklet-storage.js +56 -65
  135. package/lib/contexts/blocklet.js +5 -13
  136. package/lib/contexts/config-space.js +34 -42
  137. package/lib/contexts/deleting-blocklets.js +18 -26
  138. package/lib/contexts/domain.js +20 -30
  139. package/lib/contexts/node.js +8 -20
  140. package/lib/contexts/session.js +5 -17
  141. package/lib/contexts/team.js +5 -13
  142. package/lib/delete-confirm.js +53 -60
  143. package/lib/did-address.js +24 -39
  144. package/lib/dot.js +9 -12
  145. package/lib/empty-spinner.js +15 -31
  146. package/lib/exchange-passport.js +30 -42
  147. package/lib/form/form-autocomplete-input.js +101 -117
  148. package/lib/form/form-select-input.js +69 -87
  149. package/lib/form/form-text-input.js +59 -75
  150. package/lib/form/form-wrapper.js +88 -12
  151. package/lib/form/input-triggers.js +39 -47
  152. package/lib/form/required.js +8 -12
  153. package/lib/hooks/blocklet.js +83 -106
  154. package/lib/hooks/confirm.js +31 -47
  155. package/lib/hooks/mobile-width.js +5 -12
  156. package/lib/hooks/url-evaluation.js +37 -50
  157. package/lib/hooks/use-app-logo.js +17 -27
  158. package/lib/hooks/use-auto-backup.js +15 -25
  159. package/lib/hooks/use-auto-check-update.js +15 -25
  160. package/lib/hooks/use-backup-progress.js +19 -30
  161. package/lib/hooks/use-backups.js +22 -30
  162. package/lib/hooks/use-blocklet-info-for-connect-did-spaces.js +17 -26
  163. package/lib/hooks/use-bundle-logo.js +13 -22
  164. package/lib/hooks/use-check-update-by-url.js +12 -20
  165. package/lib/hooks/use-components-by-blocklet-meta-url.js +11 -17
  166. package/lib/hooks/use-event-listen.js +4 -10
  167. package/lib/hooks/use-install-component-by-url.js +20 -29
  168. package/lib/hooks/use-mobile.js +9 -16
  169. package/lib/hooks/use-navigation.js +66 -74
  170. package/lib/hooks/use-passport-id.js +1 -7
  171. package/lib/hooks/use-snackbar.js +2 -8
  172. package/lib/hooks/use-space-gateways.js +21 -29
  173. package/lib/hooks/use-storage-endpoint.js +8 -13
  174. package/lib/hooks/use-subscription.js +8 -14
  175. package/lib/hooks/use-width.js +5 -12
  176. package/lib/images.js +31 -34
  177. package/lib/index.js +3 -20
  178. package/lib/invitation/invitation-app.js +42 -35
  179. package/lib/invitation/invitation-login.js +51 -29
  180. package/lib/invitation/invitation-passport.js +76 -48
  181. package/lib/invitation/invitation-receive.js +81 -66
  182. package/lib/invitation/invitation-success.js +51 -41
  183. package/lib/invitation/invitation-user.js +48 -38
  184. package/lib/invitation/invitation.js +69 -63
  185. package/lib/issue-passport.js +64 -53
  186. package/lib/launch-blocklet/content-layout.js +54 -29
  187. package/lib/launch-blocklet/page-header.js +29 -24
  188. package/lib/layout/addon.js +72 -56
  189. package/lib/layout/feedback.js +25 -25
  190. package/lib/locales/ar.js +14 -18
  191. package/lib/locales/de.js +15 -19
  192. package/lib/locales/en.js +19 -23
  193. package/lib/locales/es.js +14 -18
  194. package/lib/locales/fr.js +14 -18
  195. package/lib/locales/hi.js +14 -18
  196. package/lib/locales/i18n.db +0 -0
  197. package/lib/locales/id.js +14 -18
  198. package/lib/locales/index.js +19 -27
  199. package/lib/locales/ja.js +14 -18
  200. package/lib/locales/ko.js +14 -18
  201. package/lib/locales/pt.js +14 -18
  202. package/lib/locales/ru.js +13 -17
  203. package/lib/locales/th.js +13 -17
  204. package/lib/locales/vi.js +14 -18
  205. package/lib/locales/zh-tw.js +28 -32
  206. package/lib/locales/zh.js +26 -30
  207. package/lib/logs/clock.js +7 -14
  208. package/lib/logs/download.js +45 -53
  209. package/lib/logs/log-terminal.js +145 -84
  210. package/lib/lost-passport.js +226 -110
  211. package/lib/nav-logo.js +157 -60
  212. package/lib/notifications/addon.js +34 -43
  213. package/lib/notifications/default-icon-variants.js +23 -31
  214. package/lib/notifications/list.js +122 -89
  215. package/lib/notifications/notification.js +64 -56
  216. package/lib/notifications/page.js +151 -104
  217. package/lib/notifications/tag.js +12 -28
  218. package/lib/passport-tag.js +31 -32
  219. package/lib/permission.js +19 -32
  220. package/lib/relative-time.js +25 -39
  221. package/lib/result-message.js +11 -13
  222. package/lib/schema-form/color-input.js +24 -32
  223. package/lib/schema-form/common-prop-types.js +10 -17
  224. package/lib/schema-form/index.js +75 -89
  225. package/lib/schema-form/passport-input.js +28 -42
  226. package/lib/schema-form/text-input.js +20 -35
  227. package/lib/store/add.js +50 -58
  228. package/lib/store/connect-actions.js +46 -54
  229. package/lib/store/delete.js +35 -43
  230. package/lib/store/item.js +124 -136
  231. package/lib/subscription/blocklet.js +76 -90
  232. package/lib/subscription/chip-label.js +15 -23
  233. package/lib/subscription/server.js +83 -96
  234. package/lib/table-icons.js +33 -40
  235. package/lib/table.js +52 -12
  236. package/lib/tag.js +14 -30
  237. package/lib/team/members/actions.js +68 -82
  238. package/lib/team/members/connections.js +11 -19
  239. package/lib/team/members/index.js +289 -189
  240. package/lib/team/members/invitations.js +45 -55
  241. package/lib/team/members/invite-member.js +69 -76
  242. package/lib/team/members/issue-passport.js +54 -62
  243. package/lib/team/members/member.js +154 -142
  244. package/lib/team/members/passport-issuances.js +65 -61
  245. package/lib/team/members/passport-item.js +63 -55
  246. package/lib/team/members/passports.js +110 -115
  247. package/lib/team/members/toggle-user-approval.js +34 -42
  248. package/lib/team/members/transfer-node.js +78 -85
  249. package/lib/team/members/util.js +6 -12
  250. package/lib/team/passports/color.js +53 -61
  251. package/lib/team/passports/detail.js +136 -97
  252. package/lib/team/passports/index.js +117 -98
  253. package/lib/team/passports/mutate-role.js +50 -58
  254. package/lib/team/passports/trusted-factories.js +88 -93
  255. package/lib/team/passports/trusted-factory.js +99 -100
  256. package/lib/team/passports/trusted-issuer.js +92 -96
  257. package/lib/team/passports/trusted-issuers.js +88 -93
  258. package/lib/team/search-input.js +45 -36
  259. package/lib/team/styles/dialog.js +71 -11
  260. package/lib/team/styles/list-header.js +30 -11
  261. package/lib/util/api.js +5 -18
  262. package/lib/util/constants.js +3 -10
  263. package/lib/util/index.js +215 -324
  264. package/lib/util/join-url-keep-search.js +3 -10
  265. package/lib/util/mode.js +1 -7
  266. package/lib/util/parse-progress.js +1 -7
  267. package/lib/util/space-gateway.js +16 -23
  268. package/lib/util/spaces.js +48 -72
  269. package/lib/util/storage-ttl.js +4 -15
  270. package/lib/who-can-access/config.js +11 -18
  271. package/lib/wrap-locale.js +11 -18
  272. package/package.json +20 -100
  273. package/es/actions.js +0 -100
  274. package/es/analytics/card.js +0 -91
  275. package/es/analytics/chart.js +0 -95
  276. package/es/analytics/cpu.js +0 -36
  277. package/es/analytics/disk.js +0 -107
  278. package/es/analytics/memory.js +0 -70
  279. package/es/analytics/runtime.js +0 -174
  280. package/es/analytics/traffic.js +0 -257
  281. package/es/blocklet/access/config-access.js +0 -305
  282. package/es/blocklet/access/index.js +0 -215
  283. package/es/blocklet/actions.js +0 -536
  284. package/es/blocklet/add-cert.js +0 -193
  285. package/es/blocklet/agreement-app.js +0 -21
  286. package/es/blocklet/agreement.js +0 -214
  287. package/es/blocklet/app-avatar.js +0 -45
  288. package/es/blocklet/audit-logs.js +0 -275
  289. package/es/blocklet/authentication/common-settings.js +0 -133
  290. package/es/blocklet/authentication/federated/federated-detail-dialog.js +0 -193
  291. package/es/blocklet/authentication/federated/federated-invite-dialog.js +0 -82
  292. package/es/blocklet/authentication/federated/federated-join-dialog.js +0 -110
  293. package/es/blocklet/authentication/federated/federated-site-list.js +0 -319
  294. package/es/blocklet/authentication/federated/index.js +0 -79
  295. package/es/blocklet/authentication/index.js +0 -68
  296. package/es/blocklet/authentication/oauth/apple.js +0 -222
  297. package/es/blocklet/authentication/oauth/auth0.js +0 -170
  298. package/es/blocklet/authentication/oauth/drag-item.js +0 -177
  299. package/es/blocklet/authentication/oauth/github.js +0 -146
  300. package/es/blocklet/authentication/oauth/google.js +0 -145
  301. package/es/blocklet/authentication/oauth/index.js +0 -122
  302. package/es/blocklet/blocklet-source.js +0 -47
  303. package/es/blocklet/bundle-avatar.js +0 -64
  304. package/es/blocklet/component/button.js +0 -12
  305. package/es/blocklet/component/component-cell.js +0 -339
  306. package/es/blocklet/component/component-info-dialog.js +0 -257
  307. package/es/blocklet/component/configuration.js +0 -122
  308. package/es/blocklet/component/delete.js +0 -132
  309. package/es/blocklet/component/did-space/connect-to.js +0 -351
  310. package/es/blocklet/component/did-space/connected.js +0 -41
  311. package/es/blocklet/component/did-space/delete.js +0 -102
  312. package/es/blocklet/component/did-space/disconnect.js +0 -228
  313. package/es/blocklet/component/did-space/index.js +0 -74
  314. package/es/blocklet/component/did-space/item.js +0 -230
  315. package/es/blocklet/component/domain-list.js +0 -519
  316. package/es/blocklet/component/environment.js +0 -364
  317. package/es/blocklet/component/index.js +0 -545
  318. package/es/blocklet/component/line.js +0 -24
  319. package/es/blocklet/component/navigation/locale-tabs.js +0 -227
  320. package/es/blocklet/component/navigation/navigation-actions.js +0 -111
  321. package/es/blocklet/component/navigation/navigation-dialog.js +0 -608
  322. package/es/blocklet/component/navigation/navigation-preview.js +0 -108
  323. package/es/blocklet/component/navigation/simple-select.js +0 -123
  324. package/es/blocklet/component/optional-component-cell.js +0 -140
  325. package/es/blocklet/component/related-components-dialog.js +0 -194
  326. package/es/blocklet/component/select-store.js +0 -170
  327. package/es/blocklet/component/selected/index.js +0 -93
  328. package/es/blocklet/component/setting.js +0 -109
  329. package/es/blocklet/component/sortable-tree.js +0 -125
  330. package/es/blocklet/component/space-connector.js +0 -197
  331. package/es/blocklet/component/space-selector.js +0 -177
  332. package/es/blocklet/component/start.js +0 -101
  333. package/es/blocklet/component/step-actions.js +0 -98
  334. package/es/blocklet/component/store-blocklet-list.js +0 -227
  335. package/es/blocklet/component/switch-control.js +0 -57
  336. package/es/blocklet/config-navigation.js +0 -354
  337. package/es/blocklet/configuration.js +0 -589
  338. package/es/blocklet/disk-info.js +0 -74
  339. package/es/blocklet/icons.js +0 -22
  340. package/es/blocklet/install-from-url.js +0 -335
  341. package/es/blocklet/log.js +0 -90
  342. package/es/blocklet/logo-uploader.js +0 -133
  343. package/es/blocklet/migration.js +0 -148
  344. package/es/blocklet/mode.js +0 -19
  345. package/es/blocklet/notification/email.js +0 -342
  346. package/es/blocklet/notification/index.js +0 -48
  347. package/es/blocklet/overview.js +0 -158
  348. package/es/blocklet/page-group.js +0 -19
  349. package/es/blocklet/preferences/app-sk.js +0 -141
  350. package/es/blocklet/preferences/index.js +0 -304
  351. package/es/blocklet/publish/connect-store-list.js +0 -97
  352. package/es/blocklet/publish/create-release.js +0 -1059
  353. package/es/blocklet/publish/index.js +0 -69
  354. package/es/blocklet/publish/project-list.js +0 -399
  355. package/es/blocklet/publish/release-list.js +0 -351
  356. package/es/blocklet/publish/resource.js +0 -235
  357. package/es/blocklet/publish/select-components.js +0 -180
  358. package/es/blocklet/publish/tree.js +0 -237
  359. package/es/blocklet/purchase/common.js +0 -93
  360. package/es/blocklet/purchase/component-purchase.js +0 -235
  361. package/es/blocklet/purchase/index.js +0 -4
  362. package/es/blocklet/resource-type.js +0 -34
  363. package/es/blocklet/router/action/add-domain-alias.js +0 -172
  364. package/es/blocklet/router/action/add-rule.js +0 -223
  365. package/es/blocklet/router/action/config-routing-rule.js +0 -283
  366. package/es/blocklet/router/action/delete-domain-alias.js +0 -97
  367. package/es/blocklet/router/action/delete-rule.js +0 -106
  368. package/es/blocklet/router/action/update-rule.js +0 -221
  369. package/es/blocklet/router/add-domain.js +0 -307
  370. package/es/blocklet/router/dns-tip.js +0 -103
  371. package/es/blocklet/router/domain-actions.js +0 -64
  372. package/es/blocklet/router/domain-status.js +0 -87
  373. package/es/blocklet/router/rule-actions.js +0 -65
  374. package/es/blocklet/router/rule-list.js +0 -203
  375. package/es/blocklet/router/util.js +0 -148
  376. package/es/blocklet/runtime-info.js +0 -67
  377. package/es/blocklet/status.js +0 -106
  378. package/es/blocklet/storage/action.js +0 -149
  379. package/es/blocklet/storage/auto-backup.js +0 -55
  380. package/es/blocklet/storage/auto-check-update.js +0 -69
  381. package/es/blocklet/storage/backups.js +0 -212
  382. package/es/blocklet/storage/connect-to.js +0 -353
  383. package/es/blocklet/storage/connected.js +0 -112
  384. package/es/blocklet/storage/delete.js +0 -112
  385. package/es/blocklet/storage/disconnect.js +0 -241
  386. package/es/blocklet/storage/index.js +0 -16
  387. package/es/blocklet/storage/item.js +0 -544
  388. package/es/blocklet/storage/preview-nft.js +0 -283
  389. package/es/blocklet/transfer-owner.js +0 -199
  390. package/es/blocklet/types.js +0 -18
  391. package/es/blocklet/util.js +0 -151
  392. package/es/blocklet/version.js +0 -139
  393. package/es/card-selector.js +0 -134
  394. package/es/certificate.js +0 -102
  395. package/es/chain.js +0 -13
  396. package/es/clear-cache.js +0 -77
  397. package/es/click-to-copy.js +0 -22
  398. package/es/confirm.js +0 -162
  399. package/es/contexts/audit-log.js +0 -152
  400. package/es/contexts/blocklet-storage.js +0 -247
  401. package/es/contexts/blocklet.js +0 -10
  402. package/es/contexts/config-space.js +0 -160
  403. package/es/contexts/deleting-blocklets.js +0 -70
  404. package/es/contexts/domain.js +0 -75
  405. package/es/contexts/node.js +0 -17
  406. package/es/contexts/session.js +0 -8
  407. package/es/contexts/team.js +0 -10
  408. package/es/delete-confirm.js +0 -120
  409. package/es/did-address.js +0 -46
  410. package/es/dot.js +0 -14
  411. package/es/empty-spinner.js +0 -24
  412. package/es/exchange-passport.js +0 -93
  413. package/es/form/form-autocomplete-input.js +0 -283
  414. package/es/form/form-select-input.js +0 -188
  415. package/es/form/form-text-input.js +0 -176
  416. package/es/form/form-wrapper.js +0 -88
  417. package/es/form/input-triggers.js +0 -96
  418. package/es/form/required.js +0 -8
  419. package/es/hooks/blocklet.js +0 -317
  420. package/es/hooks/confirm.js +0 -98
  421. package/es/hooks/mobile-width.js +0 -11
  422. package/es/hooks/url-evaluation.js +0 -155
  423. package/es/hooks/use-app-logo.js +0 -32
  424. package/es/hooks/use-auto-backup.js +0 -33
  425. package/es/hooks/use-auto-check-update.js +0 -33
  426. package/es/hooks/use-backup-progress.js +0 -65
  427. package/es/hooks/use-backups.js +0 -61
  428. package/es/hooks/use-blocklet-info-for-connect-did-spaces.js +0 -55
  429. package/es/hooks/use-bundle-logo.js +0 -27
  430. package/es/hooks/use-check-update-by-url.js +0 -28
  431. package/es/hooks/use-components-by-blocklet-meta-url.js +0 -36
  432. package/es/hooks/use-event-listen.js +0 -11
  433. package/es/hooks/use-install-component-by-url.js +0 -65
  434. package/es/hooks/use-mobile.js +0 -17
  435. package/es/hooks/use-navigation.js +0 -331
  436. package/es/hooks/use-passport-id.js +0 -18
  437. package/es/hooks/use-snackbar.js +0 -2
  438. package/es/hooks/use-space-gateways.js +0 -66
  439. package/es/hooks/use-storage-endpoint.js +0 -23
  440. package/es/hooks/use-subscription.js +0 -22
  441. package/es/hooks/use-width.js +0 -12
  442. package/es/icons/empty-space-nft.svg +0 -59
  443. package/es/icons/empty-spaces-nft.svg +0 -58
  444. package/es/icons/long-arrow.svg +0 -5
  445. package/es/icons/space-connected.svg +0 -3
  446. package/es/icons/space-disconnect.svg +0 -3
  447. package/es/images.js +0 -48
  448. package/es/index.js +0 -3
  449. package/es/invitation/invitation-app.js +0 -57
  450. package/es/invitation/invitation-login.js +0 -68
  451. package/es/invitation/invitation-passport.js +0 -144
  452. package/es/invitation/invitation-receive.js +0 -170
  453. package/es/invitation/invitation-success.js +0 -92
  454. package/es/invitation/invitation-user.js +0 -89
  455. package/es/invitation/invitation.js +0 -103
  456. package/es/issue-passport.js +0 -151
  457. package/es/launch-blocklet/content-layout.js +0 -58
  458. package/es/launch-blocklet/page-header.js +0 -42
  459. package/es/layout/addon.js +0 -119
  460. package/es/layout/feedback.js +0 -58
  461. package/es/locales/ar.js +0 -1825
  462. package/es/locales/de.js +0 -1825
  463. package/es/locales/en.js +0 -1815
  464. package/es/locales/es.js +0 -1825
  465. package/es/locales/fr.js +0 -1825
  466. package/es/locales/hi.js +0 -1825
  467. package/es/locales/i18n.db +0 -0
  468. package/es/locales/id.js +0 -1825
  469. package/es/locales/index.js +0 -20
  470. package/es/locales/ja.js +0 -1825
  471. package/es/locales/ko.js +0 -1825
  472. package/es/locales/pt.js +0 -1825
  473. package/es/locales/ru.js +0 -1825
  474. package/es/locales/th.js +0 -1825
  475. package/es/locales/vi.js +0 -1825
  476. package/es/locales/zh-tw.js +0 -1825
  477. package/es/locales/zh.js +0 -1832
  478. package/es/logs/clock.js +0 -11
  479. package/es/logs/download.js +0 -132
  480. package/es/logs/log-terminal.js +0 -253
  481. package/es/lost-passport.js +0 -501
  482. package/es/nav-logo.js +0 -217
  483. package/es/notifications/addon.js +0 -90
  484. package/es/notifications/default-icon-variants.js +0 -53
  485. package/es/notifications/list.js +0 -272
  486. package/es/notifications/notification.js +0 -147
  487. package/es/notifications/page.js +0 -314
  488. package/es/notifications/tag.js +0 -28
  489. package/es/passport-tag.js +0 -42
  490. package/es/permission.js +0 -57
  491. package/es/relative-time.js +0 -56
  492. package/es/result-message.js +0 -11
  493. package/es/schema-form/color-input.js +0 -97
  494. package/es/schema-form/common-prop-types.js +0 -13
  495. package/es/schema-form/index.js +0 -222
  496. package/es/schema-form/passport-input.js +0 -54
  497. package/es/schema-form/text-input.js +0 -57
  498. package/es/store/add.js +0 -178
  499. package/es/store/connect-actions.js +0 -139
  500. package/es/store/delete.js +0 -112
  501. package/es/store/item.js +0 -347
  502. package/es/subscription/blocklet.js +0 -175
  503. package/es/subscription/chip-label.js +0 -40
  504. package/es/subscription/server.js +0 -189
  505. package/es/table-icons.js +0 -34
  506. package/es/table.js +0 -52
  507. package/es/tag.js +0 -21
  508. package/es/team/members/actions.js +0 -143
  509. package/es/team/members/connections.js +0 -28
  510. package/es/team/members/index.js +0 -741
  511. package/es/team/members/invitations.js +0 -187
  512. package/es/team/members/invite-member.js +0 -206
  513. package/es/team/members/issue-passport.js +0 -150
  514. package/es/team/members/member.js +0 -394
  515. package/es/team/members/passport-issuances.js +0 -154
  516. package/es/team/members/passport-item.js +0 -103
  517. package/es/team/members/passports.js +0 -308
  518. package/es/team/members/toggle-user-approval.js +0 -123
  519. package/es/team/members/transfer-node.js +0 -255
  520. package/es/team/members/util.js +0 -14
  521. package/es/team/passports/color.js +0 -125
  522. package/es/team/passports/detail.js +0 -310
  523. package/es/team/passports/index.js +0 -289
  524. package/es/team/passports/mutate-role.js +0 -196
  525. package/es/team/passports/trusted-factories.js +0 -220
  526. package/es/team/passports/trusted-factory.js +0 -341
  527. package/es/team/passports/trusted-issuer.js +0 -293
  528. package/es/team/passports/trusted-issuers.js +0 -225
  529. package/es/team/search-input.js +0 -46
  530. package/es/team/styles/dialog.js +0 -72
  531. package/es/team/styles/list-header.js +0 -31
  532. package/es/util/api.js +0 -6
  533. package/es/util/constants.js +0 -3
  534. package/es/util/index.js +0 -691
  535. package/es/util/join-url-keep-search.js +0 -15
  536. package/es/util/mode.js +0 -4
  537. package/es/util/parse-progress.js +0 -10
  538. package/es/util/space-gateway.js +0 -51
  539. package/es/util/spaces.js +0 -235
  540. package/es/util/storage-ttl.js +0 -78
  541. package/es/who-can-access/config.js +0 -38
  542. package/es/wrap-locale.js +0 -15
  543. package/lib/blocklet/component/add-component-button.js +0 -57
  544. package/lib/blocklet/component/add-component-core.js +0 -1188
  545. package/lib/blocklet/component/add-component-dialog.js +0 -85
  546. /package/{es/blocklet/component → lib/blocklet/component/add-component}/add-component-button.js +0 -0
package/lib/actions.js CHANGED
@@ -1,45 +1,26 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = Actions;
7
- var _react = require("react");
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
- var _styled = _interopRequireDefault(require("@emotion/styled"));
10
- var _IconButton = _interopRequireDefault(require("@mui/material/IconButton"));
11
- var _Menu = _interopRequireDefault(require("@mui/material/Menu"));
12
- var _MenuItem = _interopRequireDefault(require("@mui/material/MenuItem"));
13
- var _MoreHoriz = _interopRequireDefault(require("@mui/icons-material/MoreHoriz"));
14
- var _ListItemIcon = _interopRequireDefault(require("@mui/material/ListItemIcon"));
15
- var _ListItemText = _interopRequireDefault(require("@mui/material/ListItemText"));
16
- var _jsxRuntime = require("react/jsx-runtime");
17
- var _templateObject;
18
- const _excluded = ["actions", "size"],
19
- _excluded2 = ["icon", "text", "onClick", "disabled"];
20
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
22
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
23
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
24
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
25
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
26
- function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
27
- 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; }
28
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } } return target; }
29
- function Actions(_ref) {
30
- let {
31
- actions,
32
- size
33
- } = _ref,
34
- props = _objectWithoutProperties(_ref, _excluded);
35
- const [anchorEl, setAnchorEl] = (0, _react.useState)(null);
1
+ import { useState, createElement as _createElement } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import styled from '@emotion/styled';
4
+ import IconButton from '@mui/material/IconButton';
5
+ import Menu from '@mui/material/Menu';
6
+ import MenuItem from '@mui/material/MenuItem';
7
+ import MoreHorizIcon from '@mui/icons-material/MoreHoriz';
8
+ import ListItemIcon from '@mui/material/ListItemIcon';
9
+ import ListItemText from '@mui/material/ListItemText';
10
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
11
+ export default function Actions({
12
+ actions,
13
+ size,
14
+ ...props
15
+ }) {
16
+ const [anchorEl, setAnchorEl] = useState(null);
36
17
  const open = Boolean(anchorEl);
37
18
  const onOpen = e => {
38
19
  try {
39
20
  e.stopPropagation();
40
21
  e.preventDefault();
41
22
  // eslint-disable-next-line no-empty
42
- } catch (_unused) {}
23
+ } catch {}
43
24
  setAnchorEl(e.currentTarget);
44
25
  };
45
26
  const onClose = e => {
@@ -47,19 +28,20 @@ function Actions(_ref) {
47
28
  e.stopPropagation();
48
29
  e.preventDefault();
49
30
  // eslint-disable-next-line no-empty
50
- } catch (_unused2) {}
31
+ } catch {}
51
32
  setAnchorEl(null);
52
33
  };
53
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(Div, _objectSpread(_objectSpread({}, props), {}, {
54
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_IconButton.default, {
34
+ return /*#__PURE__*/_jsxs(Div, {
35
+ ...props,
36
+ children: [/*#__PURE__*/_jsx(IconButton, {
55
37
  "aria-label": "more",
56
38
  "aria-controls": "actions-menu",
57
39
  "aria-haspopup": "true",
58
40
  "data-cy": "actions-menu-icon",
59
41
  onClick: onOpen,
60
42
  size: size,
61
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_MoreHoriz.default, {})
62
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_Menu.default, {
43
+ children: /*#__PURE__*/_jsx(MoreHorizIcon, {})
44
+ }), /*#__PURE__*/_jsx(Menu, {
63
45
  id: "actions-menu",
64
46
  "data-cy": "actions-menu",
65
47
  anchorEl: anchorEl,
@@ -76,42 +58,43 @@ function Actions(_ref) {
76
58
  });
77
59
  }
78
60
  const {
79
- icon,
80
- text,
81
- onClick: _onClick,
82
- disabled = false
83
- } = action,
84
- opts = _objectWithoutProperties(action, _excluded2);
85
- return /*#__PURE__*/(0, _react.createElement)(_MenuItem.default, _objectSpread(_objectSpread({}, opts), {}, {
61
+ icon,
62
+ text,
63
+ onClick,
64
+ disabled = false,
65
+ ...opts
66
+ } = action;
67
+ return /*#__PURE__*/_createElement(MenuItem, {
68
+ ...opts,
86
69
  disabled: disabled,
87
70
  dense: true,
88
71
  onClick: async e => {
89
- await _onClick(e);
72
+ await onClick(e);
90
73
  onClose();
91
74
  }
92
75
  // eslint-disable-next-line react/no-array-index-key
93
76
  ,
94
77
  key: index,
95
- "data-cy": "actions-menu-".concat(index)
96
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ListItemIcon.default, {
78
+ "data-cy": `actions-menu-${index}`
79
+ }, /*#__PURE__*/_jsx(ListItemIcon, {
97
80
  style: {
98
81
  minWidth: 24,
99
82
  marginRight: 8
100
83
  },
101
84
  children: icon
102
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_ListItemText.default, {
85
+ }), /*#__PURE__*/_jsx(ListItemText, {
103
86
  primary: text
104
87
  }));
105
88
  })
106
89
  })]
107
- }));
90
+ });
108
91
  }
109
92
  Actions.propTypes = {
110
- actions: _propTypes.default.array,
111
- size: _propTypes.default.oneOf(['small', 'medium', 'large'])
93
+ actions: PropTypes.array,
94
+ size: PropTypes.oneOf(['small', 'medium', 'large'])
112
95
  };
113
96
  Actions.defaultProps = {
114
97
  actions: [],
115
98
  size: 'small'
116
99
  };
117
- const Div = _styled.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral([""])));
100
+ const Div = styled.div``;
@@ -1,47 +1,34 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = InsightCard;
7
- var _propTypes = _interopRequireDefault(require("prop-types"));
8
- var _styled = _interopRequireDefault(require("@emotion/styled"));
9
- var _Card = _interopRequireDefault(require("@mui/material/Card"));
10
- var _CardContent = _interopRequireDefault(require("@mui/material/CardContent"));
11
- var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
12
- var _Box = _interopRequireDefault(require("@mui/material/Box"));
13
- var _jsxRuntime = require("react/jsx-runtime");
14
- var _templateObject;
15
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
- function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
17
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
18
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
19
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
20
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
21
- function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
22
- function InsightCard(_ref) {
23
- let {
24
- style,
25
- title,
26
- value,
27
- graph,
28
- description
29
- } = _ref;
30
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(StyledCard, {
31
- children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_CardContent.default, {
32
- style: _objectSpread({}, style),
33
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Typography.default, {
1
+ import PropTypes from 'prop-types';
2
+ import styled from '@emotion/styled';
3
+ import Card from '@mui/material/Card';
4
+ import CardContent from '@mui/material/CardContent';
5
+ import Typography from '@mui/material/Typography';
6
+ import Box from '@mui/material/Box';
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
8
+ export default function InsightCard({
9
+ style,
10
+ title,
11
+ value,
12
+ graph,
13
+ description
14
+ }) {
15
+ return /*#__PURE__*/_jsx(StyledCard, {
16
+ children: /*#__PURE__*/_jsxs(CardContent, {
17
+ style: {
18
+ ...style
19
+ },
20
+ children: [/*#__PURE__*/_jsx(Typography, {
34
21
  sx: {
35
22
  fontSize: 14
36
23
  },
37
24
  color: "text.secondary",
38
25
  children: title
39
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_Typography.default, {
26
+ }), /*#__PURE__*/_jsx(Typography, {
40
27
  variant: "h5",
41
28
  component: "div",
42
29
  mt: 1,
43
30
  children: value
44
- }), graph, !!description && /*#__PURE__*/(0, _jsxRuntime.jsx)(_Box.default, {
31
+ }), graph, !!description && /*#__PURE__*/_jsx(Box, {
45
32
  display: "flex",
46
33
  sx: {
47
34
  fontSize: 12,
@@ -54,11 +41,11 @@ function InsightCard(_ref) {
54
41
  });
55
42
  }
56
43
  InsightCard.propTypes = {
57
- style: _propTypes.default.object,
58
- title: _propTypes.default.node,
59
- value: _propTypes.default.node,
60
- graph: _propTypes.default.node,
61
- description: _propTypes.default.any
44
+ style: PropTypes.object,
45
+ title: PropTypes.node,
46
+ value: PropTypes.node,
47
+ graph: PropTypes.node,
48
+ description: PropTypes.any
62
49
  };
63
50
  InsightCard.defaultProps = {
64
51
  style: {},
@@ -67,4 +54,38 @@ InsightCard.defaultProps = {
67
54
  graph: null,
68
55
  description: null
69
56
  };
70
- const StyledCard = (0, _styled.default)(_Card.default)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .card-content {\n height: 150px;\n }\n\n .card-sparkline {\n flex: 2;\n display: flex;\n position: relative;\n *[hidden] {\n display: none;\n }\n }\n .sparkline {\n stroke: ", ";\n fill: ", "1A;\n }\n .tooltip {\n position: absolute;\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n padding: 2px 5px;\n font-size: 12px;\n white-space: nowrap;\n z-index: 9999;\n }\n .sparkline--cursor {\n stroke: orange;\n }\n\n .sparkline--spot {\n fill: red;\n stroke: red;\n }\n"])), props => props.theme.palette.primary.main, props => props.theme.palette.primary.main);
57
+ const StyledCard = styled(Card)`
58
+ .card-content {
59
+ height: 150px;
60
+ }
61
+
62
+ .card-sparkline {
63
+ flex: 2;
64
+ display: flex;
65
+ position: relative;
66
+ *[hidden] {
67
+ display: none;
68
+ }
69
+ }
70
+ .sparkline {
71
+ stroke: ${props => props.theme.palette.primary.main};
72
+ fill: ${props => props.theme.palette.primary.main}1A;
73
+ }
74
+ .tooltip {
75
+ position: absolute;
76
+ background: rgba(0, 0, 0, 0.7);
77
+ color: #fff;
78
+ padding: 2px 5px;
79
+ font-size: 12px;
80
+ white-space: nowrap;
81
+ z-index: 9999;
82
+ }
83
+ .sparkline--cursor {
84
+ stroke: orange;
85
+ }
86
+
87
+ .sparkline--spot {
88
+ fill: red;
89
+ stroke: red;
90
+ }
91
+ `;
@@ -1,36 +1,21 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = InsightChart;
7
- var _react = _interopRequireWildcard(require("react"));
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
- var _ahooks = require("ahooks");
10
- var _Sparkline = _interopRequireDefault(require("@arcblock/ux/lib/Sparkline"));
11
- var _card = _interopRequireDefault(require("./card"));
12
- var _jsxRuntime = require("react/jsx-runtime");
13
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
15
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
16
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
17
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
18
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
19
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
20
- function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
21
- function InsightChart(_ref) {
22
- let {
23
- id,
24
- title,
25
- current,
26
- description,
27
- data,
28
- dateFn,
29
- valueFn
30
- } = _ref;
31
- const svgRef = (0, _react.useRef)(null);
32
- const tooltipRef = (0, _react.useRef)(null);
33
- const tooltipState = (0, _ahooks.useReactive)({
1
+ import React, { useEffect, useState, useRef } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { useSize, useReactive } from 'ahooks';
4
+ import Sparkline from '@arcblock/ux/lib/Sparkline';
5
+ import Card from './card';
6
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
7
+ export default function InsightChart({
8
+ id,
9
+ title,
10
+ current,
11
+ description,
12
+ data,
13
+ dateFn,
14
+ valueFn
15
+ }) {
16
+ const svgRef = useRef(null);
17
+ const tooltipRef = useRef(null);
18
+ const tooltipState = useReactive({
34
19
  style: {
35
20
  top: 0,
36
21
  left: 0
@@ -38,15 +23,15 @@ function InsightChart(_ref) {
38
23
  hidden: true,
39
24
  textContent: ''
40
25
  });
41
- const [container, setContainer] = (0, _react.useState)(null);
42
- const size = (0, _ahooks.useSize)(container);
26
+ const [container, setContainer] = useState(null);
27
+ const size = useSize(container);
43
28
  const sparklineOptions = {
44
29
  onmousemove(e, dataPoint) {
45
30
  const {
46
31
  date,
47
32
  value
48
33
  } = dataPoint;
49
- tooltipState.textContent = "".concat(dateFn(date), ": ").concat(valueFn(value));
34
+ tooltipState.textContent = `${dateFn(date)}: ${valueFn(value)}`;
50
35
  tooltipState.style.top = -30;
51
36
  tooltipState.style.left = 80;
52
37
  tooltipState.hidden = false;
@@ -55,36 +40,38 @@ function InsightChart(_ref) {
55
40
  tooltipState.hidden = true;
56
41
  }
57
42
  };
58
- (0, _react.useEffect)(() => {
43
+ useEffect(() => {
59
44
  setTimeout(() => {
60
- setContainer(document.querySelector(".".concat(id)));
45
+ setContainer(document.querySelector(`.${id}`));
61
46
  setTimeout(() => {
62
47
  if (svgRef.current) {
63
- (0, _Sparkline.default)(svgRef.current, data || [], sparklineOptions);
48
+ Sparkline(svgRef.current, data || [], sparklineOptions);
64
49
  }
65
50
  }, 400);
66
51
  });
67
52
  }, [data]); // eslint-disable-line react-hooks/exhaustive-deps
68
53
 
69
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_card.default, {
54
+ return /*#__PURE__*/_jsx(Card, {
70
55
  title: title,
71
56
  value: current,
72
- graph: /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
73
- className: "card-sparkline ".concat(id),
57
+ graph: /*#__PURE__*/_jsxs("div", {
58
+ className: `card-sparkline ${id}`,
74
59
  style: {
75
60
  marginTop: 16
76
61
  },
77
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("svg", {
62
+ children: [/*#__PURE__*/_jsx("svg", {
78
63
  ref: svgRef,
79
64
  className: "sparkline",
80
- width: (size === null || size === void 0 ? void 0 : size.width) || 100,
65
+ width: size?.width || 100,
81
66
  height: 30,
82
67
  strokeWidth: "2"
83
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
68
+ }), /*#__PURE__*/_jsx("span", {
84
69
  className: "tooltip",
85
70
  ref: tooltipRef,
86
71
  hidden: tooltipState.hidden,
87
- style: _objectSpread({}, tooltipState.style),
72
+ style: {
73
+ ...tooltipState.style
74
+ },
88
75
  children: tooltipState.textContent
89
76
  })]
90
77
  }),
@@ -92,13 +79,13 @@ function InsightChart(_ref) {
92
79
  });
93
80
  }
94
81
  InsightChart.propTypes = {
95
- id: _propTypes.default.string.isRequired,
96
- title: _propTypes.default.string.isRequired,
97
- current: _propTypes.default.any.isRequired,
98
- description: _propTypes.default.any,
99
- data: _propTypes.default.array,
100
- dateFn: _propTypes.default.func,
101
- valueFn: _propTypes.default.func
82
+ id: PropTypes.string.isRequired,
83
+ title: PropTypes.string.isRequired,
84
+ current: PropTypes.any.isRequired,
85
+ description: PropTypes.any,
86
+ data: PropTypes.array,
87
+ dateFn: PropTypes.func,
88
+ valueFn: PropTypes.func
102
89
  };
103
90
  InsightChart.defaultProps = {
104
91
  description: null,
@@ -1,41 +1,33 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = CpuMonitor;
7
- var _react = require("react");
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
- var _context = require("@arcblock/ux/lib/Locale/context");
10
- var _chart = _interopRequireDefault(require("./chart"));
11
- var _util = require("../util");
12
- var _jsxRuntime = require("react/jsx-runtime");
13
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
- const formatNumber = x => "".concat(x, "%");
15
- function CpuMonitor(_ref) {
16
- let {
17
- cpus,
18
- currentLoad,
19
- history
20
- } = _ref;
1
+ import { useContext } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { LocaleContext } from '@arcblock/ux/lib/Locale/context';
4
+ import Chart from './chart';
5
+ import { formatTime } from '../util';
6
+ import { jsx as _jsx } from "react/jsx-runtime";
7
+ const formatNumber = x => `${x}%`;
8
+ export default function CpuMonitor({
9
+ cpus,
10
+ currentLoad,
11
+ history
12
+ }) {
21
13
  const {
22
14
  t,
23
15
  locale
24
- } = (0, _react.useContext)(_context.LocaleContext);
25
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_chart.default, {
16
+ } = useContext(LocaleContext);
17
+ return /*#__PURE__*/_jsx(Chart, {
26
18
  id: "cpu-sparkline",
27
19
  title: t('common.cpu'),
28
- current: "".concat(Math.floor(currentLoad || 0), "%"),
20
+ current: `${Math.floor(currentLoad || 0)}%`,
29
21
  data: history,
30
- description: "".concat(t('system.cores'), ": ").concat((cpus === null || cpus === void 0 ? void 0 : cpus.length) || 0),
31
- dateFn: v => (0, _util.formatTime)(v, 'HH:mm:ss', locale),
22
+ description: `${t('system.cores')}: ${cpus?.length || 0}`,
23
+ dateFn: v => formatTime(v, 'HH:mm:ss', locale),
32
24
  valueFn: formatNumber
33
25
  });
34
26
  }
35
27
  CpuMonitor.propTypes = {
36
- cpus: _propTypes.default.array,
37
- currentLoad: _propTypes.default.number,
38
- history: _propTypes.default.array
28
+ cpus: PropTypes.array,
29
+ currentLoad: PropTypes.number,
30
+ history: PropTypes.array
39
31
  };
40
32
  CpuMonitor.defaultProps = {
41
33
  cpus: [],
@@ -1,26 +1,14 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = DiskMonitor;
7
- var _react = require("react");
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
- var _styles = require("@mui/styles");
10
- var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
11
- var _LinearProgress = _interopRequireDefault(require("@mui/material/LinearProgress"));
12
- var _Box = _interopRequireDefault(require("@mui/material/Box"));
13
- var _context = require("@arcblock/ux/lib/Locale/context");
14
- var _card = _interopRequireDefault(require("./card"));
15
- var _index = require("../util/index");
16
- var _jsxRuntime = require("react/jsx-runtime");
17
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
18
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
19
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
20
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
21
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
22
- function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
23
- const BorderLinearProgress = (0, _styles.withStyles)(theme => ({
1
+ import { useContext } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { withStyles } from '@mui/styles';
4
+ import Typography from '@mui/material/Typography';
5
+ import LinearProgress from '@mui/material/LinearProgress';
6
+ import Box from '@mui/material/Box';
7
+ import { LocaleContext } from '@arcblock/ux/lib/Locale/context';
8
+ import Card from './card';
9
+ import { filesize } from '../util/index';
10
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
11
+ const BorderLinearProgress = withStyles(theme => ({
24
12
  root: {
25
13
  height: 10
26
14
  },
@@ -30,70 +18,70 @@ const BorderLinearProgress = (0, _styles.withStyles)(theme => ({
30
18
  bar: {
31
19
  backgroundColor: theme.palette.secondary.main
32
20
  }
33
- }))(_LinearProgress.default);
21
+ }))(LinearProgress);
34
22
  function LinearProgressWithLabel(props) {
35
23
  const {
36
24
  value
37
25
  } = props;
38
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Box.default, {
26
+ return /*#__PURE__*/_jsxs(Box, {
39
27
  display: "flex",
40
28
  alignItems: "center",
41
29
  mt: 2,
42
- children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_Box.default, {
30
+ children: [/*#__PURE__*/_jsx(Box, {
43
31
  width: "100%",
44
32
  style: {
45
33
  overflow: 'hidden'
46
34
  },
47
35
  mr: 1,
48
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(BorderLinearProgress, _objectSpread({
49
- variant: "determinate"
50
- }, props))
51
- }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_Box.default, {
36
+ children: /*#__PURE__*/_jsx(BorderLinearProgress, {
37
+ variant: "determinate",
38
+ ...props
39
+ })
40
+ }), /*#__PURE__*/_jsx(Box, {
52
41
  minWidth: 35,
53
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Typography.default, {
42
+ children: /*#__PURE__*/_jsx(Typography, {
54
43
  variant: "body2",
55
44
  color: "textSecondary",
56
- children: "".concat(Math.round(value), "%")
45
+ children: `${Math.round(value)}%`
57
46
  })
58
47
  })]
59
48
  });
60
49
  }
61
50
  LinearProgressWithLabel.propTypes = {
62
- value: _propTypes.default.number.isRequired
51
+ value: PropTypes.number.isRequired
63
52
  };
64
- function DiskMonitor(_ref) {
65
- let {
66
- disk
67
- } = _ref;
53
+ export default function DiskMonitor({
54
+ disk
55
+ }) {
68
56
  const {
69
57
  t
70
- } = (0, _react.useContext)(_context.LocaleContext);
58
+ } = useContext(LocaleContext);
71
59
  const metrics = [{
72
60
  id: 1,
73
61
  className: 'used',
74
62
  title: t('system.used'),
75
- metric: (0, _index.filesize)(disk.used)
63
+ metric: filesize(disk.used)
76
64
  }, {
77
65
  id: 2,
78
66
  className: 'free',
79
67
  title: t('system.free'),
80
- metric: (0, _index.filesize)(disk.free)
68
+ metric: filesize(disk.free)
81
69
  }, {
82
70
  id: 3,
83
71
  className: 'total',
84
72
  title: t('system.total'),
85
- metric: (0, _index.filesize)(disk.total)
73
+ metric: filesize(disk.total)
86
74
  }];
87
- return /*#__PURE__*/(0, _jsxRuntime.jsx)(_card.default, {
88
- title: "".concat(t('common.disk'), " (").concat(disk.device, ")"),
89
- value: (0, _index.filesize)(disk.used),
90
- graph: /*#__PURE__*/(0, _jsxRuntime.jsx)(_Box.default, {
75
+ return /*#__PURE__*/_jsx(Card, {
76
+ title: `${t('common.disk')} (${disk.device})`,
77
+ value: filesize(disk.used),
78
+ graph: /*#__PURE__*/_jsx(Box, {
91
79
  mt: 3,
92
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)(LinearProgressWithLabel, {
80
+ children: /*#__PURE__*/_jsx(LinearProgressWithLabel, {
93
81
  value: disk.used / disk.total * 100
94
82
  })
95
83
  }),
96
- description: metrics.map((x, index) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Box.default, {
84
+ description: metrics.map((x, index) => /*#__PURE__*/_jsxs(Box, {
97
85
  sx: {
98
86
  marginLeft: index === 0 ? 0 : 2
99
87
  },
@@ -102,11 +90,11 @@ function DiskMonitor(_ref) {
102
90
  });
103
91
  }
104
92
  DiskMonitor.propTypes = {
105
- disk: _propTypes.default.shape({
106
- used: _propTypes.default.number,
107
- free: _propTypes.default.number,
108
- total: _propTypes.default.number,
109
- device: _propTypes.default.string
93
+ disk: PropTypes.shape({
94
+ used: PropTypes.number,
95
+ free: PropTypes.number,
96
+ total: PropTypes.number,
97
+ device: PropTypes.string
110
98
  })
111
99
  };
112
100
  DiskMonitor.defaultProps = {