Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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