Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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