diff --git a/src/assets/styles/viewForm.module.scss b/src/assets/styles/viewForm.module.scss
index 8655f85..8565ae0 100644
--- a/src/assets/styles/viewForm.module.scss
+++ b/src/assets/styles/viewForm.module.scss
@@ -16,7 +16,6 @@
overflow-y: auto;
width: 70%;
height: 80%;
- // box-shadow: 0 -1px 5px 1px rgb(200, 200, 200);
border: 2px solid rgb(220, 220, 220);
&::-webkit-scrollbar {
width: 7px;
@@ -33,6 +32,15 @@
justify-content: space-between;
align-items: center;
padding: 10px 20px;
+ &__title {
+ font-size: 17px;
+ font-weight: bold;
+ font-family: "Montserrat", sans-serif;
+ color: rgb(100, 100, 100);
+ }
+ &__id {
+
+ }
}
&__content {
width: 100%;
@@ -55,7 +63,6 @@
}
.footer {
- // box-shadow: 0 1px 5px 1px rgb(220, 220, 220);
width: 70%;
height: 10%;
display: flex;
diff --git a/src/components/GeneratingFormFields.jsx b/src/components/GeneratingFormFields.jsx
index e3786c1..250ea53 100644
--- a/src/components/GeneratingFormFields.jsx
+++ b/src/components/GeneratingFormFields.jsx
@@ -15,7 +15,6 @@ const GeneratingFormFields = ({newForm, listTypeAnswer, answers, updateAnswersFo
postfix: i,
optionAnswer: item.optionAnswer,
answers: answers ? answers : false,
- id: i,
updateAnswersForm: updateAnswersForm ? updateAnswersForm : false
})
}
diff --git a/src/components/typeAnswer/DropDownList.jsx b/src/components/typeAnswer/DropDownList.jsx
index 8b3c99c..396b523 100644
--- a/src/components/typeAnswer/DropDownList.jsx
+++ b/src/components/typeAnswer/DropDownList.jsx
@@ -1,18 +1,14 @@
import React, { useState } from "react";
import classes from "../../assets/styles/components/typeAnswer/dropDownList.module.scss"
-const DropDownList = (props) => {
+const DropDownList = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
- {/*
*/}
diff --git a/src/components/typeAnswer/InputDate.jsx b/src/components/typeAnswer/InputDate.jsx
index 458f9b5..2284ff6 100644
--- a/src/components/typeAnswer/InputDate.jsx
+++ b/src/components/typeAnswer/InputDate.jsx
@@ -1,10 +1,14 @@
import React from "react";
import classes from "../../assets/styles/components/typeAnswer/inputDate.module.scss"
-const InputDate = (props) => {
+const InputDate = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
-
+ updateAnswersForm(e.target.value, postfix) : () => {}}
+ />
)
}
diff --git a/src/components/typeAnswer/InputFile.jsx b/src/components/typeAnswer/InputFile.jsx
index d50449b..ab1a0d4 100644
--- a/src/components/typeAnswer/InputFile.jsx
+++ b/src/components/typeAnswer/InputFile.jsx
@@ -1,17 +1,16 @@
import React, { useState } from "react";
import classes from "../../assets/styles/components/typeAnswer/inputFile.module.scss"
-const InputFile = (props) => {
+const InputFile = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
- setFile(event.target.value)}
+ value={answers ? answers[postfix].answer : ""}
+ onChange={updateAnswersForm ? (e) => updateAnswersForm(e.target.value, postfix) : () => {}}
>
)
diff --git a/src/components/typeAnswer/InputMultipleRadio.jsx b/src/components/typeAnswer/InputMultipleRadio.jsx
index 281f880..deb2d54 100644
--- a/src/components/typeAnswer/InputMultipleRadio.jsx
+++ b/src/components/typeAnswer/InputMultipleRadio.jsx
@@ -1,40 +1,40 @@
import React from "react";
import classes from "../../assets/styles/components/typeAnswer/inputMultiple.module.scss"
-const InputMultipleRadio = (props) => {
+const InputMultipleRadio = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
function checkRadio(i) {
- if (props.answers[props.id].answer) {
- return props.answers[props.id].answer.some(item => item === Number(i))
+ if (answers[postfix].answer) {
+ return answers[postfix].answer.some(item => item === Number(i))
}
return false
}
function updateStateCheckbox(i) {
- if (props.updateAnswersForm) {
- if (props.answers[props.id].answer.some((item) => item === Number(i))) {
- props.answers[props.id].answer.splice(props.answers[props.id].answer.indexOf(i), 1)
+ if (updateAnswersForm) {
+ if (answers[postfix].answer.some((item) => item === Number(i))) {
+ answers[postfix].answer.splice(answers[postfix].answer.indexOf(i), 1)
}
else {
- props.answers[props.id].answer.push(i)
+ answers[postfix].answer.push(i)
}
- props.updateAnswersForm(props.answers[props.id].answer, props.id)
+ updateAnswersForm(answers[postfix].answer, postfix)
}
}
return (
- {props.optionAnswer.map((item, i) =>
+ {optionAnswer.map((item, i) =>
updateStateCheckbox(i)}
/>
-
+
)}
diff --git a/src/components/typeAnswer/InputRadio.jsx b/src/components/typeAnswer/InputRadio.jsx
index c9e27a6..522ac6c 100644
--- a/src/components/typeAnswer/InputRadio.jsx
+++ b/src/components/typeAnswer/InputRadio.jsx
@@ -1,21 +1,21 @@
import React from "react";
import classes from "../../assets/styles/components/typeAnswer/inputRadio.module.scss"
-const InputRadio = (props) => {
+const InputRadio = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
- {props.optionAnswer.map((item, i) =>
+ {optionAnswer.map((item, i) =>
props.updateAnswersForm(Number(e.target.value), props.id) : () => {}}
+ checked={answers ? answers[postfix].answer === i : false}
+ onChange={updateAnswersForm ? (e) => updateAnswersForm(Number(e.target.value), postfix) : () => {}}
/>
-
+
)}
diff --git a/src/components/typeAnswer/InputText.jsx b/src/components/typeAnswer/InputText.jsx
index 0796ccb..ffb48e0 100644
--- a/src/components/typeAnswer/InputText.jsx
+++ b/src/components/typeAnswer/InputText.jsx
@@ -1,14 +1,14 @@
import React from "react";
import classes from "../../assets/styles/components/typeAnswer/inputText.module.scss"
-const InputText = (props) => {
+const InputText = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
props.updateAnswersForm(e.target.value, props.id) : () => {}}/>
+ value={answers ? answers[postfix].answer : ""}
+ onChange={updateAnswersForm ? (e) => updateAnswersForm(e.target.value, postfix) : () => {}}/>
)
}
diff --git a/src/components/typeAnswer/TextArea.jsx b/src/components/typeAnswer/TextArea.jsx
index bd24a33..2b4d2b0 100644
--- a/src/components/typeAnswer/TextArea.jsx
+++ b/src/components/typeAnswer/TextArea.jsx
@@ -1,13 +1,13 @@
import React from "react";
import classes from "../../assets/styles/components/typeAnswer/textArea.module.scss"
-const TextArea = (props) => {
+const TextArea = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
)
diff --git a/src/components/typeAnswer/YesNo.jsx b/src/components/typeAnswer/YesNo.jsx
index d64679f..dc411ab 100644
--- a/src/components/typeAnswer/YesNo.jsx
+++ b/src/components/typeAnswer/YesNo.jsx
@@ -1,15 +1,31 @@
import React from "react";
import classes from "../../assets/styles/components/typeAnswer/yesNo.module.scss"
-const YesNo = (props) => {
+const YesNo = ({postfix, optionAnswer, answers, updateAnswersForm}) => {
return (
diff --git a/src/pages/ViewForm.jsx b/src/pages/ViewForm.jsx
index 9fb2910..678bc86 100644
--- a/src/pages/ViewForm.jsx
+++ b/src/pages/ViewForm.jsx
@@ -51,7 +51,7 @@ const ViewForm = () => {
- console.log(answers)}/>
+ {}}/>
: