This is an automated email from the ASF dual-hosted git repository.
qiuxiafan pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git.
from 7d170ce Merge pull request #2 from Fine0830/feat/dashboard
new 9cb8e2b feat: add selector module
new 1b30216 feat: add new dashboard
new b0f6194 feat: add axiosCancel
new f4c1c81 feat: add event stack
new 54f80fd feat: add router for dashboard
new 857bf37 fix: header
new 820abda Merge pull request #3 from Fine0830/feat/dashboard
The 16 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:
src/App.vue | 1 -
src/graph/fragments/{global.ts => app.ts} | 0
src/graph/fragments/{global.ts => selector.ts} | 18 +-
src/graph/index.ts | 5 +-
src/graph/query/{global.ts => app.ts} | 2 +-
.../{fragments/global.ts => query/selector.ts} | 14 +-
src/layout/components/NavBar.vue | 1 +
src/locales/lang/en.ts | 2 +
src/locales/lang/zh.ts | 2 +
src/router/dashboard.ts | 30 ++++
src/router/index.ts | 12 ++
src/shims-vue.d.ts | 8 +
src/store/modules/{app/index.ts => app.ts} | 31 +++-
src/store/modules/selectors.ts | 54 ++++++
src/styles/reset.scss | 2 +-
src/utils/cancelToken.ts | 4 +-
src/{App.vue => views/dashboard/Edit.vue} | 12 +-
src/views/dashboard/List.vue | 6 +-
src/views/dashboard/New.vue | 194 ++++++++++++++++++++-
src/views/dashboard/data.ts | 87 +++++++++
20 files changed, 442 insertions(+), 43 deletions(-)
copy src/graph/fragments/{global.ts => app.ts} (100%)
copy src/graph/fragments/{global.ts => selector.ts} (78%)
rename src/graph/query/{global.ts => app.ts} (93%)
rename src/graph/{fragments/global.ts => query/selector.ts} (79%)
rename src/store/modules/{app/index.ts => app.ts} (80%)
create mode 100644 src/store/modules/selectors.ts
copy src/{App.vue => views/dashboard/Edit.vue} (86%)
create mode 100644 src/views/dashboard/data.ts