Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
students
survey
Commits
05ae28b3
Commit
05ae28b3
authored
Jan 02, 2023
by
jang dong hyeok
Browse files
설문응답완료후 홈페이지로 이동
parent
afb55513
Changes
1
Show whitespace changes
Inline
Side-by-side
frontend/src/surveys/AnswerSurvey.tsx
View file @
05ae28b3
import
React
,
{
FormEvent
,
useEffect
,
useState
}
from
"
react
"
;
import
{
useParams
}
from
"
react-router-dom
"
;
import
{
useParams
,
useNavigate
}
from
"
react-router-dom
"
;
import
{
answerApi
,
surveyApi
}
from
"
../apis
"
;
import
{
catchErrors
}
from
"
../helpers
"
;
import
{
SpinnerIcon
}
from
"
../icons
"
;
...
...
@@ -12,6 +12,7 @@ export const AnswerSurvey = () => {
const
[
survey
,
setSurvey
]
=
useState
<
ISurvey
>
();
const
[
answers
,
setAnswers
]
=
useState
<
IAnswer
[]
>
([]);
const
[
error
,
setError
]
=
useState
(
""
);
const
navigate
=
useNavigate
();
useEffect
(()
=>
{
surveyId
&&
getSurvey
(
surveyId
);
...
...
@@ -30,6 +31,7 @@ export const AnswerSurvey = () => {
if
(
!
survey
)
{
return
;
}
if
(
confirm
(
"
제출하시겠습니까?
"
))
{
try
{
const
fileAnswers
=
answers
.
filter
(
(
answer
)
=>
answer
.
question
.
type
===
"
file
"
...
...
@@ -72,11 +74,15 @@ export const AnswerSurvey = () => {
);
console
.
log
(
"
result:
"
,
result
);
navigate
(
"
/
"
);
}
catch
(
error
)
{
catchErrors
(
error
,
setError
);
}
finally
{
// setLoading(false);
}
}
else
{
return
;
}
};
async
function
getSurvey
(
surveyId
:
string
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment