This is an automated email from the ASF dual-hosted git repository.
wu-sheng pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
from 6cdc434 overview: auto-flow card grid; metric catalog with longLabel
+ tooltip
new 488c91b setup: bff file-backed persistence (GET/POST /api/setup)
new 4c9be3b topbar: oap info chip with version, server timezone, health
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
apps/bff/src/config/schema.ts | 8 +
apps/bff/src/oap/info-routes.ts | 92 ++++++++++
apps/bff/src/server.ts | 7 +
apps/bff/src/setup/routes.ts | 120 ++++++++++++
apps/bff/src/setup/store.ts | 92 ++++++++++
apps/ui/src/api/client.ts | 33 +++-
apps/ui/src/components/shell/AppTopbar.vue | 105 ++++++++++-
apps/ui/src/composables/useOapInfo.ts | 100 ++++++++++
apps/ui/src/router/index.ts | 2 +-
apps/ui/src/stores/setup.ts | 167 +++++++++++++----
apps/ui/src/views/operate/ClusterStatusView.vue | 235 ++++++++++++++++++++++++
apps/ui/src/views/setup/LayerSetupCard.vue | 28 ++-
apps/ui/src/views/setup/SetupView.vue | 64 ++++++-
horizon.example.yaml | 6 +
packages/api-client/src/index.ts | 9 +
packages/api-client/src/oap-info.ts | 52 ++++++
packages/api-client/src/setup.ts | 68 +++++++
18 files changed, 1126 insertions(+), 63 deletions(-)
create mode 100644 apps/bff/src/oap/info-routes.ts
create mode 100644 apps/bff/src/setup/routes.ts
create mode 100644 apps/bff/src/setup/store.ts
create mode 100644 apps/ui/src/composables/useOapInfo.ts
create mode 100644 apps/ui/src/views/operate/ClusterStatusView.vue
create mode 100644 packages/api-client/src/oap-info.ts
create mode 100644 packages/api-client/src/setup.ts