This commit is contained in:
khj0414 2025-03-07 16:20:27 +09:00
commit f2c231288c
14 changed files with 346 additions and 304 deletions

View File

@ -22,7 +22,7 @@
border-radius: 2px !important;
font-size: 0px !important;
}
/* 연차 그래프 (풀) */
/* 연차 그래프 (풀) */
.fc-daygrid-event.full-day {
width: 100% !important;
height: 8px !important;
@ -44,7 +44,7 @@
.fc-daygrid-day-number {
margin-right: auto;
}
/* 데이트피커 뾰족없게 */
/* 데이트피커 뾰족없게 */
.flatpickr-calendar:before,
.flatpickr-calendar:after {
display: none !important;
@ -65,12 +65,10 @@ background-color: rgba(0, 0, 0, 0.05); /* 연한 배경 효과 */
/* 주말 (토요일, 일요일) 및 공휴일 */
.fc-day-sat-sun {
cursor: not-allowed !important;
opacity: 0.6; /* 흐려 보이게 */
}
/* 과거 날짜 (오늘 이전) */
.fc-daygrid-day.past {
cursor: not-allowed !important;
opacity: 0.6; /* 흐려 보이게 */
}
/* 기본 이벤트 스타일 */
.fc-daygrid-event {
@ -213,7 +211,7 @@ opacity: 0.6; /* 흐려 보이게 */
justify-content: flex-start;
gap: 10px;
padding: 0;
margin-left: 20px;
margin-left: 12%;
}
.profile-img {
transition: all 0.2s ease-in-out;
@ -252,20 +250,19 @@ opacity: 0.6; /* 흐려 보이게 */
}
/* 선택된 (눌린) 버튼 */
.vac-btn.active {
border: 3px solid #ff0000; /* 붉은색 테두리 적용 */
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
box-shadow: 0px 4px 15px rgba(224, 224, 224, 0.3);
transform: scale(1.1);
}
.vac-btn-warning{
color: #fff;
background-color: #ffab00;
border-color: #ffab00;
background-color: #ffc144;
border-color: #ffe605;
box-shadow: 0 0.125rem 0.25rem 0 rgba(255, 171, 0, 0.4);
}
/* AM 버튼 (선택된 상태) */
.vac-btn-warning.active {
background-color: #ffca2c !important;
color: black;
background-color: #ff7300 !important;
color: #fff;;
}
.vac-btn-info {
color: #fff;
@ -279,7 +276,7 @@ opacity: 0.6; /* 흐려 보이게 */
color: white;
}
/* 버튼 기본 (비활성화일 때 기본 녹색) */
.btn-success {
.vac-btn-success {
font-size: 24px;
width: 50px;
height: 50px;
@ -294,7 +291,7 @@ opacity: 0.6; /* 흐려 보이게 */
border: 1px solid transparent;
}
/* 버튼 활성화 */
.btn-success.active {
.vac-btn-success.active {
background-color: #ff0000 !important;
color: white !important;
border: 3px solid #eb9f9f !important;
@ -302,7 +299,8 @@ opacity: 0.6; /* 흐려 보이게 */
transform: scale(1.1);
}
/* 버튼 비활성화 */
.btn-success.disabled {
.vac-btn-success.disabled {
border: 3px solid #e6e4e4; /* 붉은색 테두리 적용 */
background-color: #bbb8b8 !important;
color: white !important;
cursor: not-allowed !important;
@ -353,7 +351,7 @@ opacity: 0.6; /* 흐려 보이게 */
height: 40px;
font-size: 18px;
}
.btn-success {
.vac-btn-success {
font-size: 20px;
width: 40px;
height: 40px;

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,6 +1,7 @@
<template>
<component :is="layout">
<template #content>
<LoadingSpinner :isLoading="loadingStore.isLoading" />
<router-view></router-view>
</template>
</component>
@ -12,7 +13,10 @@ import { useRoute } from 'vue-router';
import NormalLayout from './layouts/NormalLayout.vue';
import NoLayout from './layouts/NoLayout.vue';
import ToastModal from '@c/modal/ToastModal.vue';
import { useLoadingStore } from "@s/loadingStore";
import LoadingSpinner from "@v/LoadingPage.vue";
const loadingStore = useLoadingStore();
const route = useRoute();
const layout = computed(() => {

View File

@ -1,6 +1,7 @@
import axios from 'axios';
import { useRoute } from 'vue-router';
import { useToastStore } from '@s/toastStore';
import { useLoadingStore } from "@s/loadingStore";
const $api = axios.create({
baseURL: import.meta.env.VITE_API_URL,
@ -14,6 +15,9 @@ const $api = axios.create({
*/
$api.interceptors.request.use(
function (config) {
const loadingStore = useLoadingStore();
loadingStore.startLoading();
let contentType = 'application/json';
if (config.isFormData) contentType = 'multipart/form-data';
@ -24,6 +28,8 @@ $api.interceptors.request.use(
return config;
},
function (error) {
const loadingStore = useLoadingStore();
loadingStore.stopLoading();
// 요청 오류가 있는 작업 수행
return Promise.reject(error);
},
@ -32,17 +38,22 @@ $api.interceptors.request.use(
// 응답 인터셉터 추가하기
$api.interceptors.response.use(
function (response) {
const loadingStore = useLoadingStore();
loadingStore.stopLoading();
// 2xx 범위의 응답 처리
return response;
},
function (error) {
const loadingStore = useLoadingStore();
loadingStore.stopLoading();
const toastStore = useToastStore();
// 오류 응답 처리
if (error.response) {
switch (error.response.status) {
case 401:
if (!error.config.headers.isLogin) {
toastStore.onToast('인증이 필요합니다.', 'e');
// toastStore.onToast('인증이 필요합니다.', 'e');
}
break;
case 403:

View File

@ -18,7 +18,7 @@
</button>
<!-- 저장 버튼 -->
<div class="save-button-container">
<button class="btn-success" @click="addVacationRequests"
<button class="vac-btn-success" @click="addVacationRequests"
:class="{ active: !isDisabled, disabled: isDisabled }">
</button>

View File

@ -14,101 +14,98 @@
:placeholder="title"
:disabled="disabled"
:min="min"
autocomplete="off"
@focusout="$emit('focusout', modelValue)"
@input="handleInput"
/>
<div class="invalid-feedback" :class="isAlert ? 'd-block' : ''">
{{ title }} 확인해주세요.
</div>
<div class="invalid-feedback" :class="isAlert ? 'd-block' : ''">{{ title }} 확인해주세요.</div>
<!-- 카테고리 중복 -->
<div class="invalid-feedback" :class="isCateAlert ? 'd-block' : ''">
카테고리 중복입니다.
</div>
<div class="invalid-feedback" :class="isCateAlert ? 'd-block' : ''">카테고리 중복입니다.</div>
</div>
</div>
</template>
<script setup>
import { ref, watch } from 'vue';
import { ref, watch } from 'vue';
// Props
const props = defineProps({
title: {
type: String,
default: '라벨',
required: true,
},
name: {
type: String,
default: 'nameplz',
required: true,
},
isEssential: {
type: Boolean,
default: false,
},
type: {
type: String,
default: 'text',
},
modelValue: {
type: String,
default: '',
},
maxlength: {
type: Number,
default: 30,
},
isAlert: {
type: Boolean,
default: false,
},
isCateAlert : {
type :Boolean,
default: false,
},
isLabel : {
type: Boolean,
default: true,
required: false,
},
disabled: {
type: Boolean,
default: false,
},
min: {
type: String,
default: '',
required: false,
}
});
// Props
const props = defineProps({
title: {
type: String,
default: '라벨',
required: true,
},
name: {
type: String,
default: 'nameplz',
required: true,
},
isEssential: {
type: Boolean,
default: false,
},
type: {
type: String,
default: 'text',
},
modelValue: {
type: String,
default: '',
},
maxlength: {
type: Number,
default: 30,
},
isAlert: {
type: Boolean,
default: false,
},
isCateAlert: {
type: Boolean,
default: false,
},
isLabel: {
type: Boolean,
default: true,
required: false,
},
disabled: {
type: Boolean,
default: false,
},
min: {
type: String,
default: '',
required: false,
},
});
// Emits
const emits = defineEmits(['update:modelValue', 'focusout', 'update:alert']);
// Emits
const emits = defineEmits(['update:modelValue', 'focusout', 'update:alert']);
// `inputValue`
const inputValue = ref(props.modelValue);
// `inputValue`
const inputValue = ref(props.modelValue);
//
watch(inputValue, newValue => {
emits('update:modelValue', newValue);
});
//
watch(inputValue, (newValue) => {
emits('update:modelValue', newValue);
});
//
watch(
() => props.modelValue,
newValue => {
if (inputValue.value !== newValue) {
inputValue.value = newValue;
}
},
);
//
watch(() => props.modelValue, (newValue) => {
if (inputValue.value !== newValue) {
inputValue.value = newValue;
}
});
const handleInput = (event) => {
const newValue = event.target.value.slice(0, props.maxlength);
if (newValue.trim() !== '') {
emits('update:alert', false);
}
};
const handleInput = event => {
const newValue = event.target.value.slice(0, props.maxlength);
if (newValue.trim() !== '') {
emits('update:alert', false);
}
};
</script>

View File

@ -86,15 +86,15 @@ const profileSize = computed(() => {
const totalUsers = userList.value.length;
if (windowWidth.value >= 1650) {
if (totalUsers <= 10) return "68px";
if (totalUsers <= 15) return "55px";
if (totalUsers <= 10) return "60px";
if (totalUsers <= 15) return "53px";
return "45px";
} else if (windowWidth.value >= 1300) {
if (totalUsers <= 10) return "45px";
if (totalUsers <= 15) return "40px";
return "30px";
} else if (windowWidth.value >= 1400) {
if (totalUsers <= 10) return "48px";
if (totalUsers <= 15) return "30px";
return "20px";
} else if (windowWidth.value >= 1024) {
if (totalUsers <= 10) return "40px";
if (totalUsers <= 10) return "35px";
if (totalUsers <= 15) return "30px";
return "20px";
} else {

View File

@ -63,8 +63,8 @@
margin-left: 260px;
width: auto !important;
min-width: auto !important;
right: 24px !important;
left: 24px !important;
right: 26px !important;
left: 26px !important;
}
/* 탑바 범위조정(1200px 이하) */
@ -75,8 +75,8 @@
margin-left: 0px;
width: auto !important;
min-width: auto !important;
right: 24px !important;
left: 24px !important;
right: 26px !important;
left: 26px !important;
}
}
@ -88,8 +88,8 @@
margin-left: 0px;
width: auto !important;
min-width: auto !important;
right: 24px !important;
left: 24px !important;
right: 26px !important;
left: 26px !important;
}
}
</style>

View File

@ -0,0 +1,22 @@
import { defineStore } from "pinia";
import { ref, computed } from "vue";
export const useLoadingStore = defineStore("loading", () => {
const loadingCount = ref(0); // 요청 개수를 추적
const startLoading = () => {
loadingCount.value++;
};
const stopLoading = () => {
if (loadingCount.value > 0) {
setTimeout(() => {
loadingCount.value--;
}, 200); // 약간의 지연을 추가하여 응답이 동시에 도착해도 안정적으로 감소
}
};
const isLoading = computed(() => loadingCount.value > 0); // 하나라도 요청이 있으면 로딩 활성화
return { isLoading, startLoading, stopLoading };
});

View File

@ -1,30 +1,58 @@
<template>
<div class="loading-container">
<div class="spinner">
🐰
<div v-if="isLoading" class="loading-overlay">
<div class="loading-container">
<div class="spinner">
<img src="/img/icons/loading.png" class="loading-img" />
</div>
<p class="loading-text">LOADING...</p>
</div>
<p class="loading-text">잠시만 기다려 주세요...</p>
</div>
</template>
<script setup>
import { defineProps } from "vue";
defineProps({
isLoading: Boolean, //
});
</script>
<style scoped>
/* 회색 배경으로 클릭 방지 */
.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4); /* 회색 반투명 */
display: flex;
align-items: center;
justify-content: center;
z-index: 9999; /* 가장 위에 위치 */
pointer-events: auto; /* 모든 클릭 방지 */
}
/* 로딩 컨테이너 */
.loading-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f9f9f9;
padding: 20px;
background: none;
border-radius: 10px;
}
.loading-img {
width: 80px; /* 원하는 크기로 조정 */
height: 80px;
}
/* 빙글빙글 돌아가는 스피너 */
.spinner {
font-size: 50px;
animation: spin 1.2s linear infinite;
animation: spin 2.2s linear infinite;
}
/* 로딩 텍스트 */
@ -32,8 +60,7 @@
margin-top: 10px;
font-size: 18px;
font-weight: bold;
color: #555;
font-family: "Comic Sans MS", "Arial", sans-serif;
color: #ffffff;
}
/* 회전 애니메이션 */

View File

@ -1,7 +1,6 @@
<template>
<div class="container-xxl flex-grow-1 container-p-y">
<LoadingSpinner v-if="isLoading" />
<div v-else class="row">
<div class="row">
<div class="col">
<div class="card">
<!-- 프로필 헤더 -->
@ -26,9 +25,13 @@
<input
type="password"
class="form-control"
autocomplete="off"
v-model="password"
placeholder="비밀번호 입력"
@input="password = password.replace(/\s/g, '')"
@input="
password = password.replace(/\s/g, '');
inputCheck();
"
/>
<button class="btn btn-primary" @click="submitPassword">확인</button>
</div>
@ -131,9 +134,8 @@
import { ref, onMounted, computed } from 'vue';
import { useRoute, useRouter } from 'vue-router';
import { useUserInfoStore } from '@/stores/useUserInfoStore';
import { useToastStore } from '@s/toastStore';
import axios from '@api';
import LoadingSpinner from "@v/LoadingPage.vue";
const isLoading = ref(true);
//
const profileName = ref('');
const boardTitle = ref('제목 없음');
@ -151,6 +153,7 @@
const route = useRoute();
const router = useRouter();
const userStore = useUserInfoStore();
const toastStore = useToastStore();
const currentBoardId = ref(Number(route.params.id));
const unknown = computed(() => profileName.value === '익명');
const currentUserId = computed(() => userStore.user.id); // id
@ -224,10 +227,12 @@
navigateLastPage: 1,
});
const inputCheck = () => {
passwordAlert.value = '';
};
//
const fetchBoardDetails = async () => {
try {
isLoading.value = true;
const response = await axios.get(`board/${currentBoardId.value}`);
const data = response.data.data;
@ -245,8 +250,6 @@
attachments.value = data.attachments || [];
} catch (error) {
alert('게시물 데이터를 불러오는 중 오류가 발생했습니다.');
} finally {
isLoading.value = false;
}
};
@ -568,6 +571,7 @@
const submitPassword = async () => {
if (!password.value.trim()) {
passwordAlert.value = '비밀번호를 입력해주세요.';
return;
}
@ -576,7 +580,7 @@
LOCBRDPWD: password.value,
LOCBRDSEQ: currentBoardId.value,
});
console.log('response: ', response);
if (response.data.code === 200 && response.data.data === true) {
password.value = '';
isPassword.value = false;
@ -591,18 +595,7 @@
passwordAlert.value = '비밀번호가 일치하지 않습니다.';
}
} catch (error) {
if (error.reponse && error.reponse.status === 401) passwordAlert.value = '비밀번호가 일치하지 않습니다.';
// if (error.response) {
// if (error.response.status === 401) {
// passwordAlert.value = ' .';
// } else {
// passwordAlert.value = error.response.data?.message || ' .';
// }
// } else if (error.request) {
// passwordAlert.value = ' . .';
// } else {
// passwordAlert.value = ' .';
// }
if (error.response && error.response.status === 401) passwordAlert.value = '비밀번호가 일치하지 않습니다.';
}
};
@ -664,7 +657,7 @@
});
if (response.data.code === 200) {
alert('게시물이 삭제되었습니다.');
toastStore.onToast('게시물이 삭제되었습니다.');
router.push({ name: 'BoardList' });
} else {
alert('삭제 실패: ' + response.data.message);

View File

@ -23,11 +23,7 @@
<div class="mb-4 d-flex align-items-center">
<label class="col-md-2 col-form-label">카테고리 <span class="text-danger">*</span></label>
<div class="d-flex flex-wrap align-items-center mt-3 ms-1">
<div
v-for="(category, index) in categoryList"
:key="index"
class="form-check me-3"
>
<div v-for="(category, index) in categoryList" :key="index" class="form-check me-3">
<input
class="form-check-input"
type="radio"
@ -41,9 +37,7 @@
</label>
</div>
</div>
<div class="invalid-feedback" :class="categoryAlert ? 'd-block' : 'd-none'">
카테고리를 선택해주세요.
</div>
<div class="invalid-feedback" :class="categoryAlert ? 'd-block' : 'd-none'">카테고리를 선택해주세요.</div>
</div>
<!-- 비밀번호 필드 (익명게시판 선택 활성화) -->
@ -52,6 +46,7 @@
title="비밀번호"
name="pw"
type="password"
autocomplete="new-password"
:is-essential="true"
:is-alert="passwordAlert"
v-model="password"
@ -74,7 +69,11 @@
<p v-if="fileError" class="text-danger">{{ fileError }}</p>
<ul class="list-group mt-2" v-if="attachFiles.length">
<li v-for="(file, index) in attachFiles" :key="index" class="list-group-item d-flex justify-content-between align-items-center">
<li
v-for="(file, index) in attachFiles"
:key="index"
class="list-group-item d-flex justify-content-between align-items-center"
>
{{ file.name }}
<button class="close-btn" @click="removeFile(index)"></button>
</li>
@ -82,15 +81,11 @@
<!-- 내용 입력 (에디터) -->
<div class="mb-4">
<label class="col-md-2 col-form-label">
내용 <span class="text-danger">*</span>
</label>
<label class="col-md-2 col-form-label"> 내용 <span class="text-danger">*</span> </label>
<div class="col-md-12">
<QEditor @update:data="content = $event" />
</div>
<div class="invalid-feedback mt-1" :class="contentAlert ? 'd-block' : 'd-none'">
내용을 입력해주세요.
</div>
<div class="invalid-feedback mt-1" :class="contentAlert ? 'd-block' : 'd-none'">내용을 입력해주세요.</div>
</div>
<div class="mb-4 d-flex justify-content-end">
@ -104,162 +99,162 @@
</template>
<script setup>
import { ref, onMounted, getCurrentInstance, watch, computed } from 'vue';
import QEditor from '@c/editor/QEditor.vue';
import FormInput from '@c/input/FormInput.vue';
import FormFile from '@c/input/FormFile.vue';
import SaveButton from '@c/button/SaveBtn.vue';
import BackButton from '@c/button/BackBtn.vue';
import { useToastStore } from '@s/toastStore';
import router from '@/router';
import axios from '@api';
import { ref, onMounted, getCurrentInstance, watch, computed } from 'vue';
import QEditor from '@c/editor/QEditor.vue';
import FormInput from '@c/input/FormInput.vue';
import FormFile from '@c/input/FormFile.vue';
import SaveButton from '@c/button/SaveBtn.vue';
import BackButton from '@c/button/BackBtn.vue';
import { useToastStore } from '@s/toastStore';
import router from '@/router';
import axios from '@api';
const toastStore = useToastStore();
const categoryList = ref([]);
const title = ref('');
const password = ref('');
const categoryValue = ref(null);
const content = ref({ ops: [] });
const isFileValid = ref(true);
const toastStore = useToastStore();
const categoryList = ref([]);
const title = ref('');
const password = ref('');
const categoryValue = ref(null);
const content = ref({ ops: [] });
const isFileValid = ref(true);
const titleAlert = ref(false);
const passwordAlert = ref(false);
const contentAlert = ref(false);
const categoryAlert = ref(false);
const attachFilesAlert = ref(false);
const titleAlert = ref(false);
const passwordAlert = ref(false);
const contentAlert = ref(false);
const categoryAlert = ref(false);
const attachFilesAlert = ref(false);
const attachFiles = ref([]);
const maxFiles = 5;
const maxSize = 10 * 1024 * 1024;
const fileError = ref('');
const attachFiles = ref([]);
const maxFiles = 5;
const maxSize = 10 * 1024 * 1024;
const fileError = ref('');
const fetchCategories = async () => {
try {
const response = await axios.get('board/categories');
categoryList.value = response.data.data;
const freeCategory = categoryList.value.find(category => category.CMNCODNAM === '자유');
if (freeCategory) {
categoryValue.value = freeCategory.CMNCODVAL;
const fetchCategories = async () => {
try {
const response = await axios.get('board/categories');
categoryList.value = response.data.data;
const freeCategory = categoryList.value.find(category => category.CMNCODNAM === '자유');
if (freeCategory) {
categoryValue.value = freeCategory.CMNCODVAL;
}
} catch (error) {
console.error('카테고리 불러오기 오류:', error);
}
} catch (error) {
console.error('카테고리 불러오기 오류:', error);
}
};
};
onMounted(() => {
fetchCategories();
});
onMounted(() => {
fetchCategories();
});
const fileCount = computed(() => attachFiles.value.length);
const fileCount = computed(() => attachFiles.value.length);
const handleFileUpload = (files) => {
const validFiles = files.filter(file => file.size <= maxSize);
if (files.some(file => file.size > maxSize)) {
fileError.value = '파일 크기가 10MB를 초과할 수 없습니다.';
return;
}
if (attachFiles.value.length + validFiles.length > maxFiles) {
fileError.value = `최대 ${maxFiles}개의 파일만 업로드할 수 있습니다.`;
return;
}
fileError.value = '';
attachFiles.value = [...attachFiles.value, ...validFiles].slice(0, maxFiles);
};
const removeFile = (index) => {
attachFiles.value.splice(index, 1);
if (attachFiles.value.length <= maxFiles) {
const handleFileUpload = files => {
const validFiles = files.filter(file => file.size <= maxSize);
if (files.some(file => file.size > maxSize)) {
fileError.value = '파일 크기가 10MB를 초과할 수 없습니다.';
return;
}
if (attachFiles.value.length + validFiles.length > maxFiles) {
fileError.value = `최대 ${maxFiles}개의 파일만 업로드할 수 있습니다.`;
return;
}
fileError.value = '';
}
};
attachFiles.value = [...attachFiles.value, ...validFiles].slice(0, maxFiles);
};
watch(attachFiles, () => {
isFileValid.value = attachFiles.value.length <= maxFiles;
});
const removeFile = index => {
attachFiles.value.splice(index, 1);
if (attachFiles.value.length <= maxFiles) {
fileError.value = '';
}
};
const validateTitle = () => {
titleAlert.value = title.value.trim().length === 0;
};
watch(attachFiles, () => {
isFileValid.value = attachFiles.value.length <= maxFiles;
});
const validatePassword = () => {
if (categoryValue.value === 300102) {
password.value = password.value.replace(/\s/g, ''); //
passwordAlert.value = password.value.length === 0;
} else {
passwordAlert.value = false;
}
};
const validateTitle = () => {
titleAlert.value = title.value.trim().length === 0;
};
const validateContent = () => {
if (!content.value?.ops?.length) {
contentAlert.value = true;
return;
}
const validatePassword = () => {
if (categoryValue.value === 300102) {
password.value = password.value.replace(/\s/g, ''); //
passwordAlert.value = password.value.length === 0;
} else {
passwordAlert.value = false;
}
};
//
const hasImage = content.value.ops.some(op => op.insert && typeof op.insert === 'object' && op.insert.image);
//
const hasText = content.value.ops.some(op => typeof op.insert === 'string' && op.insert.trim().length > 0);
//
contentAlert.value = !(hasText || hasImage);
};
/** 글쓰기 */
const write = async () => {
validateTitle();
validatePassword();
validateContent();
categoryAlert.value = categoryValue.value == null;
if (titleAlert.value || passwordAlert.value || contentAlert.value || categoryAlert.value || !isFileValid.value) {
return;
}
try {
const boardData = {
LOCBRDTTL: title.value,
LOCBRDCON: JSON.stringify(content.value), // Delta JSON
LOCBRDPWD: categoryValue.value === 300102 ? password.value : null,
LOCBRDTYP: categoryValue.value
};
const { data: boardResponse } = await axios.post('board', boardData);
const boardId = boardResponse.data;
// ( )
if (attachFiles.value && attachFiles.value.length > 0) {
await Promise.all(attachFiles.value.map(async (file) => {
console.log(file);
const formData = new FormData();
const fileNameWithoutExt = file.name.replace(/\.[^/.]+$/, '');
formData.append('CMNBRDSEQ', boardId);
formData.append('CMNFLEORG', fileNameWithoutExt);
formData.append('CMNFLEEXT', file.name.split('.').pop());
formData.append('CMNFLESIZ', file.size);
formData.append('file', file); // 📌
await axios.post(`board/${boardId}/attachments`, formData,
{ isFormData : true }
);
}));
const validateContent = () => {
if (!content.value?.ops?.length) {
contentAlert.value = true;
return;
}
toastStore.onToast('게시물이 작성되었습니다.', 's');
goList();
} catch (error) {
console.error(error);
toastStore.onToast('게시물 작성 중 오류가 발생했습니다.', 'e');
}
};
//
const hasImage = content.value.ops.some(op => op.insert && typeof op.insert === 'object' && op.insert.image);
//
const hasText = content.value.ops.some(op => typeof op.insert === 'string' && op.insert.trim().length > 0);
/** 목록으로 이동 */
const goList = () => {
router.push('/board');
};
//
contentAlert.value = !(hasText || hasImage);
};
/** `content` 변경 감지하여 자동 유효성 검사 실행 */
watch(content, () => {
validateContent();
});
/** 글쓰기 */
const write = async () => {
validateTitle();
validatePassword();
validateContent();
categoryAlert.value = categoryValue.value == null;
if (titleAlert.value || passwordAlert.value || contentAlert.value || categoryAlert.value || !isFileValid.value) {
return;
}
try {
const boardData = {
LOCBRDTTL: title.value,
LOCBRDCON: JSON.stringify(content.value), // Delta JSON
LOCBRDPWD: categoryValue.value === 300102 ? password.value : null,
LOCBRDTYP: categoryValue.value,
};
const { data: boardResponse } = await axios.post('board', boardData);
const boardId = boardResponse.data;
// ( )
if (attachFiles.value && attachFiles.value.length > 0) {
await Promise.all(
attachFiles.value.map(async file => {
console.log(file);
const formData = new FormData();
const fileNameWithoutExt = file.name.replace(/\.[^/.]+$/, '');
formData.append('CMNBRDSEQ', boardId);
formData.append('CMNFLEORG', fileNameWithoutExt);
formData.append('CMNFLEEXT', file.name.split('.').pop());
formData.append('CMNFLESIZ', file.size);
formData.append('file', file); // 📌
await axios.post(`board/${boardId}/attachments`, formData, { isFormData: true });
}),
);
}
toastStore.onToast('게시물이 작성되었습니다.', 's');
goList();
} catch (error) {
console.error(error);
toastStore.onToast('게시물 작성 중 오류가 발생했습니다.', 'e');
}
};
/** 목록으로 이동 */
const goList = () => {
router.push('/board');
};
/** `content` 변경 감지하여 자동 유효성 검사 실행 */
watch(content, () => {
validateContent();
});
</script>

View File

@ -148,7 +148,7 @@ function handleMonthChange(viewInfo) {
const year = currentDate.getFullYear();
const month = String(currentDate.getMonth() + 1).padStart(2, "0");
loadCalendarData(year, month);
}
}
//
function handleDateClick(info) {
const clickedDateStr = info.dateStr;

View File

@ -1,7 +1,6 @@
<template>
<div class="container-xxl flex-grow-1 container-p-y">
<LoadingSpinner v-if="isLoading" />
<div v-else class="row g-3">
<div class="row g-3">
<div class="mt-8">
<!-- 투표 작성 -->
<WriteBtn @click="voteWrite" />
@ -52,8 +51,6 @@ import Quill from 'quill';
import WriteBtn from '@c/button/WriteBtn.vue';
import voteList from '@c/voteboard/voteCardList.vue';
import { useRouter } from 'vue-router';
import LoadingSpinner from "@v/LoadingPage.vue";
const isLoading = ref(true);
const toastStore = useToastStore();
const category = ref('0');
@ -81,7 +78,6 @@ const changeCheck = () =>{
}
//
const getvoteList = async () => {
isLoading.value = true;
const response = await $api.get('vote/getVoteList',{
params:
{
@ -93,7 +89,6 @@ const getvoteList = async () => {
if (response.data.status === "OK") {
PageData.value = response.data.data;
voteListCardData.value = response.data.data.list;
isLoading.value = false;
}
};
const selectHandler = () =>{