This is an automated email from the ASF dual-hosted git repository.
mintsweet pushed a change to branch feat-3673
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
omit 1fa546a57 feat(config-ui): add a new page pipeline list
add 68baa7d45 fix(zentao): get all tasks ignore task's status (#6003)
new 3ad660599 refactor(config-ui): the content about pipeline
new 3cd719c96 feat(config-ui): add new page pipelines and pipeline
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (1fa546a57)
\
N -- N -- N refs/heads/feat-3673 (3cd719c96)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
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:
backend/plugins/zentao/tasks/task_collector.go | 1 +
config-ui/src/App.tsx | 6 +-
.../src/pages/blueprint/detail/status-panel.tsx | 68 ++++++---
config-ui/src/pages/index.ts | 1 -
config-ui/src/pages/pipeline/api.ts | 42 ------
.../src/pages/pipeline/components/cancel/index.tsx | 54 -------
.../pages/pipeline/components/context/index.tsx | 38 -----
config-ui/src/pages/pipeline/components/index.ts | 24 ---
.../src/pages/pipeline/components/info/styled.ts | 57 -------
.../src/pages/pipeline/components/rerun/index.tsx | 58 --------
.../src/pages/pipeline/components/status/index.tsx | 75 ----------
.../src/pages/pipeline/components/status/styled.ts | 39 -----
.../src/pages/pipeline/components/task/styled.ts | 80 ----------
.../src/pages/pipeline/components/tasks/styled.ts | 87 -----------
config-ui/src/pages/pipeline/index.ts | 20 ---
config-ui/src/pages/pipeline/types.ts | 56 -------
config-ui/src/pages/project/home/api.ts | 4 +-
config-ui/src/pages/project/home/index.tsx | 2 +-
config-ui/src/routes/pipeline/api.ts | 21 +++
.../pipeline/components/duration.tsx} | 14 +-
config-ui/src/routes/pipeline/components/index.ts | 6 +-
.../pipeline/components/info.tsx} | 74 +++++++---
.../routes/pipeline/components/pipeline-table.tsx | 103 -------------
.../components/{pipeline-status.tsx => status.tsx} | 0
.../pipeline/components/table.tsx} | 85 +++++------
.../pipeline/components/task.tsx} | 62 +++++---
.../pipeline/components/tasks.tsx} | 47 +++---
config-ui/src/routes/pipeline/index.ts | 2 +
.../pipeline/pipeline.tsx} | 25 ++--
config-ui/src/routes/pipeline/styled.ts | 163 +++++++++++++++++++++
config-ui/src/routes/pipeline/types.ts | 16 ++
31 files changed, 441 insertions(+), 889 deletions(-)
delete mode 100644 config-ui/src/pages/pipeline/api.ts
delete mode 100644 config-ui/src/pages/pipeline/components/cancel/index.tsx
delete mode 100644 config-ui/src/pages/pipeline/components/context/index.tsx
delete mode 100644 config-ui/src/pages/pipeline/components/index.ts
delete mode 100644 config-ui/src/pages/pipeline/components/info/styled.ts
delete mode 100644 config-ui/src/pages/pipeline/components/rerun/index.tsx
delete mode 100644 config-ui/src/pages/pipeline/components/status/index.tsx
delete mode 100644 config-ui/src/pages/pipeline/components/status/styled.ts
delete mode 100644 config-ui/src/pages/pipeline/components/task/styled.ts
delete mode 100644 config-ui/src/pages/pipeline/components/tasks/styled.ts
delete mode 100644 config-ui/src/pages/pipeline/index.ts
delete mode 100644 config-ui/src/pages/pipeline/types.ts
rename config-ui/src/{pages/pipeline/components/duration/index.tsx =>
routes/pipeline/components/duration.tsx} (83%)
rename config-ui/src/{pages/pipeline/components/info/index.tsx =>
routes/pipeline/components/info.tsx} (51%)
delete mode 100644 config-ui/src/routes/pipeline/components/pipeline-table.tsx
rename config-ui/src/routes/pipeline/components/{pipeline-status.tsx =>
status.tsx} (100%)
rename config-ui/src/{pages/pipeline/components/historical/index.tsx =>
routes/pipeline/components/table.tsx} (65%)
rename config-ui/src/{pages/pipeline/components/task/index.tsx =>
routes/pipeline/components/task.tsx} (70%)
rename config-ui/src/{pages/pipeline/components/tasks/index.tsx =>
routes/pipeline/components/tasks.tsx} (77%)
copy config-ui/src/{pages/blueprint/detail/blueprint-detail-page.tsx =>
routes/pipeline/pipeline.tsx} (68%)