Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 399 | Rev 401 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
364 geraldo 1
import React, { useState } from "react";
306 geraldo 2
import Question from "../question/Question";
3
 
4
const Section = (props) => {
307 geraldo 5
 
364 geraldo 6
    // get props
399 geraldo 7
    const { section, backendVars, handleAnswer, page, setPage, total, index  } = props;
357 geraldo 8
 
364 geraldo 9
    //init states
365 geraldo 10
    const [errors, setErrors] = useState([]);
357 geraldo 11
 
399 geraldo 12
    console.log(index)
13
 
360 geraldo 14
    /**
15
     * Check if there are questions to answer
16
     * @returns
17
     */
18
    const validateSection = () => {
370 geraldo 19
        setErrors([]);
360 geraldo 20
        let formValid = true;
366 geraldo 21
        let messages = [];
360 geraldo 22
        section.questions.map((question) => {
23
            //Validate if the answer is empty
381 geraldo 24
            if (!question.answer || question.answer.length == 0) {
366 geraldo 25
                // set error message
365 geraldo 26
                messages.push(backendVars.LBL_EMPTY_ANSWER.replace('%n', question.position + 1));
360 geraldo 27
                formValid = false;
28
            }
365 geraldo 29
        });
372 geraldo 30
        setErrors(messages);
360 geraldo 31
        return formValid;
32
    }
357 geraldo 33
 
364 geraldo 34
    /**
35
     * Return to previous section
36
     * @returns
37
     */
391 geraldo 38
    const handlePrevious = () => {
39
        setErrors([]);
40
        setPage(page - 1);
41
    };
364 geraldo 42
 
391 geraldo 43
 
364 geraldo 44
    /**
45
     * Continue to the next section
46
     */
389 geraldo 47
    const handleNext = () => validateSection() && setPage(page + 1);
391 geraldo 48
 
364 geraldo 49
 
306 geraldo 50
    return (
312 geraldo 51
 
400 geraldo 52
        <div className="panel-group" hidden={page == index ? false : true}>
312 geraldo 53
            <div className="panel panel-default" id={`panel-${section.slug_section}`}>
54
                <div className="panel-heading">
392 geraldo 55
                    <h4 className="panel-title">{section.name}</h4>
312 geraldo 56
                </div>
57
                <div id={section.slug_section} className="panel-collapse in collapse show">
58
                    <div className="panel-body">
59
                        <div
60
                            dangerouslySetInnerHTML={{ __html: section.text }}
61
                            className="description"
62
                        />
63
                        <div className="row">
357 geraldo 64
                            {section.questions.map((question, i) => {
332 geraldo 65
                                return <Question
66
                                    question={question}
357 geraldo 67
                                    key={i}
332 geraldo 68
                                    backendVars={backendVars}
342 geraldo 69
                                    handleAnswer={handleAnswer}
332 geraldo 70
                                />;
312 geraldo 71
                            })}
72
                        </div>
357 geraldo 73
                        <div className="row">
365 geraldo 74
                            {errors.length > 0 &&
75
                                <div className="col-md-12 np-padding">
374 geraldo 76
                                    {errors.map((error, index) => {
372 geraldo 77
                                        return (
392 geraldo 78
                                            <div class="alert alert-danger alert-dismissible fade show" role="alert" key={index}>
79
                                                {error}
80
                                                <button type="button" class="close" data-dismiss="alert" aria-label="Close">
81
                                                    <span aria-hidden="true">&times;</span>
82
                                                </button>
83
                                            </div>);
365 geraldo 84
                                    })}
364 geraldo 85
                                </div>
365 geraldo 86
                            }
367 geraldo 87
                            <div className="col-md-12 np-padding">
363 geraldo 88
                                <ul class="wizard">
368 geraldo 89
                                    <li class="previous">
400 geraldo 90
                                        {index != 0 &&
365 geraldo 91
                                            <button
92
                                                type="button"
93
                                                className="btn btn-secondary"
94
                                                onClick={() => handlePrevious()}
95
                                            >
96
                                                {backendVars.LBL_SELF_EVALUATION_TEST_FORM_PREVIOUS}
97
                                            </button>
368 geraldo 98
                                        }
99
                                    </li>
100
                                    <li class="next">
400 geraldo 101
                                        {index != total - 1 &&
365 geraldo 102
                                            <button
103
                                                type="button"
104
                                                onClick={() => handleNext()}
105
                                                className="btn btn-secondary">
106
                                                {backendVars.LBL_SELF_EVALUATION_TEST_FORM_NEXT}
107
                                            </button>
368 geraldo 108
                                        }
109
                                    </li>
359 geraldo 110
                                </ul>
357 geraldo 111
                            </div>
112
                        </div>
312 geraldo 113
                    </div>
114
                </div>
306 geraldo 115
            </div>
116
        </div>
117
    )
118
}
119
 
120
export default Section;