@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.
- package/lib/actions.js +39 -56
- package/lib/analytics/card.js +62 -41
- package/lib/analytics/chart.js +40 -53
- package/lib/analytics/cpu.js +20 -28
- package/lib/analytics/disk.js +40 -52
- package/lib/analytics/memory.js +28 -37
- package/lib/analytics/runtime.js +40 -52
- package/lib/analytics/traffic.js +87 -98
- package/lib/blocklet/access/config-access.js +109 -106
- package/lib/blocklet/access/index.js +96 -102
- package/lib/blocklet/actions.js +312 -332
- package/lib/blocklet/add-cert.js +57 -73
- package/lib/blocklet/agreement-app.js +13 -23
- package/lib/blocklet/agreement.js +126 -58
- package/lib/blocklet/app-avatar.js +19 -35
- package/lib/blocklet/audit-logs.js +139 -98
- package/lib/blocklet/authentication/common-settings.js +88 -104
- package/lib/blocklet/authentication/federated/federated-detail-dialog.js +57 -66
- package/lib/blocklet/authentication/federated/federated-invite-dialog.js +29 -39
- package/lib/blocklet/authentication/federated/federated-join-dialog.js +36 -45
- package/lib/blocklet/authentication/federated/federated-site-list.js +73 -87
- package/lib/blocklet/authentication/federated/index.js +35 -48
- package/lib/blocklet/authentication/index.js +27 -34
- package/lib/blocklet/authentication/oauth/apple.js +125 -152
- package/lib/blocklet/authentication/oauth/auth0.js +93 -114
- package/lib/blocklet/authentication/oauth/drag-item.js +49 -57
- package/lib/blocklet/authentication/oauth/github.js +78 -96
- package/lib/blocklet/authentication/oauth/google.js +78 -96
- package/lib/blocklet/authentication/oauth/index.js +47 -61
- package/lib/blocklet/blocklet-source.js +23 -32
- package/lib/blocklet/bundle-avatar.js +26 -42
- package/{es/blocklet/component → lib/blocklet/component/add-component}/add-component-core.js +161 -237
- package/{es/blocklet/component → lib/blocklet/component/add-component}/add-component-dialog.js +2 -2
- package/lib/blocklet/component/add-component/step-connect.js +215 -0
- package/lib/blocklet/component/button.js +9 -20
- package/lib/blocklet/component/component-cell.js +141 -137
- package/lib/blocklet/component/component-info-dialog.js +94 -90
- package/lib/blocklet/component/configuration.js +56 -58
- package/lib/blocklet/component/delete.js +56 -66
- package/lib/blocklet/component/did-space/connect-to.js +100 -108
- package/lib/blocklet/component/did-space/connected.js +14 -21
- package/lib/blocklet/component/did-space/delete.js +31 -39
- package/lib/blocklet/component/did-space/disconnect.js +58 -69
- package/lib/blocklet/component/did-space/index.js +40 -47
- package/lib/blocklet/component/did-space/item.js +113 -78
- package/lib/blocklet/component/domain-list.js +211 -230
- package/lib/blocklet/component/environment.js +137 -92
- package/lib/blocklet/component/index.js +230 -222
- package/lib/blocklet/component/line.js +10 -18
- package/lib/blocklet/component/navigation/locale-tabs.js +64 -76
- package/lib/blocklet/component/navigation/navigation-actions.js +43 -51
- package/lib/blocklet/component/navigation/navigation-dialog.js +263 -299
- package/lib/blocklet/component/navigation/navigation-preview.js +44 -48
- package/lib/blocklet/component/navigation/simple-select.js +54 -70
- package/lib/blocklet/component/optional-component-cell.js +91 -55
- package/lib/blocklet/component/related-components-dialog.js +40 -50
- package/lib/blocklet/component/select-store.js +70 -74
- package/lib/blocklet/component/selected/index.js +72 -26
- package/lib/blocklet/component/setting.js +48 -62
- package/lib/blocklet/component/shorten-label.js +34 -0
- package/lib/blocklet/component/sortable-tree.js +49 -63
- package/lib/blocklet/component/space-connector.js +64 -78
- package/lib/blocklet/component/space-selector.js +65 -71
- package/lib/blocklet/component/start.js +42 -49
- package/lib/blocklet/component/step-actions.js +72 -37
- package/lib/blocklet/component/store-blocklet-list.js +93 -103
- package/lib/blocklet/component/switch-control.js +36 -42
- package/lib/blocklet/config-navigation.js +106 -134
- package/lib/blocklet/configuration.js +188 -171
- package/lib/blocklet/disk-info.js +26 -44
- package/lib/blocklet/icons.js +21 -28
- package/lib/blocklet/install-from-url.js +93 -107
- package/lib/blocklet/log.js +27 -43
- package/lib/blocklet/logo-uploader.js +76 -58
- package/lib/blocklet/migration.js +40 -50
- package/lib/blocklet/mode.js +12 -28
- package/lib/blocklet/notification/email.js +154 -186
- package/lib/blocklet/notification/index.js +20 -27
- package/lib/blocklet/overview.js +59 -60
- package/lib/blocklet/page-group.js +12 -28
- package/lib/blocklet/preferences/app-sk.js +54 -57
- package/lib/blocklet/preferences/index.js +100 -111
- package/lib/blocklet/publish/connect-store-button.js +112 -0
- package/lib/blocklet/publish/connect-store-list.js +51 -56
- package/lib/blocklet/publish/create-release.js +512 -392
- package/lib/blocklet/publish/index.js +42 -46
- package/lib/blocklet/publish/project-list.js +128 -106
- package/lib/blocklet/publish/release-list.js +98 -97
- package/lib/blocklet/publish/resource.js +186 -157
- package/lib/blocklet/publish/select-components.js +73 -68
- package/lib/blocklet/publish/tree.js +141 -109
- package/lib/blocklet/publish/wait-connect.js +64 -0
- package/lib/blocklet/purchase/common.js +37 -45
- package/lib/blocklet/purchase/component-purchase.js +74 -91
- package/lib/blocklet/purchase/index.js +3 -12
- package/lib/blocklet/resource-type.js +19 -36
- package/lib/blocklet/router/action/add-domain-alias.js +56 -67
- package/lib/blocklet/router/action/add-rule.js +63 -73
- package/lib/blocklet/router/action/config-routing-rule.js +84 -93
- package/lib/blocklet/router/action/delete-domain-alias.js +27 -34
- package/lib/blocklet/router/action/delete-rule.js +31 -39
- package/lib/blocklet/router/action/update-rule.js +66 -76
- package/lib/blocklet/router/add-domain.js +113 -131
- package/lib/blocklet/router/dns-tip.js +40 -57
- package/lib/blocklet/router/domain-actions.js +52 -67
- package/lib/blocklet/router/domain-status.js +27 -35
- package/lib/blocklet/router/rule-actions.js +45 -60
- package/lib/blocklet/router/rule-list.js +83 -92
- package/lib/blocklet/router/util.js +30 -46
- package/lib/blocklet/runtime-info.js +30 -48
- package/lib/blocklet/status.js +37 -52
- package/lib/blocklet/storage/action.js +59 -76
- package/lib/blocklet/storage/auto-backup.js +23 -31
- package/lib/blocklet/storage/auto-check-update.js +28 -42
- package/lib/blocklet/storage/backups.js +50 -60
- package/lib/blocklet/storage/connect-to.js +100 -106
- package/lib/blocklet/storage/connected.js +35 -40
- package/lib/blocklet/storage/delete.js +34 -42
- package/lib/blocklet/storage/disconnect.js +65 -76
- package/lib/blocklet/storage/index.js +9 -16
- package/lib/blocklet/storage/item.js +193 -153
- package/lib/blocklet/storage/preview-nft.js +74 -87
- package/lib/blocklet/transfer-owner.js +70 -74
- package/lib/blocklet/types.js +12 -18
- package/lib/blocklet/util.js +38 -55
- package/lib/blocklet/version.js +59 -69
- package/lib/card-selector.js +63 -39
- package/lib/certificate.js +35 -43
- package/lib/chain.js +3 -10
- package/lib/clear-cache.js +28 -44
- package/lib/click-to-copy.js +15 -31
- package/lib/confirm.js +72 -84
- package/lib/contexts/audit-log.js +30 -41
- package/lib/contexts/blocklet-storage.js +56 -65
- package/lib/contexts/blocklet.js +5 -13
- package/lib/contexts/config-space.js +34 -42
- package/lib/contexts/deleting-blocklets.js +18 -26
- package/lib/contexts/domain.js +20 -30
- package/lib/contexts/node.js +8 -20
- package/lib/contexts/session.js +5 -17
- package/lib/contexts/team.js +5 -13
- package/lib/delete-confirm.js +53 -60
- package/lib/did-address.js +24 -39
- package/lib/dot.js +9 -12
- package/lib/empty-spinner.js +15 -31
- package/lib/exchange-passport.js +30 -42
- package/lib/form/form-autocomplete-input.js +101 -117
- package/lib/form/form-select-input.js +69 -87
- package/lib/form/form-text-input.js +59 -75
- package/lib/form/form-wrapper.js +88 -12
- package/lib/form/input-triggers.js +39 -47
- package/lib/form/required.js +8 -12
- package/lib/hooks/blocklet.js +83 -106
- package/lib/hooks/confirm.js +31 -47
- package/lib/hooks/mobile-width.js +5 -12
- package/lib/hooks/url-evaluation.js +37 -50
- package/lib/hooks/use-app-logo.js +17 -27
- package/lib/hooks/use-auto-backup.js +15 -25
- package/lib/hooks/use-auto-check-update.js +15 -25
- package/lib/hooks/use-backup-progress.js +19 -30
- package/lib/hooks/use-backups.js +22 -30
- package/lib/hooks/use-blocklet-info-for-connect-did-spaces.js +17 -26
- package/lib/hooks/use-bundle-logo.js +13 -22
- package/lib/hooks/use-check-update-by-url.js +12 -20
- package/lib/hooks/use-components-by-blocklet-meta-url.js +11 -17
- package/lib/hooks/use-event-listen.js +4 -10
- package/lib/hooks/use-install-component-by-url.js +20 -29
- package/lib/hooks/use-mobile.js +9 -16
- package/lib/hooks/use-navigation.js +66 -74
- package/lib/hooks/use-passport-id.js +1 -7
- package/lib/hooks/use-snackbar.js +2 -8
- package/lib/hooks/use-space-gateways.js +21 -29
- package/lib/hooks/use-storage-endpoint.js +8 -13
- package/lib/hooks/use-subscription.js +8 -14
- package/lib/hooks/use-width.js +5 -12
- package/lib/images.js +31 -34
- package/lib/index.js +3 -20
- package/lib/invitation/invitation-app.js +42 -35
- package/lib/invitation/invitation-login.js +51 -29
- package/lib/invitation/invitation-passport.js +76 -48
- package/lib/invitation/invitation-receive.js +81 -66
- package/lib/invitation/invitation-success.js +51 -41
- package/lib/invitation/invitation-user.js +48 -38
- package/lib/invitation/invitation.js +69 -63
- package/lib/issue-passport.js +64 -53
- package/lib/launch-blocklet/content-layout.js +54 -29
- package/lib/launch-blocklet/page-header.js +29 -24
- package/lib/layout/addon.js +72 -56
- package/lib/layout/feedback.js +25 -25
- package/lib/locales/ar.js +14 -18
- package/lib/locales/de.js +15 -19
- package/lib/locales/en.js +19 -23
- package/lib/locales/es.js +14 -18
- package/lib/locales/fr.js +14 -18
- package/lib/locales/hi.js +14 -18
- package/lib/locales/i18n.db +0 -0
- package/lib/locales/id.js +14 -18
- package/lib/locales/index.js +19 -27
- package/lib/locales/ja.js +14 -18
- package/lib/locales/ko.js +14 -18
- package/lib/locales/pt.js +14 -18
- package/lib/locales/ru.js +13 -17
- package/lib/locales/th.js +13 -17
- package/lib/locales/vi.js +14 -18
- package/lib/locales/zh-tw.js +28 -32
- package/lib/locales/zh.js +26 -30
- package/lib/logs/clock.js +7 -14
- package/lib/logs/download.js +45 -53
- package/lib/logs/log-terminal.js +145 -84
- package/lib/lost-passport.js +226 -110
- package/lib/nav-logo.js +157 -60
- package/lib/notifications/addon.js +34 -43
- package/lib/notifications/default-icon-variants.js +23 -31
- package/lib/notifications/list.js +122 -89
- package/lib/notifications/notification.js +64 -56
- package/lib/notifications/page.js +151 -104
- package/lib/notifications/tag.js +12 -28
- package/lib/passport-tag.js +31 -32
- package/lib/permission.js +19 -32
- package/lib/relative-time.js +25 -39
- package/lib/result-message.js +11 -13
- package/lib/schema-form/color-input.js +24 -32
- package/lib/schema-form/common-prop-types.js +10 -17
- package/lib/schema-form/index.js +75 -89
- package/lib/schema-form/passport-input.js +28 -42
- package/lib/schema-form/text-input.js +20 -35
- package/lib/store/add.js +50 -58
- package/lib/store/connect-actions.js +46 -54
- package/lib/store/delete.js +35 -43
- package/lib/store/item.js +124 -136
- package/lib/subscription/blocklet.js +76 -90
- package/lib/subscription/chip-label.js +15 -23
- package/lib/subscription/server.js +83 -96
- package/lib/table-icons.js +33 -40
- package/lib/table.js +52 -12
- package/lib/tag.js +14 -30
- package/lib/team/members/actions.js +68 -82
- package/lib/team/members/connections.js +11 -19
- package/lib/team/members/index.js +289 -189
- package/lib/team/members/invitations.js +45 -55
- package/lib/team/members/invite-member.js +69 -76
- package/lib/team/members/issue-passport.js +54 -62
- package/lib/team/members/member.js +154 -142
- package/lib/team/members/passport-issuances.js +65 -61
- package/lib/team/members/passport-item.js +63 -55
- package/lib/team/members/passports.js +110 -115
- package/lib/team/members/toggle-user-approval.js +34 -42
- package/lib/team/members/transfer-node.js +78 -85
- package/lib/team/members/util.js +6 -12
- package/lib/team/passports/color.js +53 -61
- package/lib/team/passports/detail.js +136 -97
- package/lib/team/passports/index.js +117 -98
- package/lib/team/passports/mutate-role.js +50 -58
- package/lib/team/passports/trusted-factories.js +88 -93
- package/lib/team/passports/trusted-factory.js +99 -100
- package/lib/team/passports/trusted-issuer.js +92 -96
- package/lib/team/passports/trusted-issuers.js +88 -93
- package/lib/team/search-input.js +45 -36
- package/lib/team/styles/dialog.js +71 -11
- package/lib/team/styles/list-header.js +30 -11
- package/lib/util/api.js +5 -18
- package/lib/util/constants.js +3 -10
- package/lib/util/index.js +215 -324
- package/lib/util/join-url-keep-search.js +3 -10
- package/lib/util/mode.js +1 -7
- package/lib/util/parse-progress.js +1 -7
- package/lib/util/space-gateway.js +16 -23
- package/lib/util/spaces.js +48 -72
- package/lib/util/storage-ttl.js +4 -15
- package/lib/who-can-access/config.js +11 -18
- package/lib/wrap-locale.js +11 -18
- package/package.json +20 -100
- package/es/actions.js +0 -100
- package/es/analytics/card.js +0 -91
- package/es/analytics/chart.js +0 -95
- package/es/analytics/cpu.js +0 -36
- package/es/analytics/disk.js +0 -107
- package/es/analytics/memory.js +0 -70
- package/es/analytics/runtime.js +0 -174
- package/es/analytics/traffic.js +0 -257
- package/es/blocklet/access/config-access.js +0 -305
- package/es/blocklet/access/index.js +0 -215
- package/es/blocklet/actions.js +0 -536
- package/es/blocklet/add-cert.js +0 -193
- package/es/blocklet/agreement-app.js +0 -21
- package/es/blocklet/agreement.js +0 -214
- package/es/blocklet/app-avatar.js +0 -45
- package/es/blocklet/audit-logs.js +0 -275
- package/es/blocklet/authentication/common-settings.js +0 -133
- package/es/blocklet/authentication/federated/federated-detail-dialog.js +0 -193
- package/es/blocklet/authentication/federated/federated-invite-dialog.js +0 -82
- package/es/blocklet/authentication/federated/federated-join-dialog.js +0 -110
- package/es/blocklet/authentication/federated/federated-site-list.js +0 -319
- package/es/blocklet/authentication/federated/index.js +0 -79
- package/es/blocklet/authentication/index.js +0 -68
- package/es/blocklet/authentication/oauth/apple.js +0 -222
- package/es/blocklet/authentication/oauth/auth0.js +0 -170
- package/es/blocklet/authentication/oauth/drag-item.js +0 -177
- package/es/blocklet/authentication/oauth/github.js +0 -146
- package/es/blocklet/authentication/oauth/google.js +0 -145
- package/es/blocklet/authentication/oauth/index.js +0 -122
- package/es/blocklet/blocklet-source.js +0 -47
- package/es/blocklet/bundle-avatar.js +0 -64
- package/es/blocklet/component/button.js +0 -12
- package/es/blocklet/component/component-cell.js +0 -339
- package/es/blocklet/component/component-info-dialog.js +0 -257
- package/es/blocklet/component/configuration.js +0 -122
- package/es/blocklet/component/delete.js +0 -132
- package/es/blocklet/component/did-space/connect-to.js +0 -351
- package/es/blocklet/component/did-space/connected.js +0 -41
- package/es/blocklet/component/did-space/delete.js +0 -102
- package/es/blocklet/component/did-space/disconnect.js +0 -228
- package/es/blocklet/component/did-space/index.js +0 -74
- package/es/blocklet/component/did-space/item.js +0 -230
- package/es/blocklet/component/domain-list.js +0 -519
- package/es/blocklet/component/environment.js +0 -364
- package/es/blocklet/component/index.js +0 -545
- package/es/blocklet/component/line.js +0 -24
- package/es/blocklet/component/navigation/locale-tabs.js +0 -227
- package/es/blocklet/component/navigation/navigation-actions.js +0 -111
- package/es/blocklet/component/navigation/navigation-dialog.js +0 -608
- package/es/blocklet/component/navigation/navigation-preview.js +0 -108
- package/es/blocklet/component/navigation/simple-select.js +0 -123
- package/es/blocklet/component/optional-component-cell.js +0 -140
- package/es/blocklet/component/related-components-dialog.js +0 -194
- package/es/blocklet/component/select-store.js +0 -170
- package/es/blocklet/component/selected/index.js +0 -93
- package/es/blocklet/component/setting.js +0 -109
- package/es/blocklet/component/sortable-tree.js +0 -125
- package/es/blocklet/component/space-connector.js +0 -197
- package/es/blocklet/component/space-selector.js +0 -177
- package/es/blocklet/component/start.js +0 -101
- package/es/blocklet/component/step-actions.js +0 -98
- package/es/blocklet/component/store-blocklet-list.js +0 -227
- package/es/blocklet/component/switch-control.js +0 -57
- package/es/blocklet/config-navigation.js +0 -354
- package/es/blocklet/configuration.js +0 -589
- package/es/blocklet/disk-info.js +0 -74
- package/es/blocklet/icons.js +0 -22
- package/es/blocklet/install-from-url.js +0 -335
- package/es/blocklet/log.js +0 -90
- package/es/blocklet/logo-uploader.js +0 -133
- package/es/blocklet/migration.js +0 -148
- package/es/blocklet/mode.js +0 -19
- package/es/blocklet/notification/email.js +0 -342
- package/es/blocklet/notification/index.js +0 -48
- package/es/blocklet/overview.js +0 -158
- package/es/blocklet/page-group.js +0 -19
- package/es/blocklet/preferences/app-sk.js +0 -141
- package/es/blocklet/preferences/index.js +0 -304
- package/es/blocklet/publish/connect-store-list.js +0 -97
- package/es/blocklet/publish/create-release.js +0 -1059
- package/es/blocklet/publish/index.js +0 -69
- package/es/blocklet/publish/project-list.js +0 -399
- package/es/blocklet/publish/release-list.js +0 -351
- package/es/blocklet/publish/resource.js +0 -235
- package/es/blocklet/publish/select-components.js +0 -180
- package/es/blocklet/publish/tree.js +0 -237
- package/es/blocklet/purchase/common.js +0 -93
- package/es/blocklet/purchase/component-purchase.js +0 -235
- package/es/blocklet/purchase/index.js +0 -4
- package/es/blocklet/resource-type.js +0 -34
- package/es/blocklet/router/action/add-domain-alias.js +0 -172
- package/es/blocklet/router/action/add-rule.js +0 -223
- package/es/blocklet/router/action/config-routing-rule.js +0 -283
- package/es/blocklet/router/action/delete-domain-alias.js +0 -97
- package/es/blocklet/router/action/delete-rule.js +0 -106
- package/es/blocklet/router/action/update-rule.js +0 -221
- package/es/blocklet/router/add-domain.js +0 -307
- package/es/blocklet/router/dns-tip.js +0 -103
- package/es/blocklet/router/domain-actions.js +0 -64
- package/es/blocklet/router/domain-status.js +0 -87
- package/es/blocklet/router/rule-actions.js +0 -65
- package/es/blocklet/router/rule-list.js +0 -203
- package/es/blocklet/router/util.js +0 -148
- package/es/blocklet/runtime-info.js +0 -67
- package/es/blocklet/status.js +0 -106
- package/es/blocklet/storage/action.js +0 -149
- package/es/blocklet/storage/auto-backup.js +0 -55
- package/es/blocklet/storage/auto-check-update.js +0 -69
- package/es/blocklet/storage/backups.js +0 -212
- package/es/blocklet/storage/connect-to.js +0 -353
- package/es/blocklet/storage/connected.js +0 -112
- package/es/blocklet/storage/delete.js +0 -112
- package/es/blocklet/storage/disconnect.js +0 -241
- package/es/blocklet/storage/index.js +0 -16
- package/es/blocklet/storage/item.js +0 -544
- package/es/blocklet/storage/preview-nft.js +0 -283
- package/es/blocklet/transfer-owner.js +0 -199
- package/es/blocklet/types.js +0 -18
- package/es/blocklet/util.js +0 -151
- package/es/blocklet/version.js +0 -139
- package/es/card-selector.js +0 -134
- package/es/certificate.js +0 -102
- package/es/chain.js +0 -13
- package/es/clear-cache.js +0 -77
- package/es/click-to-copy.js +0 -22
- package/es/confirm.js +0 -162
- package/es/contexts/audit-log.js +0 -152
- package/es/contexts/blocklet-storage.js +0 -247
- package/es/contexts/blocklet.js +0 -10
- package/es/contexts/config-space.js +0 -160
- package/es/contexts/deleting-blocklets.js +0 -70
- package/es/contexts/domain.js +0 -75
- package/es/contexts/node.js +0 -17
- package/es/contexts/session.js +0 -8
- package/es/contexts/team.js +0 -10
- package/es/delete-confirm.js +0 -120
- package/es/did-address.js +0 -46
- package/es/dot.js +0 -14
- package/es/empty-spinner.js +0 -24
- package/es/exchange-passport.js +0 -93
- package/es/form/form-autocomplete-input.js +0 -283
- package/es/form/form-select-input.js +0 -188
- package/es/form/form-text-input.js +0 -176
- package/es/form/form-wrapper.js +0 -88
- package/es/form/input-triggers.js +0 -96
- package/es/form/required.js +0 -8
- package/es/hooks/blocklet.js +0 -317
- package/es/hooks/confirm.js +0 -98
- package/es/hooks/mobile-width.js +0 -11
- package/es/hooks/url-evaluation.js +0 -155
- package/es/hooks/use-app-logo.js +0 -32
- package/es/hooks/use-auto-backup.js +0 -33
- package/es/hooks/use-auto-check-update.js +0 -33
- package/es/hooks/use-backup-progress.js +0 -65
- package/es/hooks/use-backups.js +0 -61
- package/es/hooks/use-blocklet-info-for-connect-did-spaces.js +0 -55
- package/es/hooks/use-bundle-logo.js +0 -27
- package/es/hooks/use-check-update-by-url.js +0 -28
- package/es/hooks/use-components-by-blocklet-meta-url.js +0 -36
- package/es/hooks/use-event-listen.js +0 -11
- package/es/hooks/use-install-component-by-url.js +0 -65
- package/es/hooks/use-mobile.js +0 -17
- package/es/hooks/use-navigation.js +0 -331
- package/es/hooks/use-passport-id.js +0 -18
- package/es/hooks/use-snackbar.js +0 -2
- package/es/hooks/use-space-gateways.js +0 -66
- package/es/hooks/use-storage-endpoint.js +0 -23
- package/es/hooks/use-subscription.js +0 -22
- package/es/hooks/use-width.js +0 -12
- package/es/icons/empty-space-nft.svg +0 -59
- package/es/icons/empty-spaces-nft.svg +0 -58
- package/es/icons/long-arrow.svg +0 -5
- package/es/icons/space-connected.svg +0 -3
- package/es/icons/space-disconnect.svg +0 -3
- package/es/images.js +0 -48
- package/es/index.js +0 -3
- package/es/invitation/invitation-app.js +0 -57
- package/es/invitation/invitation-login.js +0 -68
- package/es/invitation/invitation-passport.js +0 -144
- package/es/invitation/invitation-receive.js +0 -170
- package/es/invitation/invitation-success.js +0 -92
- package/es/invitation/invitation-user.js +0 -89
- package/es/invitation/invitation.js +0 -103
- package/es/issue-passport.js +0 -151
- package/es/launch-blocklet/content-layout.js +0 -58
- package/es/launch-blocklet/page-header.js +0 -42
- package/es/layout/addon.js +0 -119
- package/es/layout/feedback.js +0 -58
- package/es/locales/ar.js +0 -1825
- package/es/locales/de.js +0 -1825
- package/es/locales/en.js +0 -1815
- package/es/locales/es.js +0 -1825
- package/es/locales/fr.js +0 -1825
- package/es/locales/hi.js +0 -1825
- package/es/locales/i18n.db +0 -0
- package/es/locales/id.js +0 -1825
- package/es/locales/index.js +0 -20
- package/es/locales/ja.js +0 -1825
- package/es/locales/ko.js +0 -1825
- package/es/locales/pt.js +0 -1825
- package/es/locales/ru.js +0 -1825
- package/es/locales/th.js +0 -1825
- package/es/locales/vi.js +0 -1825
- package/es/locales/zh-tw.js +0 -1825
- package/es/locales/zh.js +0 -1832
- package/es/logs/clock.js +0 -11
- package/es/logs/download.js +0 -132
- package/es/logs/log-terminal.js +0 -253
- package/es/lost-passport.js +0 -501
- package/es/nav-logo.js +0 -217
- package/es/notifications/addon.js +0 -90
- package/es/notifications/default-icon-variants.js +0 -53
- package/es/notifications/list.js +0 -272
- package/es/notifications/notification.js +0 -147
- package/es/notifications/page.js +0 -314
- package/es/notifications/tag.js +0 -28
- package/es/passport-tag.js +0 -42
- package/es/permission.js +0 -57
- package/es/relative-time.js +0 -56
- package/es/result-message.js +0 -11
- package/es/schema-form/color-input.js +0 -97
- package/es/schema-form/common-prop-types.js +0 -13
- package/es/schema-form/index.js +0 -222
- package/es/schema-form/passport-input.js +0 -54
- package/es/schema-form/text-input.js +0 -57
- package/es/store/add.js +0 -178
- package/es/store/connect-actions.js +0 -139
- package/es/store/delete.js +0 -112
- package/es/store/item.js +0 -347
- package/es/subscription/blocklet.js +0 -175
- package/es/subscription/chip-label.js +0 -40
- package/es/subscription/server.js +0 -189
- package/es/table-icons.js +0 -34
- package/es/table.js +0 -52
- package/es/tag.js +0 -21
- package/es/team/members/actions.js +0 -143
- package/es/team/members/connections.js +0 -28
- package/es/team/members/index.js +0 -741
- package/es/team/members/invitations.js +0 -187
- package/es/team/members/invite-member.js +0 -206
- package/es/team/members/issue-passport.js +0 -150
- package/es/team/members/member.js +0 -394
- package/es/team/members/passport-issuances.js +0 -154
- package/es/team/members/passport-item.js +0 -103
- package/es/team/members/passports.js +0 -308
- package/es/team/members/toggle-user-approval.js +0 -123
- package/es/team/members/transfer-node.js +0 -255
- package/es/team/members/util.js +0 -14
- package/es/team/passports/color.js +0 -125
- package/es/team/passports/detail.js +0 -310
- package/es/team/passports/index.js +0 -289
- package/es/team/passports/mutate-role.js +0 -196
- package/es/team/passports/trusted-factories.js +0 -220
- package/es/team/passports/trusted-factory.js +0 -341
- package/es/team/passports/trusted-issuer.js +0 -293
- package/es/team/passports/trusted-issuers.js +0 -225
- package/es/team/search-input.js +0 -46
- package/es/team/styles/dialog.js +0 -72
- package/es/team/styles/list-header.js +0 -31
- package/es/util/api.js +0 -6
- package/es/util/constants.js +0 -3
- package/es/util/index.js +0 -691
- package/es/util/join-url-keep-search.js +0 -15
- package/es/util/mode.js +0 -4
- package/es/util/parse-progress.js +0 -10
- package/es/util/space-gateway.js +0 -51
- package/es/util/spaces.js +0 -235
- package/es/util/storage-ttl.js +0 -78
- package/es/who-can-access/config.js +0 -38
- package/es/wrap-locale.js +0 -15
- package/lib/blocklet/component/add-component-button.js +0 -57
- package/lib/blocklet/component/add-component-core.js +0 -1188
- package/lib/blocklet/component/add-component-dialog.js +0 -85
- /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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
|
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
|
|
31
|
+
} catch {}
|
|
51
32
|
setAnchorEl(null);
|
|
52
33
|
};
|
|
53
|
-
return /*#__PURE__*/(
|
|
54
|
-
|
|
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__*/(
|
|
62
|
-
}), /*#__PURE__*/(
|
|
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
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
return /*#__PURE__*/(
|
|
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
|
|
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":
|
|
96
|
-
}
|
|
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__*/(
|
|
85
|
+
}), /*#__PURE__*/_jsx(ListItemText, {
|
|
103
86
|
primary: text
|
|
104
87
|
}));
|
|
105
88
|
})
|
|
106
89
|
})]
|
|
107
|
-
})
|
|
90
|
+
});
|
|
108
91
|
}
|
|
109
92
|
Actions.propTypes = {
|
|
110
|
-
actions:
|
|
111
|
-
size:
|
|
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 =
|
|
100
|
+
const Div = styled.div``;
|
package/lib/analytics/card.js
CHANGED
|
@@ -1,47 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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__*/(
|
|
26
|
+
}), /*#__PURE__*/_jsx(Typography, {
|
|
40
27
|
variant: "h5",
|
|
41
28
|
component: "div",
|
|
42
29
|
mt: 1,
|
|
43
30
|
children: value
|
|
44
|
-
}), graph, !!description && /*#__PURE__*/(
|
|
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:
|
|
58
|
-
title:
|
|
59
|
-
value:
|
|
60
|
-
graph:
|
|
61
|
-
description:
|
|
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 = (
|
|
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
|
+
`;
|
package/lib/analytics/chart.js
CHANGED
|
@@ -1,36 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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] =
|
|
42
|
-
const size =
|
|
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 =
|
|
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
|
-
|
|
43
|
+
useEffect(() => {
|
|
59
44
|
setTimeout(() => {
|
|
60
|
-
setContainer(document.querySelector(
|
|
45
|
+
setContainer(document.querySelector(`.${id}`));
|
|
61
46
|
setTimeout(() => {
|
|
62
47
|
if (svgRef.current) {
|
|
63
|
-
(
|
|
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__*/(
|
|
54
|
+
return /*#__PURE__*/_jsx(Card, {
|
|
70
55
|
title: title,
|
|
71
56
|
value: current,
|
|
72
|
-
graph: /*#__PURE__*/(
|
|
73
|
-
className:
|
|
57
|
+
graph: /*#__PURE__*/_jsxs("div", {
|
|
58
|
+
className: `card-sparkline ${id}`,
|
|
74
59
|
style: {
|
|
75
60
|
marginTop: 16
|
|
76
61
|
},
|
|
77
|
-
children: [/*#__PURE__*/(
|
|
62
|
+
children: [/*#__PURE__*/_jsx("svg", {
|
|
78
63
|
ref: svgRef,
|
|
79
64
|
className: "sparkline",
|
|
80
|
-
width:
|
|
65
|
+
width: size?.width || 100,
|
|
81
66
|
height: 30,
|
|
82
67
|
strokeWidth: "2"
|
|
83
|
-
}), /*#__PURE__*/(
|
|
68
|
+
}), /*#__PURE__*/_jsx("span", {
|
|
84
69
|
className: "tooltip",
|
|
85
70
|
ref: tooltipRef,
|
|
86
71
|
hidden: tooltipState.hidden,
|
|
87
|
-
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:
|
|
96
|
-
title:
|
|
97
|
-
current:
|
|
98
|
-
description:
|
|
99
|
-
data:
|
|
100
|
-
dateFn:
|
|
101
|
-
valueFn:
|
|
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,
|
package/lib/analytics/cpu.js
CHANGED
|
@@ -1,41 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
} =
|
|
25
|
-
return /*#__PURE__*/(
|
|
16
|
+
} = useContext(LocaleContext);
|
|
17
|
+
return /*#__PURE__*/_jsx(Chart, {
|
|
26
18
|
id: "cpu-sparkline",
|
|
27
19
|
title: t('common.cpu'),
|
|
28
|
-
current:
|
|
20
|
+
current: `${Math.floor(currentLoad || 0)}%`,
|
|
29
21
|
data: history,
|
|
30
|
-
description:
|
|
31
|
-
dateFn: v =>
|
|
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:
|
|
37
|
-
currentLoad:
|
|
38
|
-
history:
|
|
28
|
+
cpus: PropTypes.array,
|
|
29
|
+
currentLoad: PropTypes.number,
|
|
30
|
+
history: PropTypes.array
|
|
39
31
|
};
|
|
40
32
|
CpuMonitor.defaultProps = {
|
|
41
33
|
cpus: [],
|
package/lib/analytics/disk.js
CHANGED
|
@@ -1,26 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
}))(
|
|
21
|
+
}))(LinearProgress);
|
|
34
22
|
function LinearProgressWithLabel(props) {
|
|
35
23
|
const {
|
|
36
24
|
value
|
|
37
25
|
} = props;
|
|
38
|
-
return /*#__PURE__*/(
|
|
26
|
+
return /*#__PURE__*/_jsxs(Box, {
|
|
39
27
|
display: "flex",
|
|
40
28
|
alignItems: "center",
|
|
41
29
|
mt: 2,
|
|
42
|
-
children: [/*#__PURE__*/(
|
|
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__*/(
|
|
49
|
-
variant: "determinate"
|
|
50
|
-
|
|
51
|
-
|
|
36
|
+
children: /*#__PURE__*/_jsx(BorderLinearProgress, {
|
|
37
|
+
variant: "determinate",
|
|
38
|
+
...props
|
|
39
|
+
})
|
|
40
|
+
}), /*#__PURE__*/_jsx(Box, {
|
|
52
41
|
minWidth: 35,
|
|
53
|
-
children: /*#__PURE__*/(
|
|
42
|
+
children: /*#__PURE__*/_jsx(Typography, {
|
|
54
43
|
variant: "body2",
|
|
55
44
|
color: "textSecondary",
|
|
56
|
-
children:
|
|
45
|
+
children: `${Math.round(value)}%`
|
|
57
46
|
})
|
|
58
47
|
})]
|
|
59
48
|
});
|
|
60
49
|
}
|
|
61
50
|
LinearProgressWithLabel.propTypes = {
|
|
62
|
-
value:
|
|
51
|
+
value: PropTypes.number.isRequired
|
|
63
52
|
};
|
|
64
|
-
function DiskMonitor(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
} = _ref;
|
|
53
|
+
export default function DiskMonitor({
|
|
54
|
+
disk
|
|
55
|
+
}) {
|
|
68
56
|
const {
|
|
69
57
|
t
|
|
70
|
-
} =
|
|
58
|
+
} = useContext(LocaleContext);
|
|
71
59
|
const metrics = [{
|
|
72
60
|
id: 1,
|
|
73
61
|
className: 'used',
|
|
74
62
|
title: t('system.used'),
|
|
75
|
-
metric:
|
|
63
|
+
metric: filesize(disk.used)
|
|
76
64
|
}, {
|
|
77
65
|
id: 2,
|
|
78
66
|
className: 'free',
|
|
79
67
|
title: t('system.free'),
|
|
80
|
-
metric:
|
|
68
|
+
metric: filesize(disk.free)
|
|
81
69
|
}, {
|
|
82
70
|
id: 3,
|
|
83
71
|
className: 'total',
|
|
84
72
|
title: t('system.total'),
|
|
85
|
-
metric:
|
|
73
|
+
metric: filesize(disk.total)
|
|
86
74
|
}];
|
|
87
|
-
return /*#__PURE__*/(
|
|
88
|
-
title:
|
|
89
|
-
value:
|
|
90
|
-
graph: /*#__PURE__*/(
|
|
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__*/(
|
|
80
|
+
children: /*#__PURE__*/_jsx(LinearProgressWithLabel, {
|
|
93
81
|
value: disk.used / disk.total * 100
|
|
94
82
|
})
|
|
95
83
|
}),
|
|
96
|
-
description: metrics.map((x, index) => /*#__PURE__*/(
|
|
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:
|
|
106
|
-
used:
|
|
107
|
-
free:
|
|
108
|
-
total:
|
|
109
|
-
device:
|
|
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 = {
|