mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-07 22:16:16 +08:00
130 lines
4.5 KiB
Vue
130 lines
4.5 KiB
Vue
<template>
|
|
<el-drawer :close-on-click-modal="false" v-model="open" size="30%">
|
|
<template #header>
|
|
<DrawerHeader
|
|
:header="process.operate == 'create' ? $t('commons.button.create') : $t('commons.button.edit')"
|
|
:back="handleClose"
|
|
/>
|
|
</template>
|
|
<el-row v-loading="loading">
|
|
<el-col :span="22" :offset="1">
|
|
<el-form ref="processForm" label-position="top" :model="process" label-width="100px" :rules="rules">
|
|
<el-form-item :label="$t('commons.table.name')" prop="name">
|
|
<el-input v-model.trim="process.name" :disabled="process.operate == 'update'"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('tool.supervisor.user')" prop="user">
|
|
<el-input v-model.trim="process.user"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('tool.supervisor.dir')" prop="dir">
|
|
<el-input v-model.trim="process.dir">
|
|
<template #prepend><FileList @choose="getPath" :dir="true"></FileList></template>
|
|
</el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('tool.supervisor.command')" prop="command">
|
|
<el-input v-model.trim="process.command"></el-input>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('tool.supervisor.numprocs')" prop="numprocsNum">
|
|
<el-input type="number" v-model.number="process.numprocsNum"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-col>
|
|
</el-row>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click="handleClose">{{ $t('commons.button.cancel') }}</el-button>
|
|
<el-button type="primary" @click="submit(processForm)" :disabled="loading">
|
|
{{ $t('commons.button.confirm') }}
|
|
</el-button>
|
|
</span>
|
|
</template>
|
|
</el-drawer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { CreateSupervisorProcess } from '@/api/modules/host-tool';
|
|
import { Rules, checkNumberRange } from '@/global/form-rules';
|
|
import FileList from '@/components/file-list/index.vue';
|
|
import i18n from '@/lang';
|
|
import { FormInstance } from 'element-plus';
|
|
import { ref } from 'vue';
|
|
import { MsgSuccess } from '@/utils/message';
|
|
import { HostTool } from '@/api/interface/host-tool';
|
|
|
|
const open = ref(false);
|
|
const loading = ref(false);
|
|
const processForm = ref<FormInstance>();
|
|
const rules = ref({
|
|
name: [Rules.requiredInput, Rules.supervisorName],
|
|
dir: [Rules.requiredInput],
|
|
command: [Rules.requiredInput],
|
|
user: [Rules.requiredInput],
|
|
numprocsNum: [Rules.requiredInput, Rules.integerNumber, checkNumberRange(1, 9999)],
|
|
});
|
|
const initData = () => ({
|
|
operate: 'create',
|
|
name: '',
|
|
command: '',
|
|
user: 'root',
|
|
dir: '',
|
|
numprocsNum: 1,
|
|
numprocs: '1',
|
|
});
|
|
const process = ref(initData());
|
|
|
|
const em = defineEmits(['close']);
|
|
const handleClose = () => {
|
|
open.value = false;
|
|
resetForm();
|
|
em('close', open);
|
|
};
|
|
|
|
const getPath = (path: string) => {
|
|
process.value.dir = path;
|
|
};
|
|
|
|
const resetForm = () => {
|
|
process.value = initData();
|
|
processForm.value?.resetFields();
|
|
};
|
|
|
|
const acceptParams = (operate: string, config: HostTool.SupersivorProcess) => {
|
|
process.value = initData();
|
|
if (operate == 'update') {
|
|
process.value = {
|
|
operate: 'update',
|
|
name: config.name,
|
|
command: config.command,
|
|
user: config.user,
|
|
dir: config.dir,
|
|
numprocsNum: 1,
|
|
numprocs: config.numprocs,
|
|
};
|
|
process.value.numprocsNum = Number(config.numprocs);
|
|
}
|
|
open.value = true;
|
|
};
|
|
|
|
const submit = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
await formEl.validate((valid) => {
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
loading.value = true;
|
|
process.value.numprocs = String(process.value.numprocsNum);
|
|
CreateSupervisorProcess(process.value)
|
|
.then(() => {
|
|
open.value = false;
|
|
em('close', open);
|
|
MsgSuccess(i18n.global.t('commons.msg.' + process.value.operate + 'Success'));
|
|
})
|
|
.finally(() => {
|
|
loading.value = false;
|
|
});
|
|
});
|
|
};
|
|
|
|
defineExpose({
|
|
acceptParams,
|
|
});
|
|
</script>
|