Browse Source
* refactor: dag-menu refactor * feat: add i18n support for the dag-menu * feat: add e2e class Co-authored-by: devosend <devosend@gmail.com> Co-authored-by: Tq <tianqitobethefirst@gmail.com>3.2.0-release
labbomb
2 years ago
committed by
GitHub
28 changed files with 860 additions and 130 deletions
@ -0,0 +1,39 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
* (the "License"); you may not use this file except in compliance with |
||||||
|
* the License. You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
import { axios } from '@/service/service' |
||||||
|
|
||||||
|
export function getDagMenu(): any { |
||||||
|
return axios({ |
||||||
|
url: '/favourite/taskTypes', |
||||||
|
method: 'get' |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
export function Collection(taskName: string): any { |
||||||
|
return axios({ |
||||||
|
url: `/favourite/${taskName}`, |
||||||
|
method: 'post' |
||||||
|
}) |
||||||
|
} |
||||||
|
|
||||||
|
export function CancelCollection(taskName: string): any { |
||||||
|
return axios({ |
||||||
|
url: `/favourite/${taskName}`, |
||||||
|
method: 'delete' |
||||||
|
}) |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
* (the "License"); you may not use this file except in compliance with |
||||||
|
* the License. You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
export * from './task-node' |
||||||
|
export * from './task-type' |
@ -0,0 +1,167 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||||
|
* (the "License"); you may not use this file except in compliance with |
||||||
|
* the License. You may obtain a copy of the License at |
||||||
|
* |
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* |
||||||
|
* Unless required by applicable law or agreed to in writing, software |
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
* See the License for the specific language governing permissions and |
||||||
|
* limitations under the License. |
||||||
|
*/ |
||||||
|
import { defineStore } from 'pinia' |
||||||
|
import type { |
||||||
|
TaskTypeState, |
||||||
|
TaskType, |
||||||
|
ITaskTypeItem, |
||||||
|
TaskExecuteType |
||||||
|
} from './types' |
||||||
|
|
||||||
|
export const TASK_TYPES_MAP = { |
||||||
|
JAVA: { |
||||||
|
alias: 'JAVA' |
||||||
|
}, |
||||||
|
SHELL: { |
||||||
|
alias: 'SHELL' |
||||||
|
}, |
||||||
|
SUB_PROCESS: { |
||||||
|
alias: 'SUB_PROCESS' |
||||||
|
}, |
||||||
|
PROCEDURE: { |
||||||
|
alias: 'PROCEDURE' |
||||||
|
}, |
||||||
|
SQL: { |
||||||
|
alias: 'SQL' |
||||||
|
}, |
||||||
|
SPARK: { |
||||||
|
alias: 'SPARK' |
||||||
|
}, |
||||||
|
FLINK: { |
||||||
|
alias: 'FLINK' |
||||||
|
}, |
||||||
|
MR: { |
||||||
|
alias: 'MapReduce', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
PYTHON: { |
||||||
|
alias: 'PYTHON' |
||||||
|
}, |
||||||
|
DEPENDENT: { |
||||||
|
alias: 'DEPENDENT' |
||||||
|
}, |
||||||
|
HTTP: { |
||||||
|
alias: 'HTTP' |
||||||
|
}, |
||||||
|
DATAX: { |
||||||
|
alias: 'DataX' |
||||||
|
}, |
||||||
|
PIGEON: { |
||||||
|
alias: 'PIGEON' |
||||||
|
}, |
||||||
|
SQOOP: { |
||||||
|
alias: 'SQOOP', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
CONDITIONS: { |
||||||
|
alias: 'CONDITIONS' |
||||||
|
}, |
||||||
|
DATA_QUALITY: { |
||||||
|
alias: 'DATA_QUALITY', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
SWITCH: { |
||||||
|
alias: 'SWITCH' |
||||||
|
}, |
||||||
|
SEATUNNEL: { |
||||||
|
alias: 'SeaTunnel', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
EMR: { |
||||||
|
alias: 'AmazonEMR', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
ZEPPELIN: { |
||||||
|
alias: 'ZEPPELIN', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
JUPYTER: { |
||||||
|
alias: 'JUPYTER', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
K8S: { |
||||||
|
alias: 'K8S', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
MLFLOW: { |
||||||
|
alias: 'MLFLOW', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
OPENMLDB: { |
||||||
|
alias: 'OPENMLDB', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
DVC: { |
||||||
|
alias: 'DVC', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
DINKY: { |
||||||
|
alias: 'DINKY', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
SAGEMAKER: { |
||||||
|
alias: 'SageMaker', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
CHUNJUN: { |
||||||
|
alias: 'CHUNJUN', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
FLINK_STREAM: { |
||||||
|
alias: 'FLINK_STREAM', |
||||||
|
helperLinkDisable: true, |
||||||
|
taskExecuteType: 'STREAM' |
||||||
|
}, |
||||||
|
PYTORCH: { |
||||||
|
alias: 'Pytorch', |
||||||
|
helperLinkDisable: true |
||||||
|
}, |
||||||
|
HIVECLI: { |
||||||
|
alias: 'HIVECLI', |
||||||
|
helperLinkDisable: true |
||||||
|
} |
||||||
|
} as { |
||||||
|
[key in TaskType]: { |
||||||
|
alias: string |
||||||
|
helperLinkDisable?: boolean |
||||||
|
taskExecuteType?: TaskExecuteType |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
export const useTaskTypeStore = defineStore({ |
||||||
|
id: 'project-task-type', |
||||||
|
state: (): TaskTypeState => ({ |
||||||
|
types: [] |
||||||
|
}), |
||||||
|
persist: true, |
||||||
|
getters: { |
||||||
|
getTaskType(): ITaskTypeItem[] { |
||||||
|
return this.types |
||||||
|
} |
||||||
|
}, |
||||||
|
actions: { |
||||||
|
setTaskTypes(types: TaskType[]): void { |
||||||
|
try { |
||||||
|
this.types = types |
||||||
|
.filter((type) => !!TASK_TYPES_MAP[type]) |
||||||
|
.map((type) => ({ ...TASK_TYPES_MAP[type], type })) |
||||||
|
} catch (err) { |
||||||
|
this.types = [] |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
}) |
Loading…
Reference in new issue