mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-15 11:42:35 +08:00
198 lines
7.6 KiB
Vue
198 lines
7.6 KiB
Vue
<template>
|
|
<div>
|
|
<el-drawer v-model="changeVisiable" :destroy-on-close="true" :close-on-click-modal="false" width="30%">
|
|
<template #header>
|
|
<DrawerHeader :header="title" :resource="changeForm.mysqlName" :back="handleClose" />
|
|
</template>
|
|
<el-form>
|
|
<el-form v-loading="loading" ref="changeFormRef" :model="changeForm" label-position="top">
|
|
<el-row type="flex" justify="center">
|
|
<el-col :span="22">
|
|
<div v-if="changeForm.operation === 'password'">
|
|
<el-form-item :label="$t('commons.login.username')" prop="userName">
|
|
<el-input disabled v-model="changeForm.userName"></el-input>
|
|
</el-form-item>
|
|
<el-form-item
|
|
:label="$t('commons.login.password')"
|
|
prop="password"
|
|
:rules="Rules.requiredInput"
|
|
>
|
|
<el-input
|
|
type="password"
|
|
clearable
|
|
show-password
|
|
v-model="changeForm.password"
|
|
></el-input>
|
|
</el-form-item>
|
|
</div>
|
|
<div v-if="changeForm.operation === 'privilege'">
|
|
<el-form-item :label="$t('database.permission')" prop="privilege">
|
|
<el-select style="width: 100%" v-model="changeForm.privilege">
|
|
<el-option value="%" :label="$t('database.permissionAll')" />
|
|
<el-option value="ip" :label="$t('database.permissionForIP')" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item
|
|
v-if="changeForm.privilege === 'ip'"
|
|
prop="privilegeIPs"
|
|
:rules="Rules.requiredInput"
|
|
>
|
|
<el-input
|
|
clearable
|
|
:autosize="{ minRows: 2, maxRows: 5 }"
|
|
type="textarea"
|
|
v-model="changeForm.privilegeIPs"
|
|
/>
|
|
<span class="input-help">{{ $t('database.remoteHelper') }}</span>
|
|
</el-form-item>
|
|
</div>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</el-form>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button :disabled="loading" @click="changeVisiable = false">
|
|
{{ $t('commons.button.cancel') }}
|
|
</el-button>
|
|
<el-button :disabled="loading" type="primary" @click="submitChangeInfo(changeFormRef)">
|
|
{{ $t('commons.button.confirm') }}
|
|
</el-button>
|
|
</span>
|
|
</template>
|
|
</el-drawer>
|
|
|
|
<ConfirmDialog ref="confirmDialogRef" @confirm="onSubmit"></ConfirmDialog>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { reactive, ref } from 'vue';
|
|
import i18n from '@/lang';
|
|
import { ElForm } from 'element-plus';
|
|
import { deleteCheckMysqlDB, updateMysqlAccess, updateMysqlPassword } from '@/api/modules/database';
|
|
import DrawerHeader from '@/components/drawer-header/index.vue';
|
|
import { Rules } from '@/global/form-rules';
|
|
import { MsgSuccess } from '@/utils/message';
|
|
|
|
const loading = ref();
|
|
const changeVisiable = ref(false);
|
|
type FormInstance = InstanceType<typeof ElForm>;
|
|
const changeFormRef = ref<FormInstance>();
|
|
const title = ref();
|
|
const changeForm = reactive({
|
|
id: 0,
|
|
mysqlName: '',
|
|
userName: '',
|
|
password: '',
|
|
operation: '',
|
|
privilege: '',
|
|
privilegeIPs: '',
|
|
value: '',
|
|
});
|
|
const confirmDialogRef = ref();
|
|
|
|
interface DialogProps {
|
|
id: number;
|
|
mysqlName: string;
|
|
username: string;
|
|
password: string;
|
|
operation: string;
|
|
privilege: string;
|
|
privilegeIPs: string;
|
|
value: string;
|
|
}
|
|
const acceptParams = (params: DialogProps): void => {
|
|
title.value =
|
|
params.operation === 'password'
|
|
? i18n.global.t('database.changePassword')
|
|
: i18n.global.t('database.permission');
|
|
changeForm.id = params.id;
|
|
changeForm.mysqlName = params.mysqlName;
|
|
changeForm.userName = params.username;
|
|
changeForm.password = params.password;
|
|
changeForm.operation = params.operation;
|
|
changeForm.privilege = params.privilege;
|
|
changeForm.privilegeIPs = params.privilegeIPs;
|
|
changeForm.value = params.value;
|
|
changeVisiable.value = true;
|
|
};
|
|
const emit = defineEmits<{ (e: 'search'): void }>();
|
|
|
|
const handleClose = () => {
|
|
changeVisiable.value = false;
|
|
};
|
|
|
|
const submitChangeInfo = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
formEl.validate(async (valid) => {
|
|
if (!valid) return;
|
|
let param = {
|
|
id: changeForm.id,
|
|
value: '',
|
|
};
|
|
if (changeForm.operation === 'password') {
|
|
const res = await deleteCheckMysqlDB(changeForm.id);
|
|
if (res.data && res.data.length > 0) {
|
|
let params = {
|
|
header: i18n.global.t('database.changePassword'),
|
|
operationInfo: i18n.global.t('database.changePasswordHelper'),
|
|
submitInputInfo: i18n.global.t('database.restartNow'),
|
|
};
|
|
confirmDialogRef.value!.acceptParams(params);
|
|
} else {
|
|
param.value = changeForm.password;
|
|
loading.value = true;
|
|
await updateMysqlPassword(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
emit('search');
|
|
changeVisiable.value = false;
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
}
|
|
return;
|
|
}
|
|
if (changeForm.privilege !== 'ip') {
|
|
param.value = changeForm.privilege;
|
|
} else {
|
|
param.value = changeForm.privilegeIPs;
|
|
}
|
|
loading.value = true;
|
|
await updateMysqlAccess(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
emit('search');
|
|
changeVisiable.value = false;
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
});
|
|
};
|
|
|
|
const onSubmit = async () => {
|
|
let param = {
|
|
id: changeForm.id,
|
|
value: changeForm.password,
|
|
};
|
|
loading.value = true;
|
|
await updateMysqlPassword(param)
|
|
.then(() => {
|
|
loading.value = false;
|
|
emit('search');
|
|
changeVisiable.value = false;
|
|
MsgSuccess(i18n.global.t('commons.msg.operationSuccess'));
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
defineExpose({
|
|
acceptParams,
|
|
});
|
|
</script>
|