Spaces:
Paused
Paused
Yu Chen commited on
Commit ยท
46c25d4
1
Parent(s): d655736
Add comprehensive question types for vocabulary, grammar, and comprehension
Browse files- src/config/questionTypes.ts +51 -0
src/config/questionTypes.ts
CHANGED
|
@@ -316,6 +316,57 @@ export const questionTypeConfigs: Record<string, QuestionTypeConfig> = {
|
|
| 316 |
]
|
| 317 |
},
|
| 318 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 319 |
'article-revision': {
|
| 320 |
id: 'article-revision',
|
| 321 |
parameters: [
|
|
|
|
| 316 |
]
|
| 317 |
},
|
| 318 |
|
| 319 |
+
'comprehensive-ๅฎๅญ่็่ช': {
|
| 320 |
+
id: 'comprehensive-ๅฎๅญ่็่ช',
|
| 321 |
+
parameters: [
|
| 322 |
+
{
|
| 323 |
+
key: 'k',
|
| 324 |
+
label: 'Number of Questions',
|
| 325 |
+
type: 'range',
|
| 326 |
+
required: true,
|
| 327 |
+
defaultValue: 1,
|
| 328 |
+
min: 1,
|
| 329 |
+
max: 5,
|
| 330 |
+
step: 1,
|
| 331 |
+
helpText: 'question(s)'
|
| 332 |
+
}
|
| 333 |
+
]
|
| 334 |
+
},
|
| 335 |
+
|
| 336 |
+
'comprehensive-ๆๆณ่ๅฅๅ': {
|
| 337 |
+
id: 'comprehensive-ๆๆณ่ๅฅๅ',
|
| 338 |
+
parameters: [
|
| 339 |
+
{
|
| 340 |
+
key: 'k',
|
| 341 |
+
label: 'Number of Questions',
|
| 342 |
+
type: 'range',
|
| 343 |
+
required: true,
|
| 344 |
+
defaultValue: 1,
|
| 345 |
+
min: 1,
|
| 346 |
+
max: 5,
|
| 347 |
+
step: 1,
|
| 348 |
+
helpText: 'question(s)'
|
| 349 |
+
}
|
| 350 |
+
]
|
| 351 |
+
},
|
| 352 |
+
|
| 353 |
+
'comprehensive-ๆๆ็่งฃ่ๆ็จ': {
|
| 354 |
+
id: 'comprehensive-ๆๆ็่งฃ่ๆ็จ',
|
| 355 |
+
parameters: [
|
| 356 |
+
{
|
| 357 |
+
key: 'k',
|
| 358 |
+
label: 'Number of Questions',
|
| 359 |
+
type: 'range',
|
| 360 |
+
required: true,
|
| 361 |
+
defaultValue: 1,
|
| 362 |
+
min: 1,
|
| 363 |
+
max: 5,
|
| 364 |
+
step: 1,
|
| 365 |
+
helpText: 'question(s)'
|
| 366 |
+
}
|
| 367 |
+
]
|
| 368 |
+
},
|
| 369 |
+
|
| 370 |
'article-revision': {
|
| 371 |
id: 'article-revision',
|
| 372 |
parameters: [
|