|
|
|
|
|
import React, { useEffect, useState } from "react"; |
|
|
import { connect } from "react-redux"; |
|
|
import Button from "../../../components/Button"; |
|
|
import DatePicker from "react-multi-date-picker"; |
|
|
import TimePicker from "react-multi-date-picker/plugins/time_picker" |
|
|
import persian from "react-date-object/calendars/persian" |
|
|
import persian_fa from "react-date-object/locales/persian_fa" |
|
|
import InputIcon from "react-multi-date-picker/components/input_icon" |
|
|
import RangeDatePicker from "../../../components/RangeDatePicker"; |
|
|
import FileInput from "../../../components/fileInput"; |
|
|
import { exam, file } from "../../../redux/actions"; |
|
|
import moment from "jalali-moment"; |
|
|
import loadingGiff from "../../../assets/img/Rolling-2s-223px.gif"; |
|
|
|
|
|
let oldExamAdd = null; |
|
|
const AddExamDescription = ({ |
|
|
grades, |
|
|
addExamState, |
|
|
dispatch, |
|
|
stepClick, |
|
|
backStep, |
|
|
uploadImg, |
|
|
loading, |
|
|
lastUploadId, |
|
|
addExamDescription, |
|
|
parentAdd, |
|
|
lastExamAdd, |
|
|
addExamLoading, |
|
|
}) => { |
|
|
const [name, setName] = useState(null); |
|
|
const [type, setType] = useState(null); |
|
|
const [description, setDescription] = useState(null); |
|
|
const [duration, setDuration] = useState(null); |
|
|
const [date, setDate] = useState({ format: "MM/DD/YYYY" }); |
|
|
const [startDate, setStartDate] = useState(null); |
|
|
const [endDate, setEndDate] = useState(null); |
|
|
const [questionCount, setQuestionCount] = useState(null); |
|
|
// const [budgetFileId,setBudgetFileId]=useState(null); |
|
|
|
|
|
useEffect(() => { |
|
|
oldExamAdd = lastExamAdd; |
|
|
}, []); |
|
|
|
|
|
useEffect(() => { |
|
|
console.log("a1"); |
|
|
if (lastExamAdd && lastExamAdd !== oldExamAdd) { |
|
|
console.log("a2"); |
|
|
addExamDescription(payload); |
|
|
stepClick(); |
|
|
} |
|
|
}, [lastExamAdd]); |
|
|
|
|
|
const payload = { |
|
|
name: name, |
|
|
description: description, |
|
|
type: type, |
|
|
duration, |
|
|
startDate, |
|
|
endDate, |
|
|
budgetFileId: lastUploadId, |
|
|
}; |
|
|
console.log("uuuuuuuuuuu"); |
|
|
const CostumeDatePickerInput = ({ |
|
|
openCalendar, |
|
|
value, |
|
|
handleValueChange, |
|
|
title, |
|
|
index, |
|
|
}) => { |
|
|
return ( |
|
|
<input |
|
|
onFocus={openCalendar} |
|
|
value={value} |
|
|
// onChange={(e) => changeHandler(e)} |
|
|
placeholder={title} |
|
|
className="create-exame-date-input w-full h-14 rounded-lg p-3 border border-gray-200 text-blue3A outline-blue-300" |
|
|
/> |
|
|
); |
|
|
}; |
|
|
|
|
|
const dateChangeHandler = (index) => { |
|
|
let inputs = document.querySelectorAll(".create-exame-date-input"); |
|
|
console.log(inputs[index].value); |
|
|
let dateList = inputs[index].value.split(" ")[0].split("/"); |
|
|
let timeList = inputs[index].value.split(" ")[1].split(":"); |
|
|
console.log(dateList); |
|
|
console.log(timeList); |
|
|
console.log(Number(dateList[0])); |
|
|
}; |
|
|
const [file, setFile] = useState(null); |
|
|
const uploadImghandler1 = (e) => { |
|
|
console.log(e); |
|
|
setFile(e); |
|
|
uploadImg({ |
|
|
file: e, |
|
|
}); |
|
|
// setUploadImgNumber(1); |
|
|
}; |
|
|
|
|
|
const submitHandler = () => { |
|
|
// let questionCount = 0; |
|
|
// for (let i = 0; i < addExamState.courses.length; i++) { |
|
|
// questionCount += addExamState.courses[i].selectedQuestions.length; |
|
|
// } |
|
|
parentAdd({ |
|
|
name: name, |
|
|
description: description, |
|
|
gradeId: addExamState.grade, |
|
|
// startDate: moment( |
|
|
// `${addExamState.startDate?.year}/${addExamState.startDate?.month}/${addExamState.startDate?.day} ${addExamState.startDate?.hour}:${addExamState.startDate?.minute}` |
|
|
// ) |
|
|
// .locale("en") |
|
|
// .format("YYYY-MM-DD HH:mm"), |
|
|
startDate: moment |
|
|
.from( |
|
|
`${startDate?.year}/${startDate?.month}/${startDate?.day} ${startDate?.hour}:${startDate?.minute}`, |
|
|
"fa", |
|
|
"YYYY/MM/DD HH:mm" |
|
|
) |
|
|
.format("YYYY-MM-DD HH:mm"), |
|
|
endDate: moment |
|
|
.from( |
|
|
`${endDate?.year}/${endDate?.month}/${endDate?.day} ${endDate?.hour}:${endDate?.minute}`, |
|
|
"fa", |
|
|
"YYYY/MM/DD HH:mm" |
|
|
) |
|
|
.format("YYYY-MM-DD HH:mm"), |
|
|
duration: duration || 60, |
|
|
// duration:30, |
|
|
type: type, |
|
|
//questionCount: addExamState.questions.length, |
|
|
questionCount: Number(questionCount), |
|
|
examGroupId: addExamState.groupId, |
|
|
levelCriterion: null, |
|
|
budgetFileId: lastUploadId, |
|
|
}); |
|
|
// stepClick(); |
|
|
}; |
|
|
|
|
|
// useEffect(() => {}, [lastUploadId]); |
|
|
return ( |
|
|
<> |
|
|
<div className="w-full"> |
|
|
<div className="flex py-10 items-start px-10 border-b border-gray-300"> |
|
|
<div className="flex flex-col w-1/6"> |
|
|
<div className="text-blue3A text-lg font-bold text-right px-4 border-r-4 border-blue65"> |
|
|
تنظیمات آزمون |
|
|
</div> |
|
|
<p className="text-sm text-right font-bold pt-4 text-gray-500"> |
|
|
لطفا مشخضات آزمون را تکمیل کنید |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div className="flex w-5/6 pl-[10%] flex-col"> |
|
|
<div className="flex items-center justify-between"> |
|
|
<input |
|
|
type="text" |
|
|
placeholder="نام آزمون" |
|
|
className="w-1/2 bg-white px-4 h-14 border border-gray-300 rounded-lg text-blue3A outline-blue65" |
|
|
onChange={(e) => setName(e.target.value)} |
|
|
/> |
|
|
<DatePicker |
|
|
format="YYYY/MM/DD HH:mm:ss" |
|
|
calendar={persian} |
|
|
locale={persian_fa} |
|
|
// onChange={() => dateChangeHandler(0)} |
|
|
onChange={setStartDate} |
|
|
renderButton={(direction, handleClick) => ( |
|
|
<button |
|
|
className="text-blue-500 font-bold mx-2" |
|
|
onClick={handleClick} |
|
|
> |
|
|
{direction === "right" ? ">" : "<"} |
|
|
</button> |
|
|
)} |
|
|
render={ |
|
|
<CostumeDatePickerInput title="تاریخ و زمان شروع آزمون" /> |
|
|
} |
|
|
plugins={[<TimePicker hideSeconds={true} position="bottom" />]} |
|
|
/> |
|
|
<DatePicker |
|
|
format="YYYY/MM/DD HH:mm:ss" |
|
|
calendar={persian} |
|
|
locale={persian_fa} |
|
|
onChange={setEndDate} |
|
|
renderButton={(direction, handleClick) => ( |
|
|
<button |
|
|
className="text-blue-500 font-bold mx-2" |
|
|
onClick={handleClick} |
|
|
> |
|
|
{direction === "right" ? ">" : "<"} |
|
|
</button> |
|
|
)} |
|
|
render={ |
|
|
<CostumeDatePickerInput title="تاریخ و زمان پایان آزمون" /> |
|
|
} |
|
|
plugins={[<TimePicker hideSeconds={true} position="bottom" />]} |
|
|
/> |
|
|
</div> |
|
|
<textarea |
|
|
className="w-full mt-6 h-60 border border-gray-300 rounded-lg p-4 outline-blue65 text-blue3A" |
|
|
placeholder="توضیحات آزمون" |
|
|
onChange={(e) => setDescription(e.target.value)} |
|
|
></textarea> |
|
|
<div className="w-full flex items-center justify-between mt-6"> |
|
|
<input |
|
|
type="text" |
|
|
placeholder="مدت زمان آزمون(دقیقه)" |
|
|
className="w-1/3 bg-white px-4 h-14 border border-gray-300 rounded-lg text-blue3A outline-blue65" |
|
|
onChange={(e) => setDuration(e.target.value)} |
|
|
/> |
|
|
<input |
|
|
type="text" |
|
|
placeholder="تعداد سؤالات آزمون" |
|
|
className="w-1/3 bg-white px-4 h-14 border border-gray-300 rounded-lg text-blue3A outline-blue65" |
|
|
onChange={(e) => setQuestionCount(e.target.value)} |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div className="flex pt-10 items-start px-10 "> |
|
|
<div className="flex flex-col w-1/6"> |
|
|
<div className="text-blue3A text-lg font-bold text-right px-4 border-r-4 border-blue65"> |
|
|
نوع آزمون |
|
|
</div> |
|
|
<p className="text-sm text-right font-bold pt-4 text-gray-500"> |
|
|
لطفا یک مدل از آزمون را انتخاب کنید |
|
|
</p> |
|
|
</div> |
|
|
|
|
|
<div className="flex w-5/6 flex-wrap"> |
|
|
<div |
|
|
className={`w-1/6 border ${ |
|
|
type == 1 |
|
|
? "border-red52 text-red52 bg-pinkF5" |
|
|
: " border-gray-300 text-blue3A bg-white" |
|
|
} font-bold cursor-pointer py-10 m-4 rounded-xl`} |
|
|
onClick={() => setType(1)} |
|
|
> |
|
|
بانک سوالات |
|
|
</div> |
|
|
<div |
|
|
className={`w-1/6 border ${ |
|
|
type == 2 |
|
|
? "border-red52 text-red52 bg-pinkF5" |
|
|
: " border-gray-300 text-blue3A bg-white" |
|
|
} font-bold cursor-pointer py-10 m-4 rounded-xl`} |
|
|
onClick={() => setType(2)} |
|
|
> |
|
|
دفترچه سوالات |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div className="w-full flex items-start border-t border-gray-300 mt-10 p-10"> |
|
|
<div className="flex flex-col w-2/6"> |
|
|
<div className="text-blue3A text-lg font-bold text-right px-4 border-r-4 border-blue65"> |
|
|
بودجهبندی آزمون |
|
|
</div> |
|
|
<p className="text-sm text-right font-bold pt-4 text-gray-500"> |
|
|
لطفا عکس بودجهبندی آزمون را آپلود کنید. |
|
|
</p> |
|
|
</div> |
|
|
<div className="w-4/6 ltr"> |
|
|
<FileInput |
|
|
title="بارگزاری عکس بودجهبندی آزمون" |
|
|
file={file} |
|
|
id={2} |
|
|
onChange={(e) => uploadImghandler1(e)} |
|
|
deleteHandler={(e) => setFile(null)} |
|
|
loading={loading} |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div className="w-full flex mt-10 w-full px-10 justify-end"> |
|
|
<button |
|
|
className=" mx-2 h-12 mt-4 text-red52 font-bold flex items-center justify-center" |
|
|
onClick={() => backStep()} |
|
|
> |
|
|
{" "} |
|
|
بازگشت به مرحله قبل{" "} |
|
|
</button> |
|
|
{!addExamLoading && ( |
|
|
<Button |
|
|
title="مرحله بعدی" |
|
|
className="w-1/12" |
|
|
onClick={submitHandler} |
|
|
/> |
|
|
)} |
|
|
{addExamLoading && ( |
|
|
<div className="w-1/12 h-12 flex items-center justify-center text-white bg-red52 rounded-lg"> |
|
|
<img src={loadingGiff} alt="loadingGiff" className="h-9" /> |
|
|
</div> |
|
|
)} |
|
|
</div> |
|
|
</div> |
|
|
</> |
|
|
); |
|
|
}; |
|
|
|
|
|
const mapStateToProps = (state) => ({ |
|
|
grades: state.publicApi.grades, |
|
|
addExamState: state.addExamReduser, |
|
|
loading: state.file.loading, |
|
|
lastUploadId: state.file.lastUpload, |
|
|
lastExamAdd: state.exam2.lastExamAdd, |
|
|
addExamLoading: state.exam2.loading |
|
|
}); |
|
|
|
|
|
const mapDispatchToProps = { |
|
|
uploadImg: file.upload, |
|
|
addExamDescription : exam.addExamDescription, |
|
|
parentAdd: exam.parentAdd |
|
|
}; |
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(AddExamDescription); |