Skip to content

Commit

Permalink
[Improvement-16647][UI][Workflow Instance] Remove deprecated workflow…
Browse files Browse the repository at this point in the history
… execution states (#16648)

* improvement:remove deprecated workflow execution states

* fix:remove HistoryOutlined

* remove ready_to_block and block

---------

Co-authored-by: wuchao <wuchao@111yao.com>
Co-authored-by: xiangzihao <460888207@qq.com>
  • Loading branch information
3 people authored Oct 4, 2024
1 parent d2df861 commit 9a58eca
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 32 deletions.
25 changes: 0 additions & 25 deletions dolphinscheduler-ui/src/common/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import {
StopOutlined,
IssuesCloseOutlined,
SendOutlined,
HistoryOutlined,
HourglassOutlined
} from '@vicons/antd'
import { format, parseISO } from 'date-fns'
Expand Down Expand Up @@ -361,14 +360,6 @@ export const workflowExecutionState = (
isSpin: false,
classNames: 'success'
},
DELAY_EXECUTION: {
id: 12,
desc: `${t('project.workflow.delay_execution')}`,
color: '#5102ce',
icon: PauseCircleFilled,
isSpin: false,
classNames: 'delay_execution'
},
SERIAL_WAIT: {
id: 14,
desc: `${t('project.workflow.serial_wait')}`,
Expand All @@ -377,22 +368,6 @@ export const workflowExecutionState = (
isSpin: true,
classNames: 'serial_wait'
},
READY_BLOCK: {
id: 15,
desc: `${t('project.workflow.ready_to_block')}`,
color: '#5101be',
icon: SendOutlined,
isSpin: false,
classNames: 'pending'
},
BLOCK: {
id: 16,
desc: `${t('project.workflow.block')}`,
color: '#5101be',
icon: HistoryOutlined,
isSpin: false,
classNames: 'pending'
},
WAIT_TO_RUN: {
id: 18,
desc: `${t('project.workflow.wait_to_run')}`,
Expand Down
3 changes: 0 additions & 3 deletions dolphinscheduler-ui/src/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ export type IWorkflowExecutionState =
| 'STOP'
| 'FAILURE'
| 'SUCCESS'
| 'DELAY_EXECUTION'
| 'SERIAL_WAIT'
| 'READY_BLOCK'
| 'BLOCK'
| 'WAIT_TO_RUN'

export type ITaskStateConfig = {
Expand Down
2 changes: 0 additions & 2 deletions dolphinscheduler-ui/src/locales/en_US/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,6 @@ export default {
'Can not find any relations of workflows.',
workflow_relation_no_data_result_desc:
'There is not any workflows. Please create a workflow, and then visit this page again.',
ready_to_block: 'Ready to block',
block: 'Block',
wait_to_run: 'Wait to run',
want_to_set_timing: 'Would you like to set the workflow timing?',
confirm_to_online: 'Confirm to make the workflow online?',
Expand Down
2 changes: 0 additions & 2 deletions dolphinscheduler-ui/src/locales/zh_CN/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,6 @@ export default {
workflow_relation_no_data_result_title: '工作流关系不存在',
workflow_relation_no_data_result_desc:
'目前没有任何工作流,请先创建工作流,再访问该页面',
ready_to_block: '准备锁定',
block: '锁定',
wait_to_run: '等待执行',
want_to_set_timing: '现在想去配置该工作流定时?',
confirm_to_online: '是否确定上线该工作流?',
Expand Down

0 comments on commit 9a58eca

Please sign in to comment.