Skip to content

Commit

Permalink
Merge pull request #188 from PoodingDev/api-event
Browse files Browse the repository at this point in the history
Feat: #164 캘린더에 구독캘린더 정보 가져오기 추가
  • Loading branch information
cxaosdev authored Dec 10, 2024
2 parents de7a043 + a4151d8 commit ecb9fb2
Showing 1 changed file with 33 additions and 6 deletions.
39 changes: 33 additions & 6 deletions src/pages/Calendar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ export default function Calendar() {
};

//캘린더 정보 가져오기
const [calInfo, setCalInfo] = useState({
calId: 0,
isOnCalender: true,
});
const [calInfo, setCalInfo] = useState([]);
useEffect(() => {
async function fetchCalInfoChange() {
try {
Expand All @@ -68,14 +65,44 @@ export default function Calendar() {
calendarColor: cal.color,
isactive: cal.isactive,
}));
setCalInfo(info);
setCalInfo((prevCalInfo) => [
...prevCalInfo, // 기존의 calInfo 데이터
...info, // 새로 가져온 구독 캘린더 데이터
]);
} catch (error) {
console.error("캘린더 정보를 가져오는 중 오류 발생:", error);
}
}
fetchCalInfoChange();
}, []);

//구독 캘린더 정보 가져오기
useEffect(() => {
async function fetchCalInfoSubChange() {
try {
const token = localStorage.getItem("token"); // 로컬 스토리지에서 토큰 가져오기
const response = await instance.get("/api/calendars/subscriptions/", {
headers: {
Authorization: `Bearer ${token}`,
},
});

const info = response.data.map((cal) => ({
calId: cal.id,
calendarName: cal.name,
calendarColor: cal.color,
isactive: cal.isactive,
}));
setCalInfo((prevCalInfo) => [
...info, // 새로 가져온 구독 캘린더 데이터
]);
} catch (error) {
console.error("구독 캘린더 정보를 가져오는 중 오류 발생:", error);
}
}
fetchCalInfoSubChange();
}, []);

//이벤트 정보 가져오기
useEffect(() => {
async function fetchEventInfo() {
Expand All @@ -93,11 +120,11 @@ export default function Calendar() {

// const formattedStartDate = start_date.toLocaleDateString("ko");
// const formattedEndDate = end_date.toLocaleDateString("ko");
console.log(response.data);
const eventMockData = response.data.map((event) => {
const calendar = calInfo.find(
(cal) => cal.calId === event.calendar_id,
);

return {
displayEventEnd: true,
allDay: false,
Expand Down

0 comments on commit ecb9fb2

Please sign in to comment.