Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the path for Fonema #482

Merged
merged 2 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const navbarBlacklist = ref([
'SRE',
'SRE-ES',
'PA',
'PA-ES',
'Letter',
'Letter-ES',
'Vocab',
Expand Down
22 changes: 14 additions & 8 deletions src/helpers/reports.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,39 @@ export const taskDisplayNames = {
order: 2,
},
pa: { name: 'Phoneme', extendedTitle: 'ROAR - Phoneme', extendedName: 'Phonological Awareness', order: 3 },
swr: { name: 'Word', extendedTitle: 'ROAR - Word', extendedName: 'Single Word Recognition', order: 4 },
'swr-es': { name: 'Palabra', extendedTitle: 'ROAR - Word', extendedName: 'Single Word Recognition', order: 5 },
sre: { name: 'Sentence', extendedTitle: 'ROAR - Sentence', extendedName: 'Sentence Reading Efficiency', order: 6 },
'sre-es': { name: 'Frase', extendedTitle: 'ROAR - Frase', extendedName: 'Sentence Reading Efficiency', order: 7 },
'pa-es': {
name: 'Fonema',
extendedTitle: 'ROAR - Fonema',
extendedName: 'Phonological Awareness',
order: 4,
},
swr: { name: 'Word', extendedTitle: 'ROAR - Word', extendedName: 'Single Word Recognition', order: 5 },
'swr-es': { name: 'Palabra', extendedTitle: 'ROAR - Word', extendedName: 'Single Word Recognition', order: 6 },
sre: { name: 'Sentence', extendedTitle: 'ROAR - Sentence', extendedName: 'Sentence Reading Efficiency', order: 7 },
'sre-es': { name: 'Frase', extendedTitle: 'ROAR - Frase', extendedName: 'Sentence Reading Efficiency', order: 8 },
morphology: {
name: 'Morphology',
extendedTitle: 'ROAR - Morphology',
extendedName: 'Morphological Awareness',
order: 8,
order: 9,
},
cva: {
name: 'Written-Vocab',
extendedTitle: 'ROAR - Written Vocabulary',
extendedName: 'Written Vocabulary',
order: 9,
order: 10,
},
multichoice: {
name: 'Multichoice',
extendedTitle: 'ROAR - Multichoice',
extendedName: 'Multiple Choice Vocabulary',
order: 10,
order: 11,
},
vocab: {
name: 'Vocabulary',
extendedTitle: 'ROAR - Vocabulary',
extendedName: 'Vocabulary',
order: 11,
order: 12,
},
fluency: { name: 'Fluency', extendedTitle: 'ROAM - Fluency', extendedName: 'Math Fluency', order: 12 },
'fluency-arf': {
Expand Down
7 changes: 7 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ const routes = [
props: { taskId: 'pa', language: 'en' },
meta: { pageTitle: 'PA' },
},
{
path: '/game/pa-es',
name: 'PA-ES',
component: () => import('../components/tasks/TaskPA.vue'),
props: { taskId: 'pa-es', language: 'es' },
meta: { pageTitle: 'PA-ES' },
},
{
path: '/game/sre',
name: 'SRE',
Expand Down
Loading