mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
283 lines
10 KiB
Vue
283 lines
10 KiB
Vue
<template>
|
||
<div>
|
||
<el-drawer :title="title" v-model="dialogVisible" :before-close="cancel" :destroy-on-close="true" :close-on-click-modal="false" size="40%">
|
||
<template #header>
|
||
<DrawerHeader :header="title" :back="cancel" />
|
||
</template>
|
||
|
||
<el-form :model="form" ref="dbForm" :rules="rules" label-width="auto">
|
||
<el-divider content-position="left">{{ $t('common.basic') }}</el-divider>
|
||
|
||
<el-form-item ref="tagSelectRef" prop="tagCodePaths" :label="$t('tag.relateTag')">
|
||
<tag-tree-select
|
||
multiple
|
||
@change-tag="
|
||
(paths: any) => {
|
||
form.tagCodePaths = paths;
|
||
tagSelectRef.validate();
|
||
}
|
||
"
|
||
:select-tags="form.tagCodePaths"
|
||
/>
|
||
</el-form-item>
|
||
|
||
<el-form-item prop="name" :label="$t('common.name')" required>
|
||
<el-input v-model.trim="form.name" auto-complete="off"></el-input>
|
||
</el-form-item>
|
||
|
||
<el-form-item prop="type" :label="$t('common.type')" required>
|
||
<el-select @change="changeDbType" style="width: 100%" v-model="form.type">
|
||
<el-option
|
||
v-for="(dbTypeAndDialect, key) in getDbDialectMap()"
|
||
:key="key"
|
||
:value="dbTypeAndDialect[0]"
|
||
:label="dbTypeAndDialect[1].getInfo().name"
|
||
>
|
||
<SvgIcon :name="dbTypeAndDialect[1].getInfo().icon" :size="20" />
|
||
{{ dbTypeAndDialect[1].getInfo().name }}
|
||
</el-option>
|
||
|
||
<template #prefix>
|
||
<SvgIcon :name="getDbDialect(form.type).getInfo().icon" :size="20" />
|
||
</template>
|
||
</el-select>
|
||
</el-form-item>
|
||
|
||
<el-form-item v-if="form.type !== DbType.sqlite" prop="host" label="Host" required>
|
||
<el-col :span="18">
|
||
<el-input v-model.trim="form.host" auto-complete="off"></el-input>
|
||
</el-col>
|
||
<el-col style="text-align: center" :span="1">:</el-col>
|
||
<el-col :span="5">
|
||
<el-input type="number" v-model.number="form.port" :placeholder="$t('db.port')"></el-input>
|
||
</el-col>
|
||
</el-form-item>
|
||
|
||
<el-form-item v-if="form.type === DbType.sqlite" prop="host" label="Path">
|
||
<el-input v-model.trim="form.host" :placeholder="$t('db.sqlitePathPlaceholder')"></el-input>
|
||
</el-form-item>
|
||
|
||
<el-form-item v-if="form.type === DbType.oracle" label="SID|Service">
|
||
<el-col :span="5">
|
||
<el-select
|
||
@change="
|
||
() => {
|
||
state.extra.serviceName = '';
|
||
state.extra.sid = '';
|
||
}
|
||
"
|
||
v-model="state.extra.stype"
|
||
>
|
||
<el-option label="Service" :value="1" />
|
||
<el-option label="SID" :value="2" />
|
||
</el-select>
|
||
</el-col>
|
||
<el-col style="text-align: center" :span="1">:</el-col>
|
||
<el-col :span="18">
|
||
<el-input v-if="state.extra.stype == 1" v-model="state.extra.serviceName" placeholder="Service Name"> </el-input>
|
||
<el-input v-else v-model="state.extra.sid" placeholder="SID"> </el-input>
|
||
</el-col>
|
||
</el-form-item>
|
||
|
||
<el-form-item prop="remark" :label="$t('common.remark')">
|
||
<el-input v-model="form.remark" auto-complete="off" type="textarea"></el-input>
|
||
</el-form-item>
|
||
|
||
<el-divider content-position="left">{{ $t('common.account') }}</el-divider>
|
||
<div>
|
||
<ResourceAuthCertTableEdit
|
||
v-model="form.authCerts"
|
||
:resource-code="form.code"
|
||
:resource-type="TagResourceTypeEnum.DbInstance.value"
|
||
:test-conn-btn-loading="testConnBtnLoading"
|
||
@test-conn="testConn"
|
||
:disable-ciphertext-type="[AuthCertCiphertextTypeEnum.PrivateKey.value]"
|
||
/>
|
||
</div>
|
||
|
||
<el-divider content-position="left">{{ $t('common.other') }}</el-divider>
|
||
<el-form-item prop="params" :label="$t('db.connParam')">
|
||
<el-input v-model.trim="form.params" :placeholder="$t('db.connParamPlaceholder')"> </el-input>
|
||
</el-form-item>
|
||
|
||
<el-form-item prop="sshTunnelMachineId" :label="$t('machine.sshTunnel')">
|
||
<ssh-tunnel-select v-model="form.sshTunnelMachineId" />
|
||
</el-form-item>
|
||
</el-form>
|
||
|
||
<template #footer>
|
||
<el-button @click="cancel()">{{ $t('common.cancel') }}</el-button>
|
||
<el-button type="primary" :loading="saveBtnLoading" @click="btnOk">{{ $t('common.confirm') }}</el-button>
|
||
</template>
|
||
</el-drawer>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { reactive, ref, toRefs, watchEffect } from 'vue';
|
||
import { dbApi } from './api';
|
||
import { ElMessage } from 'element-plus';
|
||
import SshTunnelSelect from '../component/SshTunnelSelect.vue';
|
||
import { DbType, getDbDialect, getDbDialectMap } from './dialect';
|
||
import SvgIcon from '@/components/svgIcon/index.vue';
|
||
import DrawerHeader from '@/components/drawer-header/DrawerHeader.vue';
|
||
import { TagResourceTypeEnum } from '@/common/commonEnum';
|
||
import ResourceAuthCertTableEdit from '../component/ResourceAuthCertTableEdit.vue';
|
||
import { AuthCertCiphertextTypeEnum } from '../tag/enums';
|
||
import TagTreeSelect from '../component/TagTreeSelect.vue';
|
||
import { useI18nFormValidate, useI18nPleaseInput, useI18nPleaseSelect, useI18nSaveSuccessMsg } from '@/hooks/useI18n';
|
||
import { useI18n } from 'vue-i18n';
|
||
import { notBlankI18n } from '@/common/assert';
|
||
|
||
const { t } = useI18n();
|
||
|
||
const props = defineProps({
|
||
visible: {
|
||
type: Boolean,
|
||
},
|
||
data: {
|
||
type: [Boolean, Object],
|
||
},
|
||
title: {
|
||
type: String,
|
||
},
|
||
});
|
||
|
||
//定义事件
|
||
const emit = defineEmits(['update:visible', 'cancel', 'val-change']);
|
||
|
||
const rules = {
|
||
tagCodePaths: [
|
||
{
|
||
required: true,
|
||
message: useI18nPleaseSelect('tag.relateTag'),
|
||
trigger: ['change'],
|
||
},
|
||
],
|
||
name: [
|
||
{
|
||
required: true,
|
||
message: useI18nPleaseInput('common.name'),
|
||
trigger: ['change', 'blur'],
|
||
},
|
||
],
|
||
type: [
|
||
{
|
||
required: true,
|
||
message: useI18nPleaseSelect('common.type'),
|
||
trigger: ['change', 'blur'],
|
||
},
|
||
],
|
||
host: [
|
||
{
|
||
required: true,
|
||
message: useI18nPleaseInput('Host:Port'),
|
||
trigger: ['blur'],
|
||
},
|
||
],
|
||
sid: [
|
||
{
|
||
required: true,
|
||
message: useI18nPleaseInput('SID'),
|
||
trigger: ['change', 'blur'],
|
||
},
|
||
],
|
||
};
|
||
|
||
const dbForm: any = ref(null);
|
||
const tagSelectRef: any = ref(null);
|
||
|
||
const DefaultForm = {
|
||
id: null,
|
||
type: DbType.mysql,
|
||
code: '',
|
||
name: null,
|
||
host: '',
|
||
port: getDbDialect(DbType.mysql).getInfo().defaultPort,
|
||
extra: '', // 连接需要的额外参数(json字符串)
|
||
params: null,
|
||
remark: '',
|
||
sshTunnelMachineId: null as any,
|
||
authCerts: [],
|
||
tagCodePaths: [],
|
||
};
|
||
|
||
const state = reactive({
|
||
dialogVisible: false,
|
||
extra: {} as any, // 连接需要的额外参数(json)
|
||
form: DefaultForm,
|
||
submitForm: {} as any,
|
||
});
|
||
|
||
const { dialogVisible, form, submitForm } = toRefs(state);
|
||
|
||
const { isFetching: saveBtnLoading, execute: saveInstanceExec, data: saveInstanceRes } = dbApi.saveInstance.useApi(submitForm);
|
||
const { isFetching: testConnBtnLoading, execute: testConnExec } = dbApi.testConn.useApi(submitForm);
|
||
|
||
watchEffect(() => {
|
||
state.dialogVisible = props.visible;
|
||
if (!state.dialogVisible) {
|
||
return;
|
||
}
|
||
const dbInst: any = props.data;
|
||
if (dbInst) {
|
||
state.form = { ...dbInst };
|
||
state.form.tagCodePaths = dbInst.tags.map((t: any) => t.codePath) || [];
|
||
try {
|
||
state.extra = JSON.parse(state.form.extra);
|
||
} catch (e) {
|
||
state.extra = {};
|
||
}
|
||
} else {
|
||
state.form = { ...DefaultForm };
|
||
state.form.authCerts = [];
|
||
}
|
||
});
|
||
|
||
const getReqForm = async () => {
|
||
const reqForm: any = { ...state.form };
|
||
reqForm.selectAuthCert = null;
|
||
reqForm.tags = null;
|
||
if (!state.form.sshTunnelMachineId) {
|
||
reqForm.sshTunnelMachineId = -1;
|
||
}
|
||
if (Object.keys(state.extra).length > 0) {
|
||
reqForm.extra = JSON.stringify(state.extra);
|
||
}
|
||
return reqForm;
|
||
};
|
||
|
||
const testConn = async (authCert: any) => {
|
||
await useI18nFormValidate(dbForm);
|
||
state.submitForm = await getReqForm();
|
||
state.submitForm.authCerts = [authCert];
|
||
await testConnExec();
|
||
ElMessage.success(t('db.connSuccess'));
|
||
};
|
||
|
||
const btnOk = async () => {
|
||
await useI18nFormValidate(dbForm);
|
||
state.submitForm = await getReqForm();
|
||
notBlankI18n(state.submitForm.authCerts, 'db.acName');
|
||
await saveInstanceExec();
|
||
useI18nSaveSuccessMsg();
|
||
state.form.id = saveInstanceRes as any;
|
||
emit('val-change', state.form);
|
||
cancel();
|
||
};
|
||
|
||
const cancel = () => {
|
||
emit('update:visible', false);
|
||
emit('cancel');
|
||
state.extra = {};
|
||
};
|
||
|
||
const changeDbType = (val: string) => {
|
||
if (!state.form.id) {
|
||
state.form.port = getDbDialect(val).getInfo().defaultPort as any;
|
||
}
|
||
state.extra = {};
|
||
};
|
||
</script>
|
||
<style lang="scss"></style>
|