import React from "react"; import { NavLink, useOutletContext } from "react-router-dom"; import { Outlet, useNavigate, useParams } from "react-router-dom"; import { useSurveys } from "./SurveysLayout"; import type { CreateQuestionData, ICreateSurvey, IQuestionData, ISurvey, } from "../types"; import { SpinnerIcon } from "../icons"; import { surveyApi } from "../apis"; type SurveyContextType = { survey: ICreateSurvey; createQuestion: (question: IQuestionData) => Promise; removeQuestion: (questionId: string) => Promise; updateQuestion: (question: CreateQuestionData) => Promise; updateTitleComment: (state: { title: string; comment: string }) => void; }; const activeStyle = "w-36 h-12 flex justify-center items-center bg-themeColor p-1 text-white text-center font-bold text-xl"; const inActiveStyle = "w-36 h-12 flex justify-center items-center bg-white border border-themeColor first:border-r-0 last:border-l-0 p-1 text-center font-bold text-xl"; export const SurveyLayout = () => { const { surveys, update, updateLocalSurveysList } = useSurveys(); let { surveyId } = useParams<{ surveyId: string }>(); const survey = surveys.find((survey) => survey._id === surveyId); // console.log("surveys in survey layout", surveys); if (!survey) { return (
); } const createQuestion = async (question: IQuestionData) => { const newQuestion = await surveyApi.addQuestion(survey._id!, question); console.log("new question:", newQuestion); newQuestion.isEditing = true; survey.questions.push(newQuestion); updateLocalSurveysList(survey); }; const removeQuestion = async (questionId: string) => { await surveyApi.deleteQuestion(survey._id!, questionId); const questions = survey.questions; const updatedQuestions = questions.filter((q) => q._id !== questionId); console.log("questions after deleted question:", updatedQuestions); survey.questions = updatedQuestions; updateLocalSurveysList(survey); }; /** * 수정된 질문을 입력받아 기존 질문을 대체합니다. * @param question 수정할 질문 * @returns 없음 */ const updateQuestion = async (question: CreateQuestionData) => { const updatedQuestion = await surveyApi.updateQuestion( survey._id!, question ); const questions = survey.questions; const index = questions.findIndex((q) => q._id === question._id); if (index < 0) { return; } questions[index] = question; console.log("questions in update question:", questions); survey.questions = questions; updateLocalSurveysList(survey); }; const updateTitleComment = async (state: { title: string; comment: string; }) => { survey.title = state.title; survey.comment = state.comment; console.log("title in handle title and comment:", state); const result = await surveyApi.updateSurvey(survey); updateLocalSurveysList(survey); }; return (
isActive ? activeStyle + " rounded-l-3xl" : inActiveStyle + " rounded-l-3xl" } > 설문지 수정 (isActive ? activeStyle : inActiveStyle)} > 설문 미리보기 isActive ? activeStyle + " rounded-r-3xl" : inActiveStyle + " rounded-r-3xl" } > 응답결과
); }; export const useSurvey = () => { return useOutletContext(); };