Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
561 geraldo 1
import React, { useState, useEffect } from "react";
2
import { axios } from '../../../utils';
3
import Section from "./section/Section";
4
import Spinner from "../../../shared/loading-spinner/Spinner";
5
 
6
const Test = (props) => {
7
 
8
    //init states
9
    const [success, setSuccess] = useState(false);
10
    const [error, setError] = useState(false);
11
    const [draft, setDraft] = useState(false);
12
    const [page, setPage] = useState(0);
13
 
14
    // get props
15
    const { backendVars, test, loading, setTest, action } = props;
16
 
17
    /**
590 geraldo 18
 * Send form data
19
 */
561 geraldo 20
    const handleSubmit = async () => {
21
        //set states
22
        setDraft(false);
23
        setSuccess(false);
24
        setError(false);
25
        // set form data
26
        const formData = new FormData();
27
        formData.append("content", JSON.stringify(test.content));
28
        formData.append("status",
29
            formCompleted() ?
590 geraldo 30
                backendVars.STATUS_PENDING :
561 geraldo 31
                backendVars.STATUS_DRAFT);
32
        // check if the form has at least one response
33
        if (leastOneAnswer()) {
591 geraldo 34
            await axios.post(action, formData).then((response) => {
35
                if (response.data.success) {
36
                    formCompleted() ?
37
                        setSuccess(true) :
38
                        setDraft(true)
39
                }
40
            })
561 geraldo 41
        } else {
42
            setError(true);
43
        }
44
    }
45
    /**
590 geraldo 46
     * Check if there are options to answer
561 geraldo 47
     * @returns
48
     */
49
    const formCompleted = () => {
50
        let completed = true;
51
        test.content.map((section) => {
590 geraldo 52
            if (section.type == 'multiple') {
53
                section.options.map((option) => {
54
                    //Validate if the answer is empty
55
                    if (!option.answer || option.answer.length == 0) {
56
                        completed = false;
57
                    }
58
                });
59
            } else {
60
                if (!section.answer || section.answer.length == 0) {
561 geraldo 61
                    completed = false;
62
                }
590 geraldo 63
            }
561 geraldo 64
        })
65
        return completed;
66
    }
67
    /**
68
     * Check if there is at least one answer
69
     * @returns
70
     */
71
    const leastOneAnswer = () => {
72
        let answer = false;
73
        test.content.map((section) => {
590 geraldo 74
            if (section.type == 'multiple') {
75
                section.options.map((option) => {
76
                    //Validate if the answer is not empty
77
                    if (option.answer != "" || option.answer.length != 0) {
78
                        answer = true;
79
                    }
80
                });
81
            } else {
82
                if (section.answer || section.answer.length != 0) {
561 geraldo 83
                    answer = true;
84
                }
590 geraldo 85
            }
561 geraldo 86
        })
87
        return answer;
88
    }
89
    /**
90
     * Cancel test and send to the list of forms
91
     * @returns
92
     */
93
    const handleGoBack = () => {
94
        setTest(null);
95
        setSuccess(false)
96
    }
97
    /**
98
     * componentDidMount
99
     */
100
    useEffect(() => {
101
        setPage(0);
102
    }, [action]);
103
 
104
    return (
105
        <div>
106
            {loading ? (
107
                <div className="row">
108
                    <Spinner />
109
                </div>
110
            ) : (
111
                <div>
112
                    {!success ? (
113
                        <div className="row test-section">
114
 
115
                            <div className="col-md-12 col-sm-12 col-xs-12">
116
                                <div className="company-title">
117
                                    <div className="section_admin_title_buttons">
118
                                        <h1 className="title">{test.name}</h1>
119
                                    </div>
120
                                </div>
121
                                <div
122
                                    dangerouslySetInnerHTML={{ __html: test.text }}
123
                                    className="description company-title"
124
                                ></div>
125
                            </div>
126
                            {test.content.length <= 0 ? (
127
                                <div className="col-md-12 col-sm-12 col-xs-12 text-center">
128
                                    {backendVars.LBL_DATATABLE_SZERORECORDS}
129
                                </div>
130
                            ) : (
131
                                <div className="col-md-12 col-sm-12 col-xs-12">
132
                                    <div className="company-title">
133
                                        {test.content.map((section, key) => {
134
                                            return (
135
                                                <Section
136
                                                    section={section}
137
                                                    index={key}
138
                                                    page={page}
139
                                                    setPage={setPage}
140
                                                    total={test.content.length}
141
                                                    backendVars={backendVars}
142
                                                />)
143
                                        })}
144
                                    </div>
145
                                </div>
146
                            )}
147
 
148
                            {draft &&
149
                                <div className="col-md-12 col-sm-12 col-xs-12">
150
                                    <div className="company-title">
151
                                        <div className="alert alert-success alert-dismissible fade show" role="alert" >
152
                                            {backendVars.LBL_TEXT_SAVE_CONTINUE_FORM}
153
                                            <button
154
                                                type="button"
155
                                                className="close"
156
                                                data-dismiss="alert" aria-label="Close"
157
                                                onClick={() => setDraft(false)}
158
 
159
                                            >
160
                                                <span aria-hidden="true">&times;</span>
161
                                            </button>
162
                                        </div>
163
                                    </div>
164
                                </div>
165
                            }
166
 
167
                            {error &&
168
 
169
                                <div className="col-md-12 col-sm-12 col-xs-12">
170
                                    <div className="company-title">
171
                                        <div className="alert alert-danger alert-dismissible fade show" role="alert" >
172
                                            {backendVars.LBL_ERROR_ANSWER_FORM}
173
                                            <button
174
                                                type="button"
175
                                                className="close"
176
                                                data-dismiss="alert" aria-label="Close"
177
                                                onClick={() => setError(false)}
178
 
179
                                            >
180
                                                <span aria-hidden="true">&times;</span>
181
                                            </button>
182
                                        </div>
183
                                    </div>
184
                                </div>
185
                            }
186
 
187
 
188
                            <div className="col-md-12 col-sm-12 col-xs-12 text-right">
189
                                <div className="company-title">
190
                                    <button
191
                                        type="button"
192
                                        className="btn btn-secondary"
193
                                        onClick={() => handleGoBack()}>
194
                                        {backendVars.LBL_GO_BACK}
195
                                    </button>
196
                                    <button
197
                                        type="buttton"
198
                                        className="btn btn-primary"
199
                                        onClick={() => handleSubmit()}>
200
                                        {backendVars.LBL_SAVE}
201
                                    </button>
202
                                </div>
203
                            </div>
204
                        </div>
205
                    ) : (
206
                        <div className="row">
207
                            <div className="company-title text-center">
208
                                <div className="section_admin_title_buttons">
209
                                    <h1 className="title">{backendVars.LBL_SUCCESS_SELF_EVALUATION}</h1>
210
                                </div>
211
                            </div>
212
                            <div className="col-md-12 col-sm-12 col-xs-12 text-center">
213
                                <br />
214
                                <button
215
                                    className="btn btn-sm btn-primary"
216
                                    onClick={() => handleGoBack()}>
217
                                    {backendVars.LBL_GO_BACK}
218
                                </button>
219
                            </div>
220
                        </div>
221
                    )}
222
                </div>
223
            )}
224
        </div>
225
    )
226
}
227
 
228
export default Test;