-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
384 lines (314 loc) · 17.1 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
import React, {
useCallback, useContext,
useEffect,
useState
} from 'react';
import data from "./data/data.json";
import "./static/css/normalize.css"
import "./static/style/main.scss"
import {Route, Routes, HashRouter as Router} from 'react-router-dom';
import avatarImg from "./static/image/city.jpg"
import {Helmet} from "react-helmet-async";
import {UserContext} from './components/MyProviders/MyProviders';
import ModalSignInSignUp from "./components/ModalSignInSignUp/ModalSignInSignUp";
import {useRequestProcessor} from "./requestProcessor";
import axiosClient from "./axios";
import Preloader from "./components/Preloader/Preloader";
import PrivateRoute from "./components/PrivateRoute/PrivateRoute";
import number = CSS.number;
import {useAuth} from "./components/AuthContext/AuthContext";
const HistoryTimeline = React.lazy(() => import('./components/HistoryTimeline/HistoryTimeline'));
const QuizBlock = React.lazy(() => import('./components/QuizBlock/QuizBlock'));
const Article = React.lazy(() => import('./components/Article/Article'));
const Header = React.lazy(() => import('./components/Header/Header'));
const ProfilePage = React.lazy(() => import('./components/ProfilePage/ProfilePage'));
const MainPageContent = React.lazy(() => import('./components/MainPageContent/MainPageContent'));
const Footer = React.lazy(() => import('./components/Footer/Footer'));
function App() {
const [selectedArticle, setSelectedArticle] = useState<number>(0)
const [selectedSubArticle, setSelectedSubArticle] = useState<null | number>(null);
const [questionsArray, setQuestionsArray] = useState(data.questions)
const [quizOptionsArray, setQuizOptionsArray] = useState(data.options)
const [correctAnswers, setCorrectAnswers] = useState(data.correctAnswers)
const [questionsArraySubArticle, setQuestionsArraySubArticle] = useState(data.questions)
const [quizOptionsArraySubArticle, setQuizOptionsArraySubArticle] = useState(data.options)
const [correctAnswersSubArticle, setCorrectAnswersSubArticle] = useState(data.correctAnswers)
const {isAuthenticated} = useAuth();
const [buttonStates, setButtonStates] = useState(
data.historyList.map((_, index) => index === 0) // Початково активна лише перша кнопка
);
const [subArticleSuccessLevels, setSubArticleSuccessLevels] = useState([]);
// const [successLevels, setSuccessLevels] = useState(data.historyList.map((_, index) => index === -1))
const [successLevels, setSuccessLevels] = useState<number>(0)
console.log(successLevels);
const [achievements, setAchievements] = useState<[] | string[]>([])
const [allAnswerIsCorrect, setAllAnswerIsCorrect] = useState(false)
const [subArticleAllAnswerIsCorrect, setSubArticleAllAnswerIsCorrect] = useState(false);
console.log(subArticleAllAnswerIsCorrect);
const allAnswerIsCorrectFunc = useCallback(() => {
console.log("selectedArticle", selectedArticle);
console.log(buttonStates);
setButtonStates((prevStates) => {
const updatedStates = [...prevStates];
updatedStates[selectedArticle + 1] = true;
return updatedStates;
});
console.log("selectedArticle", selectedArticle);
// setSuccessLevels((prevStates) => {
// const updatedStates = [...prevStates];
// updatedStates[selectedArticle] = true;
// return updatedStates;
// });
setAchievements((prevAchievements) => {
const newAchievements = [...prevAchievements];
newAchievements[selectedArticle] = data.historyList[selectedArticle].achieved;
return newAchievements;
});
}, [selectedArticle, setButtonStates, setAchievements]);
useEffect(() => {
const effect = () => {
if (allAnswerIsCorrect) {
allAnswerIsCorrectFunc();
setAllAnswerIsCorrect(false);
// for new level reload answer
}
};
effect();
}, [allAnswerIsCorrect, selectedArticle, allAnswerIsCorrectFunc]);
useEffect(() => {
if (selectedSubArticle !== null) {
const selectedSubArticleTest = data.historyList[selectedArticle]?.subtopics?.[selectedSubArticle]?.subArticleTest;
if (selectedSubArticleTest?.questions && selectedSubArticleTest?.options && selectedSubArticleTest?.correctAnswers) {
const {questions, options, correctAnswers} = selectedSubArticleTest;
setQuestionsArraySubArticle(questions);
setQuizOptionsArraySubArticle(options);
setCorrectAnswersSubArticle(correctAnswers);
} else {
setQuestionsArraySubArticle(data.questions);
setQuizOptionsArraySubArticle(data.options);
setCorrectAnswersSubArticle(data.correctAnswers);
}
} else {
const selectedArticleTestData = data.historyList[selectedArticle]?.mainArticleTest;
if (selectedArticleTestData?.questions && selectedArticleTestData?.options && selectedArticleTestData?.correctAnswers) {
const {questions, options, correctAnswers} = selectedArticleTestData;
setQuestionsArray(questions);
setQuizOptionsArray(options);
setCorrectAnswers(correctAnswers);
} else {
setQuestionsArray(data.questions);
setQuizOptionsArray(data.options);
setCorrectAnswers(data.correctAnswers);
}
}
}, [selectedArticle, selectedSubArticle]);
useEffect(() => {
const effect = () => {
if (selectedSubArticle !== null && subArticleAllAnswerIsCorrect) {
// handleSubArticleQuizComplete();
setSubArticleAllAnswerIsCorrect(false);
// for new level reload answer
}
};
effect();
}, [subArticleAllAnswerIsCorrect, selectedSubArticle, selectedArticle]);
console.log("subArticleSuccessLevels:::", subArticleSuccessLevels);
const handleQuizComplete = (results: { correct: number; incorrect: number }) => {
// Ваш код для обробки результатів тесту
console.log('Результати тесту:');
console.log(`Правильних відповідей: ${results.correct}`);
console.log(`Неправильних відповідей: ${results.incorrect}`);
};
const handleNextLevel = () => {
setSelectedArticle(selectedArticle + 1);
};
const [openModal, setOpenModal] = React.useState(false);
const [showSignInForm, setShowSignInForm] = React.useState(false)
const [showSignUpForm, setShowSignUpForm] = React.useState(false)
const handleClickOpenModalSignIn = () => {
setOpenModal(true);
setShowSignInForm(true);
};
const handleCloseModal = () => {
setOpenModal(false);
setShowSignInForm(false);
setShowSignUpForm(false);
};
const {currentUser} = useContext(UserContext)
useEffect(() => {
if (currentUser && currentUser.current_level){
setSuccessLevels(currentUser.current_level)
}
}, [currentUser]);
const {query} = useRequestProcessor();
const { data: historyDataList, isLoading, isError } = query(
'users',
() => {
if (isAuthenticated) { // Перевірка на автентифікацію перед виконанням запиту
return axiosClient.get('/get-events').then((res) => res.data);
}
},
{ enabled: isAuthenticated } // Виконувати запит тільки якщо користувач залогінений
);
console.log(isLoading ? "isLoading true" : "isLoading false");
const [historyListFromData, setHistoryListFromData] = useState<any[]>([]); // Adjust the type as per your data structure
// console.log("dataFromQuery", dataFromQuery);
useEffect(() => {
if (historyDataList !== undefined) {
setHistoryListFromData(historyDataList as any[]); // Casting historyDataList as an array
} else {
setHistoryListFromData([]);
}
}, [historyDataList]);
console.log("historyListFromData:::", historyListFromData);
console.log("isLoading>>>", isLoading ? "isLoading true" : "isLoading false");
console.log("currentUser:::::", currentUser);
return (
<Router>
<div className="App">
<Helmet>
<title>Головна</title>
</Helmet>
<Header handleClickOpenModalSignIn={handleClickOpenModalSignIn}/>
<ModalSignInSignUp
goToHistoryTimeLine={true}
setOpenModal={setOpenModal} openModal={openModal}
handleCloseModal={handleCloseModal}
showSignInForm={showSignInForm} showSignUpForm={showSignUpForm}
setShowSignInForm={setShowSignInForm}
setShowSignUpForm={setShowSignUpForm}/>
<main>
<React.Suspense fallback={<Preloader/>}>
<Routes>
<Route path={"/"}
element={
<React.Suspense fallback={<Preloader/>}>
<MainPageContent handleClickOpenModalSignIn={handleClickOpenModalSignIn}/>
</React.Suspense>
}
/>
<Route
path="/profile"
element={
<PrivateRoute
element={
<React.Suspense fallback={<Preloader/>}>
{historyListFromData.length > 0 ? (
<ProfilePage
isLoading={isLoading}
historyList={historyListFromData}
achievementLevel={"test"}
achievements={achievements}
achievedList={data.achievedList}
avatar={avatarImg}
lessonsVisited={currentUser?.current_level}
username={currentUser ? currentUser.user_name : "Петро Сагайдачний"}
/>
) : (
<Preloader/>
)}
</React.Suspense>
}
/>
}
/>
<Route
path="/article/:selectedArticle"
element={
<PrivateRoute
element={
<React.Suspense fallback={<Preloader/>}>
{(historyListFromData.length > 0) ? (
<Article
articleContentFromApp={historyListFromData[selectedArticle].content}
historyList={historyListFromData}
isLoading={isLoading}
setSelectedSubArticle={setSelectedSubArticle}
subArticleSuccessLevels={subArticleSuccessLevels}
setSelectedArticle={setSelectedArticle}
/>
) : (
<Preloader/>
)}
</React.Suspense>
}
/>
}
/>
<Route
path="/test/:selectedArticle"
element={
<PrivateRoute
element={
<React.Suspense fallback={<Preloader/>}>
<QuizBlock
testType="article"
historyList={historyListFromData}
handleNextLevel={handleNextLevel}
setAllAnswerIsCorrect={setAllAnswerIsCorrect}
questions={questionsArray}
options={quizOptionsArray}
correctAnswers={correctAnswers}
onAnswer={handleQuizComplete}
/>
</React.Suspense>
}
/>
}
/>
<Route
path="/test/:selectedArticle/:subtopicId"
element={
<PrivateRoute
element={
<React.Suspense fallback={<Preloader/>}>
<QuizBlock
testType="subArticle"
historyList={historyListFromData}
handleNextLevel={handleNextLevel}
setAllAnswerIsCorrect={setSubArticleAllAnswerIsCorrect}
questions={questionsArraySubArticle}
options={quizOptionsArraySubArticle}
correctAnswers={correctAnswersSubArticle}
onAnswer={handleQuizComplete}
setSelectedSubArticle={setSelectedSubArticle}
/>
</React.Suspense>
}
/>
}
/>
<Route
path="/timeline"
element={
<PrivateRoute
element={
<React.Suspense fallback={<Preloader/>}>
{historyListFromData.length > 0 ? (
<HistoryTimeline
isLoading={isLoading}
setSelectedSubArticle={setSelectedSubArticle}
subArticleSuccessLevels={subArticleSuccessLevels}
selectedArticle={selectedArticle}
setSelectedArticle={setSelectedArticle}
successLevels={successLevels}
buttonStates={buttonStates}
historyList={historyListFromData}
/>
) : (
<Preloader/>
)}
</React.Suspense>
}
/>
}
/>
</Routes>
</React.Suspense>
</main>
<Footer/>
</div>
</Router>
);
}
export default App;