mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-22 01:39:18 +08:00
107 lines
3.1 KiB
Vue
107 lines
3.1 KiB
Vue
<template>
|
|
<el-drawer v-model="open" size="40%">
|
|
<template #header>
|
|
<DrawerHeader :header="$t('file.rename')" :resource="oldName" :back="handleClose" />
|
|
</template>
|
|
<el-row>
|
|
<el-col :span="22" :offset="1">
|
|
<el-form
|
|
ref="fileForm"
|
|
label-position="top"
|
|
:model="addForm"
|
|
label-width="100px"
|
|
:rules="rules"
|
|
v-loading="loading"
|
|
>
|
|
<el-form-item :label="$t('file.path')" prop="path">
|
|
<el-input v-model="addForm.path" disabled />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('commons.table.name')" prop="newName">
|
|
<el-input v-model.trim="addForm.newName" />
|
|
</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(fileForm)">{{ $t('commons.button.confirm') }}</el-button>
|
|
</span>
|
|
</template>
|
|
</el-drawer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { RenameRile } from '@/api/modules/files';
|
|
import { Rules } from '@/global/form-rules';
|
|
import { FormInstance, FormRules } from 'element-plus';
|
|
import { reactive, ref } from 'vue';
|
|
import { File } from '@/api/interface/file';
|
|
import i18n from '@/lang';
|
|
import { MsgSuccess } from '@/utils/message';
|
|
import DrawerHeader from '@/components/drawer-header/index.vue';
|
|
|
|
interface RenameProps {
|
|
path: string;
|
|
oldName: string;
|
|
}
|
|
|
|
const fileForm = ref<FormInstance>();
|
|
const loading = ref(false);
|
|
const open = ref(false);
|
|
const oldName = ref('');
|
|
|
|
const addForm = reactive({
|
|
newName: '',
|
|
path: '',
|
|
});
|
|
|
|
const rules = reactive<FormRules>({
|
|
newName: [Rules.requiredInput],
|
|
});
|
|
|
|
const em = defineEmits(['close']);
|
|
const handleClose = () => {
|
|
open.value = false;
|
|
if (fileForm.value) {
|
|
fileForm.value.resetFields();
|
|
}
|
|
em('close', false);
|
|
};
|
|
|
|
const getPath = (path: string, name: string) => {
|
|
return path + '/' + name;
|
|
};
|
|
const submit = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
await formEl.validate((valid) => {
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
|
|
let addItem = {};
|
|
Object.assign(addItem, addForm);
|
|
addItem['oldName'] = getPath(addForm.path, oldName.value);
|
|
addItem['newName'] = getPath(addForm.path, addForm.newName);
|
|
loading.value = true;
|
|
RenameRile(addItem as File.FileRename)
|
|
.then(() => {
|
|
MsgSuccess(i18n.global.t('commons.msg.updateSuccess'));
|
|
handleClose();
|
|
})
|
|
.finally(() => {
|
|
loading.value = false;
|
|
});
|
|
});
|
|
};
|
|
|
|
const acceptParams = (props: RenameProps) => {
|
|
oldName.value = props.oldName;
|
|
addForm.newName = props.oldName;
|
|
addForm.path = props.path;
|
|
open.value = true;
|
|
};
|
|
|
|
defineExpose({ acceptParams });
|
|
</script>
|