You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by ki...@apache.org on 2020/07/28 06:53:30 UTC

[shardingsphere-elasticjob-ui] branch master updated (f5ba75e -> 705552b)

This is an automated email from the ASF dual-hosted git repository.

kimmking pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere-elasticjob-ui.git.


    from f5ba75e  Merge pull request #19 from cncounter/master
     new afeb612  Add history trace and status page
     new 25c2706  Refactor code
     new 68ea1a8  Add job history api
     new 705552b  Merge pull request #20 from menghaoranss/add-job-history

The 73 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:
 .../cloud/ui/config/BeanConfiguration.java         | 139 +++++++++++++++++++++
 .../cloud/ui/service/CloudServiceFactory.java      |  65 ----------
 .../ui/web/controller/CloudAppController.java      |  87 +++++++++----
 .../ui/web/controller/CloudJobController.java      |  72 ++++-------
 .../web/controller/search/JobEventRdbSearch.java   |   3 +
 .../cloud/ui/web/dto/CloudAppConfiguration.java    |  22 +++-
 .../conf/elasticjob-cloud-scheduler.properties     |  43 +++++++
 .../src/lang/en-US.js                              |  59 ++++++++-
 .../src/lang/zh-CN.js                              |  59 ++++++++-
 .../src/router/index.js                            |  12 ++
 .../src/views/app-config/module/appConfig.vue      |   6 -
 .../src/views/{login => history-status}/api.js     |   2 +-
 .../src/views/history-status/index.vue             |   0
 .../views/history-status/module/historyStatus.vue  |  54 ++++++++
 .../src/views/{login => history-trace}/api.js      |   2 +-
 .../src/views/history-trace/index.vue              |   0
 .../views/history-trace/module/historyTrace.vue    |  14 ++-
 .../src/views/login/index.vue                      |   4 +-
 18 files changed, 480 insertions(+), 163 deletions(-)
 create mode 100644 shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/config/BeanConfiguration.java
 delete mode 100644 shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/service/CloudServiceFactory.java
 copy shardingsphere-elasticjob-lite-ui/shardingsphere-elasticjob-lite-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/lite/ui/security/UserAccount.java => shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/dto/CloudAppConfiguration.java (66%)
 copy shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend/src/views/{login => history-status}/api.js (91%)
 copy {shardingsphere-elasticjob-lite-ui/shardingsphere-elasticjob-lite-ui-frontend => shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend}/src/views/history-status/index.vue (100%)
 copy {shardingsphere-elasticjob-lite-ui/shardingsphere-elasticjob-lite-ui-frontend => shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend}/src/views/history-status/module/historyStatus.vue (76%)
 copy shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend/src/views/{login => history-trace}/api.js (91%)
 copy {shardingsphere-elasticjob-lite-ui/shardingsphere-elasticjob-lite-ui-frontend => shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend}/src/views/history-trace/index.vue (100%)
 copy {shardingsphere-elasticjob-lite-ui/shardingsphere-elasticjob-lite-ui-frontend => shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-frontend}/src/views/history-trace/module/historyTrace.vue (93%)