You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by wa...@apache.org on 2022/01/12 08:57:36 UTC

[dolphinscheduler] branch dev updated (cb8c875 -> 455cede)

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

wangyizhi pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git.


    from cb8c875  [Feature-7804][Task] DingTalk alert plugin adds signature. (#7805)
     add 455cede  [Feature][UI Next] Add project list. (#7961)

No new revisions were added by this update.

Summary of changes:
 .../content/components/navbar/index.module.scss    |   2 +-
 .../layouts/content/components/sidebar/index.tsx   |   1 -
 .../src/locales/modules/en_US.ts                   |  25 +++
 .../src/locales/modules/zh_CN.ts                   |  25 +++
 .../src/router/modules/projects.ts                 |   2 +-
 .../src/service/modules/monitor/types.ts           |   1 -
 .../src/service/modules/projects/index.ts          |  14 +-
 .../src/service/modules/projects/types.ts          |  38 +++-
 dolphinscheduler-ui-next/src/views/home/types.ts   |   2 +-
 .../src/views/home/use-process-state.ts            |   2 +-
 .../src/views/home/use-table.ts                    |   2 +-
 .../src/views/home/use-task-state.ts               |   2 +-
 .../src/views/monitor/servers/master/index.tsx     |   4 +-
 .../src/views/monitor/servers/worker/index.tsx     |   6 +-
 .../src/views/monitor/servers/worker/use-worker.ts |   2 +-
 .../worker => project/list}/index.module.scss      |  45 +++--
 .../src/views/project/list/index.tsx               | 196 +++++++++++++++++++++
 .../src/views/project/list/project-modal.tsx       | 111 ++++++++++++
 .../src/views/project/list/table-action.tsx        | 145 +++++++++++++++
 .../views/{password => project/list}/use-form.ts   |  28 +--
 .../src/views/project/list/use-table.ts            | 112 ++++++++++++
 .../security/tenant/components/tenant-modal.tsx    |   8 +-
 .../src/views/security/tenant/index.tsx            |  45 ++++-
 .../src/views/security/tenant/use-table.ts         |  79 ++++-----
 24 files changed, 780 insertions(+), 117 deletions(-)
 copy dolphinscheduler-ui-next/src/views/{monitor/servers/worker => project/list}/index.module.scss (70%)
 create mode 100644 dolphinscheduler-ui-next/src/views/project/list/index.tsx
 create mode 100644 dolphinscheduler-ui-next/src/views/project/list/project-modal.tsx
 create mode 100644 dolphinscheduler-ui-next/src/views/project/list/table-action.tsx
 copy dolphinscheduler-ui-next/src/views/{password => project/list}/use-form.ts (66%)
 create mode 100644 dolphinscheduler-ui-next/src/views/project/list/use-table.ts