react-native-elearn-ui 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/module/components/Icon.js +97 -0
- package/lib/module/components/Icon.js.map +1 -1
- package/lib/module/screens/QbankScreen.js +251 -99
- package/lib/module/screens/QbankScreen.js.map +1 -1
- package/lib/module/screens/QuestionScreen.js +219 -179
- package/lib/module/screens/QuestionScreen.js.map +1 -1
- package/lib/module/screens/QuizStartScreen.js +134 -131
- package/lib/module/screens/QuizStartScreen.js.map +1 -1
- package/lib/module/screens/TopicListScreen.js +284 -135
- package/lib/module/screens/TopicListScreen.js.map +1 -1
- package/lib/typescript/src/components/Icon.d.ts +1 -1
- package/lib/typescript/src/components/Icon.d.ts.map +1 -1
- package/lib/typescript/src/screens/QbankScreen.d.ts.map +1 -1
- package/lib/typescript/src/screens/QuestionScreen.d.ts.map +1 -1
- package/lib/typescript/src/screens/QuizStartScreen.d.ts.map +1 -1
- package/lib/typescript/src/screens/TopicListScreen.d.ts.map +1 -1
- package/lib/typescript/src/types/index.d.ts +4 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/Icon.tsx +125 -1
- package/src/screens/QbankScreen.tsx +192 -68
- package/src/screens/QuestionScreen.tsx +179 -176
- package/src/screens/QuizStartScreen.tsx +118 -112
- package/src/screens/TopicListScreen.tsx +262 -111
- package/src/types/index.ts +4 -0
|
@@ -7,14 +7,12 @@ import { useTheme } from "../context/ThemeContext.js";
|
|
|
7
7
|
import { Typography, Card, Button, Icon } from "../components/index.js";
|
|
8
8
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
9
|
export const QuizStartScreen = ({
|
|
10
|
-
course,
|
|
11
10
|
topic,
|
|
12
11
|
onBack,
|
|
13
12
|
hideHeader = false
|
|
14
13
|
}) => {
|
|
15
14
|
const {
|
|
16
|
-
callbacks
|
|
17
|
-
getString
|
|
15
|
+
callbacks
|
|
18
16
|
} = useElearnConfig();
|
|
19
17
|
const theme = useTheme();
|
|
20
18
|
const handleStart = () => {
|
|
@@ -22,7 +20,9 @@ export const QuizStartScreen = ({
|
|
|
22
20
|
callbacks.onStartQuiz(topic.id, topic.questions, topic.title);
|
|
23
21
|
}
|
|
24
22
|
};
|
|
25
|
-
|
|
23
|
+
|
|
24
|
+
// Mock list of glance topics matching mockup 3
|
|
25
|
+
const glanceTopics = ['Cerebral Cortex', 'Cranial Nerves', 'Spinal Cord Tracts', 'Brainstem Anatomy', 'Basal Ganglia', 'Thalamus and Hypothalamus', 'Visual and Auditory Pathways'];
|
|
26
26
|
return /*#__PURE__*/_jsxs(SafeAreaView, {
|
|
27
27
|
style: [styles.safeArea, {
|
|
28
28
|
backgroundColor: theme.background
|
|
@@ -33,103 +33,103 @@ export const QuizStartScreen = ({
|
|
|
33
33
|
style: styles.header,
|
|
34
34
|
children: [/*#__PURE__*/_jsx(TouchableOpacity, {
|
|
35
35
|
onPress: onBack,
|
|
36
|
-
style:
|
|
37
|
-
borderColor: theme.border
|
|
38
|
-
}],
|
|
36
|
+
style: styles.backButton,
|
|
39
37
|
children: /*#__PURE__*/_jsx(Icon, {
|
|
40
38
|
name: "arrow-left",
|
|
41
39
|
size: 20,
|
|
42
40
|
color: theme.textPrimary
|
|
43
41
|
})
|
|
44
42
|
}), /*#__PURE__*/_jsx(Typography, {
|
|
45
|
-
variant: "
|
|
43
|
+
variant: "h2",
|
|
46
44
|
bold: true,
|
|
47
45
|
style: styles.headerTitle,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
children: "QBank"
|
|
47
|
+
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
48
|
+
style: styles.shareButton,
|
|
49
|
+
children: /*#__PURE__*/_jsx(Icon, {
|
|
50
|
+
name: "share",
|
|
51
|
+
size: 20,
|
|
52
|
+
color: theme.textPrimary
|
|
53
|
+
})
|
|
52
54
|
})]
|
|
53
|
-
}), /*#__PURE__*/
|
|
55
|
+
}), /*#__PURE__*/_jsx(View, {
|
|
54
56
|
style: styles.container,
|
|
55
|
-
children:
|
|
57
|
+
children: /*#__PURE__*/_jsxs(View, {
|
|
56
58
|
style: styles.content,
|
|
57
|
-
children: [/*#__PURE__*/
|
|
59
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
60
|
+
variant: "h1",
|
|
61
|
+
bold: true,
|
|
62
|
+
color: theme.textPrimary,
|
|
63
|
+
style: styles.categoryTitle,
|
|
64
|
+
children: topic.category || 'Neuro Anatomy'
|
|
65
|
+
}), /*#__PURE__*/_jsxs(Card, {
|
|
58
66
|
bordered: true,
|
|
59
|
-
style: styles.
|
|
60
|
-
children: [/*#__PURE__*/
|
|
61
|
-
style:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
size: 20,
|
|
85
|
-
color: theme.primary
|
|
86
|
-
}), /*#__PURE__*/_jsxs(Typography, {
|
|
87
|
-
variant: "body",
|
|
88
|
-
bold: true,
|
|
89
|
-
style: styles.statsText,
|
|
90
|
-
children: [topic.totalQuestions, " Questions Available"]
|
|
67
|
+
style: styles.infoCard,
|
|
68
|
+
children: [/*#__PURE__*/_jsxs(View, {
|
|
69
|
+
style: styles.topicHeaderRow,
|
|
70
|
+
children: [/*#__PURE__*/_jsx(View, {
|
|
71
|
+
style: [styles.iconCircle, {
|
|
72
|
+
backgroundColor: 'rgba(59, 130, 246, 0.1)'
|
|
73
|
+
}],
|
|
74
|
+
children: /*#__PURE__*/_jsx(Icon, {
|
|
75
|
+
name: "file-text",
|
|
76
|
+
size: 20,
|
|
77
|
+
color: "#3B82F6"
|
|
78
|
+
})
|
|
79
|
+
}), /*#__PURE__*/_jsxs(View, {
|
|
80
|
+
style: styles.topicHeaderDetails,
|
|
81
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
82
|
+
variant: "h2",
|
|
83
|
+
bold: true,
|
|
84
|
+
color: theme.textPrimary,
|
|
85
|
+
style: styles.topicMainTitle,
|
|
86
|
+
children: topic.title
|
|
87
|
+
}), /*#__PURE__*/_jsxs(Typography, {
|
|
88
|
+
variant: "caption",
|
|
89
|
+
color: theme.textSecondary,
|
|
90
|
+
children: [topic.totalQuestions, " Questions"]
|
|
91
|
+
})]
|
|
91
92
|
})]
|
|
93
|
+
}), /*#__PURE__*/_jsx(Button, {
|
|
94
|
+
title: "Start QBank",
|
|
95
|
+
onPress: handleStart,
|
|
96
|
+
variant: "primary",
|
|
97
|
+
style: [styles.startButton, {
|
|
98
|
+
backgroundColor: theme.primary
|
|
99
|
+
}],
|
|
100
|
+
disabled: !topic.questions || topic.questions.length === 0
|
|
92
101
|
})]
|
|
93
102
|
}), /*#__PURE__*/_jsxs(View, {
|
|
94
|
-
style: styles.
|
|
103
|
+
style: styles.glanceSection,
|
|
95
104
|
children: [/*#__PURE__*/_jsx(Typography, {
|
|
96
105
|
variant: "h2",
|
|
97
106
|
bold: true,
|
|
98
|
-
|
|
99
|
-
|
|
107
|
+
color: theme.textPrimary,
|
|
108
|
+
style: styles.glanceTitle,
|
|
109
|
+
children: "Topics at a Glance"
|
|
110
|
+
}), /*#__PURE__*/_jsx(Typography, {
|
|
111
|
+
variant: "body",
|
|
112
|
+
color: theme.textSecondary,
|
|
113
|
+
style: styles.glanceSub,
|
|
114
|
+
children: "It's recommended that you thoroughly study these topics prior to attempting the QBank."
|
|
100
115
|
}), /*#__PURE__*/_jsx(View, {
|
|
101
|
-
style: styles.
|
|
102
|
-
children:
|
|
103
|
-
style: styles.
|
|
116
|
+
style: styles.bulletList,
|
|
117
|
+
children: glanceTopics.map((item, idx) => /*#__PURE__*/_jsxs(View, {
|
|
118
|
+
style: styles.bulletRow,
|
|
104
119
|
children: [/*#__PURE__*/_jsx(View, {
|
|
105
|
-
style: styles.
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
size: 18,
|
|
109
|
-
color: theme.primary
|
|
110
|
-
})
|
|
120
|
+
style: [styles.bulletDot, {
|
|
121
|
+
backgroundColor: theme.primary
|
|
122
|
+
}]
|
|
111
123
|
}), /*#__PURE__*/_jsx(Typography, {
|
|
112
124
|
variant: "body",
|
|
113
|
-
color: theme.
|
|
114
|
-
style: styles.
|
|
125
|
+
color: theme.textPrimary,
|
|
126
|
+
style: styles.bulletText,
|
|
115
127
|
children: item
|
|
116
128
|
})]
|
|
117
129
|
}, idx))
|
|
118
130
|
})]
|
|
119
131
|
})]
|
|
120
|
-
})
|
|
121
|
-
style: [styles.footer, {
|
|
122
|
-
backgroundColor: theme.cardBackground,
|
|
123
|
-
borderTopColor: theme.border
|
|
124
|
-
}],
|
|
125
|
-
children: /*#__PURE__*/_jsx(Button, {
|
|
126
|
-
title: getString('startQuizButton'),
|
|
127
|
-
onPress: handleStart,
|
|
128
|
-
variant: "primary",
|
|
129
|
-
style: styles.startButton,
|
|
130
|
-
disabled: !topic.questions || topic.questions.length === 0
|
|
131
|
-
})
|
|
132
|
-
})]
|
|
132
|
+
})
|
|
133
133
|
})]
|
|
134
134
|
});
|
|
135
135
|
};
|
|
@@ -141,91 +141,94 @@ const styles = StyleSheet.create({
|
|
|
141
141
|
flexDirection: 'row',
|
|
142
142
|
justifyContent: 'space-between',
|
|
143
143
|
alignItems: 'center',
|
|
144
|
-
paddingHorizontal:
|
|
144
|
+
paddingHorizontal: 16,
|
|
145
145
|
paddingVertical: 12
|
|
146
146
|
},
|
|
147
147
|
backButton: {
|
|
148
|
-
|
|
149
|
-
height: 40,
|
|
150
|
-
borderRadius: 20,
|
|
151
|
-
borderWidth: 1,
|
|
152
|
-
justifyContent: 'center',
|
|
153
|
-
alignItems: 'center'
|
|
148
|
+
padding: 6
|
|
154
149
|
},
|
|
155
150
|
headerTitle: {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
marginHorizontal: 12
|
|
151
|
+
fontSize: 18,
|
|
152
|
+
fontWeight: '700'
|
|
159
153
|
},
|
|
160
|
-
|
|
161
|
-
|
|
154
|
+
shareButton: {
|
|
155
|
+
padding: 6
|
|
162
156
|
},
|
|
163
157
|
container: {
|
|
164
|
-
flex: 1
|
|
165
|
-
justifyContent: 'space-between'
|
|
158
|
+
flex: 1
|
|
166
159
|
},
|
|
167
160
|
content: {
|
|
168
161
|
flex: 1,
|
|
169
|
-
paddingHorizontal:
|
|
162
|
+
paddingHorizontal: 16,
|
|
170
163
|
paddingTop: 12
|
|
171
164
|
},
|
|
172
|
-
|
|
173
|
-
padding: 24,
|
|
174
|
-
borderRadius: 20
|
|
175
|
-
},
|
|
176
|
-
badge: {
|
|
177
|
-
alignSelf: 'flex-start',
|
|
178
|
-
paddingHorizontal: 10,
|
|
179
|
-
paddingVertical: 4,
|
|
180
|
-
borderRadius: 8,
|
|
181
|
-
marginBottom: 12
|
|
182
|
-
},
|
|
183
|
-
title: {
|
|
165
|
+
categoryTitle: {
|
|
184
166
|
fontSize: 22,
|
|
185
|
-
lineHeight: 28,
|
|
186
|
-
marginBottom: 8
|
|
187
|
-
},
|
|
188
|
-
desc: {
|
|
189
|
-
lineHeight: 20,
|
|
190
167
|
marginBottom: 16
|
|
191
168
|
},
|
|
192
|
-
|
|
169
|
+
infoCard: {
|
|
170
|
+
padding: 16,
|
|
171
|
+
borderRadius: 16,
|
|
172
|
+
backgroundColor: '#FFFFFF',
|
|
173
|
+
borderWidth: 1,
|
|
174
|
+
borderColor: '#E2E8F0'
|
|
175
|
+
},
|
|
176
|
+
topicHeaderRow: {
|
|
193
177
|
flexDirection: 'row',
|
|
194
178
|
alignItems: 'center',
|
|
195
|
-
|
|
179
|
+
marginBottom: 16
|
|
180
|
+
},
|
|
181
|
+
iconCircle: {
|
|
182
|
+
width: 44,
|
|
183
|
+
height: 44,
|
|
184
|
+
borderRadius: 22,
|
|
185
|
+
justifyContent: 'center',
|
|
186
|
+
alignItems: 'center',
|
|
187
|
+
marginRight: 12
|
|
188
|
+
},
|
|
189
|
+
topicHeaderDetails: {
|
|
190
|
+
flex: 1
|
|
191
|
+
},
|
|
192
|
+
topicMainTitle: {
|
|
193
|
+
fontSize: 15,
|
|
194
|
+
lineHeight: 19,
|
|
195
|
+
marginBottom: 2
|
|
196
|
+
},
|
|
197
|
+
startButton: {
|
|
198
|
+
width: '100%',
|
|
199
|
+
height: 46,
|
|
200
|
+
justifyContent: 'center',
|
|
201
|
+
alignItems: 'center',
|
|
202
|
+
borderRadius: 10
|
|
196
203
|
},
|
|
197
|
-
|
|
198
|
-
|
|
204
|
+
glanceSection: {
|
|
205
|
+
marginTop: 24
|
|
199
206
|
},
|
|
200
|
-
|
|
201
|
-
|
|
207
|
+
glanceTitle: {
|
|
208
|
+
fontSize: 16,
|
|
209
|
+
marginBottom: 6
|
|
202
210
|
},
|
|
203
|
-
|
|
211
|
+
glanceSub: {
|
|
212
|
+
fontSize: 13,
|
|
213
|
+
lineHeight: 18,
|
|
204
214
|
marginBottom: 16
|
|
205
215
|
},
|
|
206
|
-
|
|
216
|
+
bulletList: {
|
|
207
217
|
marginTop: 4
|
|
208
218
|
},
|
|
209
|
-
|
|
219
|
+
bulletRow: {
|
|
210
220
|
flexDirection: 'row',
|
|
211
|
-
alignItems: '
|
|
212
|
-
marginBottom:
|
|
213
|
-
},
|
|
214
|
-
bulletContainer: {
|
|
215
|
-
marginTop: 1
|
|
216
|
-
},
|
|
217
|
-
infoItemText: {
|
|
218
|
-
marginLeft: 12,
|
|
219
|
-
flex: 1,
|
|
220
|
-
lineHeight: 18
|
|
221
|
+
alignItems: 'center',
|
|
222
|
+
marginBottom: 12
|
|
221
223
|
},
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
224
|
+
bulletDot: {
|
|
225
|
+
width: 6,
|
|
226
|
+
height: 6,
|
|
227
|
+
borderRadius: 3,
|
|
228
|
+
marginRight: 12
|
|
226
229
|
},
|
|
227
|
-
|
|
228
|
-
|
|
230
|
+
bulletText: {
|
|
231
|
+
fontSize: 14
|
|
229
232
|
}
|
|
230
233
|
});
|
|
231
234
|
//# sourceMappingURL=QuizStartScreen.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["React","View","StyleSheet","TouchableOpacity","SafeAreaView","StatusBar","useElearnConfig","useTheme","Typography","Card","Button","Icon","jsx","_jsx","jsxs","_jsxs","QuizStartScreen","
|
|
1
|
+
{"version":3,"names":["React","View","StyleSheet","TouchableOpacity","SafeAreaView","StatusBar","useElearnConfig","useTheme","Typography","Card","Button","Icon","jsx","_jsx","jsxs","_jsxs","QuizStartScreen","topic","onBack","hideHeader","callbacks","theme","handleStart","onStartQuiz","questions","id","title","glanceTopics","style","styles","safeArea","backgroundColor","background","children","barStyle","header","onPress","backButton","name","size","color","textPrimary","variant","bold","headerTitle","shareButton","container","content","categoryTitle","category","bordered","infoCard","topicHeaderRow","iconCircle","topicHeaderDetails","topicMainTitle","textSecondary","totalQuestions","startButton","primary","disabled","length","glanceSection","glanceTitle","glanceSub","bulletList","map","item","idx","bulletRow","bulletDot","bulletText","create","flex","flexDirection","justifyContent","alignItems","paddingHorizontal","paddingVertical","padding","fontSize","fontWeight","paddingTop","marginBottom","borderRadius","borderWidth","borderColor","width","height","marginRight","lineHeight","marginTop"],"sourceRoot":"../../../src","sources":["screens/QuizStartScreen.tsx"],"mappings":"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","ignoreList":[]}
|