survey.api.ts 1003 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
import axios from "axios";
import { SurveyType } from "../types";
import baseUrl from "./baseUrl";

Jiwon Yoon's avatar
Jiwon Yoon committed
5
6
7
8
9
10
export const createSurvey = async (survey: SurveyType) => {
  const { data } = await axios.post(`${baseUrl}/surveys/create`, survey);
  return data;
};

export const getSurvey = async (surveyId: string) => {
jang dong hyeok's avatar
jang dong hyeok committed
11
  const { data } = await axios.get(`${baseUrl}/surveys/${surveyId}/edit`);
Jiwon Yoon's avatar
Jiwon Yoon committed
12
13
  return data;
};
14
15

export const ansSurvey = async (surveyId: string) => {
16
  const { data } = await axios.get(`${baseUrl}/surveys/${surveyId}`);
Jiwon Yoon's avatar
Jiwon Yoon committed
17
18
  return data;
};
19

20
21
22
23
24
//동혁
export const getSurveys = async () => {
  const { data } = await axios.get(`${baseUrl}/surveys/`);
  return data;
};
Jiwon Yoon's avatar
Jiwon Yoon committed
25
26
27

export const editSurvey = async (survey: SurveyType) => {
  const { data } = await axios.put(
jang dong hyeok's avatar
jang dong hyeok committed
28
    `${baseUrl}/surveys/${survey._id}/edit`,
Jiwon Yoon's avatar
Jiwon Yoon committed
29
30
31
32
    survey
  );
  return data;
};
33
34

export const deleteSurvey = async (surveyId: string) => {
jang dong hyeok's avatar
jang dong hyeok committed
35
  const { data } = await axios.delete(`${baseUrl}/surveys/${surveyId}/delete`);
36
37
  return data;
};