XRoomDashboardFront/xroom-dashboard/src/components/NewFileDialog.vue

420 lines
9.9 KiB
Vue
Raw Normal View History

2025-05-30 15:41:53 +00:00
<template>
<div v-if="isOpen" class="modal-overlay" @click="closeDialog">
<div class="modal-content" @click.stop>
<div class="modal-header">
<h2>{{ dialogTitle }}</h2>
<button @click="closeDialog">
<svg
xmlns="http://www.w3.org/2000/svg"
width="35"
height="35"
viewBox="0 0 32 32"
fill="none"
>
<rect x="0.5" y="0.5" width="31" height="31" rx="7.5" fill="#101010" />
<rect x="0.5" y="0.5" width="31" height="31" rx="7.5" stroke="#E2DEE9" />
<path
d="M21 11L11 21"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M11 11L21 21"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
</div>
<div class="modal-title">
<h2>آپلود فایل جدید</h2>
<span>فایل خود را برای استفاده در پروژه انتخاب کنید.</span>
</div>
<div class="form-content">
<form @submit.prevent="uploadFile" autocomplete="off">
<div class="file-type-selector" style="text-align: start; margin: 1rem 0 3rem 0; display: flex; align-items: center; justify-content: space-between;">
<label for="fileType" style="margin-left: 10px;">نوع فایل :</label>
<select
id="fileType"
:value="currentUploadType"
@change="updateFileAccept($event)"
required
>
<option v-for="type in fileTypes" :key="type.value" :value="type.value">
{{ type.label }}
</option>
</select>
</div>
<div class="input-group">
<label for="fileName">نام فایل</label>
<input
id="fileName"
v-model="newFileName"
type="text"
placeholder="نام فایل را وارد کنید"
/>
</div>
<div class="input-group">
<p>انتخاب فایل</p>
<div style="width: 67%;">
<label for="fileUpload" class="file-input-label">
<span v-if="selectedFile" class="file-name">{{ selectedFile.name }}</span>
<span v-else>برای انتخاب فایل کلیک کنید</span>
</label>
<input
id="fileUpload"
ref="fileInput"
type="file"
@change="handleFileChange"
:accept="fileAccept"
required
class="file-input"
/>
</div>
</div>
</form>
</div>
<div class="modal-actions">
<button type="button" class="close-btn" @click="closeDialog">بازگشت</button>
<button type="submit" class="upload-btn" @click="uploadFile" :disabled="!selectedFile || uploading">
{{ uploading ? 'در حال آپلود...' : 'آپلود فایل' }}
</button>
</div>
</div>
</div>
</template>
<script>
import axios from 'axios';
export default {
name: 'NewFileDialog',
props: {
isOpen: {
type: Boolean,
default: false,
},
initialUploadType: {
type: String,
default: 'image',
},
baseUrl: {
type: String,
required: true,
},
},
data() {
return {
newFileName: '',
selectedFile: null,
uploading: false,
currentUploadType: this.initialUploadType,
dialogTitle: 'آپلود تصویر جدید',
fileAccept: 'image/*',
fileTypes: [
{ value: 'image', label: 'تصویر' },
{ value: 'pdf', label: 'PDF' },
{ value: 'video', label: 'ویدیو' },
{ value: 'glb', label: 'مدل 3D' },
],
};
},
watch: {
isOpen(newVal) {
if (newVal) {
this.resetForm();
// غیرفعال کردن اسکرول صفحه پس‌زمینه
document.body.style.overflow = 'hidden';
} else {
// فعال کردن مجدد اسکرول هنگام بسته شدن
document.body.style.overflow = '';
this.resetForm();
}
},
initialUploadType(newType) {
this.currentUploadType = newType;
this.updateFileAccept();
this.resetForm();
},
},
methods: {
beforeDestroy() {
// اطمینان از فعال شدن اسکرول هنگام حذف کامپوننت
document.body.style.overflow = '';
},
updateFileAccept(event) {
this.currentUploadType = event ? event.target.value : this.currentUploadType;
switch (this.currentUploadType) {
case 'image':
this.fileAccept = 'image/*';
this.dialogTitle = 'آپلود تصویر جدید';
break;
case 'pdf':
this.fileAccept = '.pdf';
this.dialogTitle = 'آپلود فایل PDF';
break;
case 'video':
this.fileAccept = 'video/*';
this.dialogTitle = 'آپلود ویدیو';
break;
case 'glb':
this.fileAccept = '.glb';
this.dialogTitle = 'آپلود مدل 3D';
break;
}
},
resetForm() {
this.newFileName = '';
this.selectedFile = null;
this.currentUploadType = this.initialUploadType;
this.updateFileAccept();
if (this.$refs.fileInput) {
this.$refs.fileInput.value = '';
}
},
closeDialog() {
this.resetForm();
this.$emit('close');
},
handleFileChange(event) {
this.selectedFile = event.target.files[0];
},
async uploadFile() {
if (!this.selectedFile) {
alert('لطفاً یک فایل انتخاب کنید.');
return;
}
this.uploading = true;
const formData = new FormData();
formData.append('name', this.newFileName || this.selectedFile.name);
formData.append(this.currentUploadType, this.selectedFile);
try {
const token = localStorage.getItem('token');
const uploadUrl = `${this.baseUrl}/upload${this.currentUploadType.charAt(0).toUpperCase() + this.currentUploadType.slice(1)}/`;
await axios.post(uploadUrl, formData, {
headers: {
'Authorization': `Token ${token}`,
'Content-Type': 'multipart/form-data',
},
});
this.resetForm();
this.$emit('upload-success');
this.$emit('close');
alert('فایل با موفقیت آپلود شد');
} catch (error) {
console.error('Error uploading file:', error);
alert('خطا در آپلود فایل');
} finally {
this.uploading = false;
}
},
},
};
</script>
<style scoped>
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-content {
background: #F7F5FA;
border-radius: 20px;
width: 100%;
max-width: 700px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
direction: rtl;
padding-bottom: 1.5rem;
height: max-content;
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.modal-content::-webkit-scrollbar {
display: none;
}
.modal-header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #101010;
color: #fff;
padding: 20px 26px;
margin-bottom: 1.5rem;
border-radius: 20px 20px 0 0;
}
.modal-header h2 {
font-size: 22px;
}
.modal-header button {
background-color: inherit;
border: none;
cursor: pointer;
}
.modal-title {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 20px 50px 20px 20px;
}
.modal-title h2 {
font-size: 20px;
font-weight: 600;
color: #101010;
}
.modal-title span {
font-size: 16px;
font-weight: 500;
color: #4F5A69;
margin-top: 1rem;
}
.form-content {
margin: 1rem auto 0;
padding: 20px;
background-color: #FFFFFF;
border-radius: 16px;
width: 100%;
max-width: 620px;
display: block;
}
.input-group {
margin-bottom: 3rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.input-group label {
font-weight: 500;
width: 50%;
font-size: 16px;
}
.input-group input {
width: 100%;
padding: 8px;
border: 1px solid #718096;
border-radius: 8px;
font-size: 1rem;
}
.input-group input:focus {
outline: none;
}
.input-group .file-input {
display: none;
}
.input-group .file-input-label {
width: 100%;
padding: 8px;
border: 1px solid #718096;
border-radius: 8px;
font-size: 15px;
text-align: start;
cursor: pointer;
background-color: #fff;
color: #798487;
height: 2.5rem;
line-height: normal;
display: flex;
align-items: center;
overflow: hidden;
}
.input-group .file-input-label:hover {
background-color: #f0f0f0;
}
.input-group .file-name {
font-size: 15px;
color: #4F5A69;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.modal-actions {
display: flex;
justify-content: space-between;
padding: 20px 0 0;
width: 100%;
max-width: 620px;
margin: auto;
}
.upload-btn,
.close-btn {
border: none;
border-radius: 8px;
cursor: pointer;
height: 50px;
width: 47%;
font-weight: 500;
font-size: 18px;
text-align: center;
}
.upload-btn {
background-color: #3A57E8;
color: white;
}
.close-btn {
background-color: #EBEEFD;
color: #101010;
}
.file-type-selector {
display: flex;
align-items: center;
justify-content: space-between;
text-align: start;
margin: 1rem 0 3rem 0;
}
.file-type-selector label {
margin-left: 10px;
font-weight: 500;
font-size: 16px;
}
.file-type-selector select {
padding: 8px 8px;
border-radius: 8px;
border-left: 10px solid transparent !important;
box-shadow: #00000029 0px 1px 4px 0px;
border: none;
width: 67%;
height: 2.5rem;
font-size: 16px;
}
.file-type-selector select:focus {
outline: none;
}
</style>