Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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