|
|
|
@ -12,6 +12,8 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
const [description, setDescription] = useState(null); |
|
|
|
|
const [questionarePopUp, setQuestionairePopUp] = useState(false); |
|
|
|
|
const [showCoursesInList, setShowCoursesInList] = useState([]); |
|
|
|
|
const [choosedQuestionaries, seChoosedQuestionaries] = useState([]); |
|
|
|
|
console.log(choosedQuestionaries) |
|
|
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
|
questoinaresLists.map(item => showCoursesInList.push(false)); |
|
|
|
@ -27,7 +29,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
numberOfQuestions: 60, |
|
|
|
|
courses: [ |
|
|
|
|
{ |
|
|
|
|
sortId: 1,
|
|
|
|
|
sortId: 1, |
|
|
|
|
title: 'ادبیات فارسی', |
|
|
|
|
coefficient: 3, |
|
|
|
|
questionStart: 1, |
|
|
|
@ -35,7 +37,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
sortId: 2,
|
|
|
|
|
sortId: 2, |
|
|
|
|
title: 'عربی', |
|
|
|
|
coefficient: 3, |
|
|
|
|
questionStart: 21, |
|
|
|
@ -43,7 +45,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
sortId: 3,
|
|
|
|
|
sortId: 3, |
|
|
|
|
title: 'دینی', |
|
|
|
|
coefficient: 2, |
|
|
|
|
questionStart: 36, |
|
|
|
@ -51,7 +53,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
sortId: 4,
|
|
|
|
|
sortId: 4, |
|
|
|
|
title: 'زبان خارجه', |
|
|
|
|
coefficient: 1, |
|
|
|
|
questionStart: 47, |
|
|
|
@ -61,12 +63,12 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
id: 1, |
|
|
|
|
id: 2, |
|
|
|
|
title: 'دفترچه عمومی', |
|
|
|
|
numberOfQuestions: 60, |
|
|
|
|
courses: [ |
|
|
|
|
{ |
|
|
|
|
sortId: 1,
|
|
|
|
|
sortId: 1, |
|
|
|
|
title: 'ادبیات فارسی', |
|
|
|
|
coefficient: 3, |
|
|
|
|
questionStart: 1, |
|
|
|
@ -74,7 +76,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
sortId: 2,
|
|
|
|
|
sortId: 2, |
|
|
|
|
title: 'عربی', |
|
|
|
|
coefficient: 3, |
|
|
|
|
questionStart: 21, |
|
|
|
@ -82,7 +84,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
sortId: 3,
|
|
|
|
|
sortId: 3, |
|
|
|
|
title: 'دینی', |
|
|
|
|
coefficient: 2, |
|
|
|
|
questionStart: 36, |
|
|
|
@ -90,7 +92,7 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
sortId: 4,
|
|
|
|
|
sortId: 4, |
|
|
|
|
title: 'زبان خارجه', |
|
|
|
|
coefficient: 1, |
|
|
|
|
questionStart: 47, |
|
|
|
@ -119,48 +121,60 @@ const AddQuestions = ({ grades, addExamState, dispatch, stepClick, backStep }) = |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div className="w-full flex items-center flex-col overflow-x-hidden mt-6 px-2 overflow-scroll" style={{height: '400px'}}> |
|
|
|
|
<div className="w-full flex items-center flex-col overflow-x-hidden mt-6 px-2 overflow-scroll" style={{ height: '400px' }}> |
|
|
|
|
{ |
|
|
|
|
questoinaresLists.map( |
|
|
|
|
(item, index) => ( |
|
|
|
|
<> |
|
|
|
|
<div className="w-full flex items-center py-2 justify-between border-b pl-8 border-gray-300"> |
|
|
|
|
<Checkbox name={`PICK_QUESTIONARE_${index}`} />
|
|
|
|
|
<h2 className="text-red26 font-bold">{item.title}</h2> |
|
|
|
|
<h4>تعداد سوالات: {item.numberOfQuestions}</h4> |
|
|
|
|
<p>تعداد دروس: {item.courses.length}</p> |
|
|
|
|
<p className="cursor-pointer" onClick={() => { |
|
|
|
|
let newArray = [...showCoursesInList]; |
|
|
|
|
|
|
|
|
|
newArray[index] = !newArray[index]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setShowCoursesInList(newArray) |
|
|
|
|
|
|
|
|
|
}}>نمایش دروس</p> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
{ |
|
|
|
|
showCoursesInList[index] && <div className="w-full flex flex-col"> |
|
|
|
|
{ |
|
|
|
|
item.courses.map((course) => ( |
|
|
|
|
<div className="w-full flex items-center text-right px-8 py-1 border-b border-gray-100" key={`COURSE_IN_LIST__${course.sortId}`}> |
|
|
|
|
<p className="w-1/3"> |
|
|
|
|
{course.title} |
|
|
|
|
</p> |
|
|
|
|
<p className="w-1/3"> |
|
|
|
|
ضریب : {course.coefficient} |
|
|
|
|
</p> |
|
|
|
|
<p |
|
|
|
|
(item, index) => ( |
|
|
|
|
<> |
|
|
|
|
<div className="w-full flex items-center py-2 justify-between border-b pl-8 border-gray-300"> |
|
|
|
|
<Checkbox name={`PICK_QUESTIONARE_${index}`} |
|
|
|
|
onChange={(e) =>
|
|
|
|
|
e.target.checked ?
|
|
|
|
|
seChoosedQuestionaries([...choosedQuestionaries, item]) |
|
|
|
|
:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
seChoosedQuestionaries(choosedQuestionaries.filter(itm => itm.id !== item.id)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/> |
|
|
|
|
<h2 className="text-red26 font-bold">{item.title}</h2> |
|
|
|
|
<h4>تعداد سوالات: {item.numberOfQuestions}</h4> |
|
|
|
|
<p>تعداد دروس: {item.courses.length}</p> |
|
|
|
|
<p className="cursor-pointer" onClick={() => { |
|
|
|
|
let newArray = [...showCoursesInList]; |
|
|
|
|
|
|
|
|
|
newArray[index] = !newArray[index]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setShowCoursesInList(newArray) |
|
|
|
|
|
|
|
|
|
}}>نمایش دروس</p> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
{ |
|
|
|
|
showCoursesInList[index] && <div className="w-full flex flex-col"> |
|
|
|
|
{ |
|
|
|
|
item.courses.map((course) => ( |
|
|
|
|
<div className="w-full flex items-center text-right px-8 py-1 border-b border-gray-100" key={`COURSE_IN_LIST__${course.sortId}`}> |
|
|
|
|
<p className="w-1/3"> |
|
|
|
|
{course.title} |
|
|
|
|
</p> |
|
|
|
|
<p className="w-1/3"> |
|
|
|
|
ضریب : {course.coefficient} |
|
|
|
|
</p> |
|
|
|
|
<p |
|
|
|
|
className="w-1/3" |
|
|
|
|
>از سوال {course.questionStart} تا سوال {course.questionEnd}</p> |
|
|
|
|
</div> |
|
|
|
|
) ) |
|
|
|
|
} |
|
|
|
|
>از سوال {course.questionStart} تا سوال {course.questionEnd}</p> |
|
|
|
|
</div> |
|
|
|
|
)) |
|
|
|
|
} |
|
|
|
|
</div> |
|
|
|
|
} |
|
|
|
|
</> |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
</> |
|
|
|
|
) |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
</div> |
|
|
|
|