You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/12/30 09:08:05 UTC

[apisix-dashboard] branch master updated (4317a5f -> 45d79b6)

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

juzhiyuan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git.


    from 4317a5f  fix: fetch code from master branch instead of v2.0 in Dockerfile (#1146)
     add 45d79b6  feat(FE): add global plugin (#1106)

No new revisions were added by this update.

Summary of changes:
 web/config/routes.ts                               |   8 +
 .../consumer/create_and_delete_consumer.spec.js    |   2 +
 web/src/components/Plugin/CodeMirrorDrawer.tsx     | 143 ------------
 web/src/components/Plugin/PluginDetail.tsx         | 242 ++++++++++++++++++++
 web/src/components/Plugin/PluginPage.tsx           | 245 ++++++++-------------
 web/src/components/Plugin/service.ts               |   4 +-
 .../PluginOrchestration/customConfig.tsx           |  10 +-
 web/src/components/PluginOrchestration/index.tsx   |  36 ++-
 web/src/components/PluginOrchestration/service.ts  |   4 +-
 web/src/constants.ts                               |   2 +
 web/src/helpers.tsx                                |  19 ++
 web/src/locales/en-US.ts                           |   2 +-
 web/src/locales/en-US/menu.ts                      |   1 +
 web/src/locales/zh-CN.ts                           |   2 +-
 web/src/locales/zh-CN/menu.ts                      |   1 +
 web/src/pages/Consumer/Create.tsx                  |  32 +--
 web/src/pages/Consumer/service.ts                  |   6 +
 web/src/pages/{Service => Plugin}/List.tsx         |  86 +++++---
 web/src/pages/Plugin/PluginMarket.tsx              |  61 +++++
 .../index.ts => Plugin/components/Step1.tsx}       |   0
 .../setting.ts => pages/Plugin/locales/en-US.ts}   |   0
 .../setting.ts => pages/Plugin/locales/zh-CN.ts}   |   0
 web/src/pages/{Upstream => Plugin}/service.ts      |  44 ++--
 .../Plugin}/typing.d.ts                            |  17 +-
 web/src/pages/Route/Create.tsx                     |   5 +-
 .../Route/components/CreateStep4/CreateStep4.tsx   |   2 +-
 26 files changed, 582 insertions(+), 392 deletions(-)
 delete mode 100644 web/src/components/Plugin/CodeMirrorDrawer.tsx
 create mode 100644 web/src/components/Plugin/PluginDetail.tsx
 copy web/src/pages/{Service => Plugin}/List.tsx (59%)
 create mode 100644 web/src/pages/Plugin/PluginMarket.tsx
 copy web/src/pages/{Route/index.ts => Plugin/components/Step1.tsx} (100%)
 copy web/src/{locales/zh-CN/setting.ts => pages/Plugin/locales/en-US.ts} (100%)
 copy web/src/{locales/zh-CN/setting.ts => pages/Plugin/locales/zh-CN.ts} (100%)
 copy web/src/pages/{Upstream => Plugin}/service.ts (54%)
 copy web/src/{components/PluginOrchestration => pages/Plugin}/typing.d.ts (82%)