-
Notifications
You must be signed in to change notification settings - Fork 555
Exercise: Migrate legacy exercise tool to Vue #8580
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
Open
christianbeeznest
wants to merge
30
commits into
chamilo:master
Choose a base branch
from
christianbeeznest:feature/exercise-vue-migration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
41e8ec6
Exercise: Migrate legacy exercise tool to Vue
christianbeeznest 94bb903
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest 2abe2c0
Exercise: Extend exercise Vue runtime question support
christianbeeznest 93a49a7
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest e187f17
Exercise: Complete exercise Vue migration parity
christianbeeznest 1bdfdaf
Exercise: Complete exercise Vue migration parity
christianbeeznest e947d9c
Fix exercise runtime review and uploads
christianbeeznest c9ff068
Restore exercise review answers flow
christianbeeznest 49df287
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest a7c6e5d
Fix LP exercise scoring and visibility
christianbeeznest 8ca43c1
Restore exercise correction notifications
christianbeeznest ee4b985
Restore exercise recalculate all
christianbeeznest b225577
Restore exercise report export options
christianbeeznest 534e418
Enforce exercise runtime rules
christianbeeznest 02446d9
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest 9d7401c
Restore exercise report group filters
christianbeeznest 32c34c9
Restore exercise category score breakdown
christianbeeznest 66bc327
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest c0bea06
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest 2083293
Exercise: Restore exercise runtime settings parity
christianbeeznest e5f3306
Restore exercise runtime UI helpers
christianbeeznest 0dccc1c
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest 7aef787
Exercise: Clean up exercise translation key reuse
christianbeeznest f0ccc1a
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest d2c2ed8
Exercise: Address PR review feedback
christianbeeznest 2490766
Merge remote-tracking branch 'upstream/master' into feature/exercise-…
christianbeeznest ef41362
Exercise: Add adaptive hotspot delineation flow
christianbeeznest fa24da9
Exercise: Add OnlyOffice runtime editor
christianbeeznest 2e1b272
Exercise: Add progressive adaptive mode
christianbeeznest fa0d8bd
Merge upstream master into exercise Vue migration
christianbeeznest File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,163 @@ | ||
| export default { | ||
| path: "/resources/exercise/:node/", | ||
| meta: { | ||
| requiresAuth: true, | ||
| showBreadcrumb: true, | ||
| tool: "exercise", | ||
| breadcrumb: "Exercises", | ||
| }, | ||
| name: "exercise", | ||
| component: () => import("../components/layout/SimpleRouterViewLayout.vue"), | ||
| redirect: { name: "ExerciseList" }, | ||
| children: [ | ||
| { | ||
| name: "ExerciseList", | ||
| path: "", | ||
| meta: { breadcrumb: "Exercises" }, | ||
| component: () => import("../views/exercise/ExerciseListView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseCreate", | ||
| path: "create", | ||
| meta: { breadcrumb: "Create exercise" }, | ||
| component: () => import("../views/exercise/ExerciseConfigurationView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseCategories", | ||
| path: "categories", | ||
| meta: { breadcrumb: "Exercise categories" }, | ||
| component: () => import("../views/exercise/ExerciseCategoryManagerView.vue"), | ||
| props: { categoryType: "exercise" }, | ||
| }, | ||
| { | ||
| name: "ExerciseQuestionCategories", | ||
| path: "question-categories", | ||
| meta: { breadcrumb: "Question categories" }, | ||
| component: () => import("../views/exercise/ExerciseCategoryManagerView.vue"), | ||
| props: { categoryType: "question" }, | ||
| }, | ||
| { | ||
| name: "ExerciseImportAiken", | ||
| path: "import/aiken", | ||
| meta: { breadcrumb: "Import Aiken quiz" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionImportView.vue"), | ||
| props: { importType: "aiken" }, | ||
| }, | ||
| { | ||
| name: "ExerciseImportExcel", | ||
| path: "import/excel", | ||
| meta: { breadcrumb: "Import quiz from Excel" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionImportView.vue"), | ||
| props: { importType: "excel" }, | ||
| }, | ||
| { | ||
| name: "ExerciseImportQti2", | ||
| path: "import/qti2", | ||
| meta: { breadcrumb: "Import exercises QTI2" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionImportView.vue"), | ||
| props: { importType: "qti2" }, | ||
| }, | ||
| { | ||
| name: "ExerciseAiAikenGenerator", | ||
| path: "aiken-generator", | ||
| meta: { breadcrumb: "AI Aiken generator" }, | ||
| component: () => import("../views/exercise/ExerciseAiAikenGeneratorView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseOverview", | ||
| path: ":exerciseId/overview", | ||
| meta: { breadcrumb: "Exercise overview" }, | ||
| component: () => import("../views/exercise/ExerciseOverviewView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseEdit", | ||
| path: ":exerciseId/edit", | ||
| meta: { breadcrumb: "Edit exercise" }, | ||
| component: () => import("../views/exercise/ExerciseConfigurationView.vue"), | ||
| }, | ||
| { | ||
| name: "ExercisePlayer", | ||
| path: ":exerciseId/player", | ||
| meta: { breadcrumb: "Exercise player" }, | ||
| component: () => import("../views/exercise/ExercisePlayerView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseResult", | ||
| path: ":exerciseId/result/:attemptId", | ||
| meta: { breadcrumb: "Exercise result" }, | ||
| component: () => import("../views/exercise/ExerciseResultView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseReport", | ||
| path: ":exerciseId/report", | ||
| meta: { breadcrumb: "Learner score" }, | ||
| component: () => import("../views/exercise/ExerciseReportView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseQuestionStats", | ||
| path: ":exerciseId/question-stats", | ||
| meta: { breadcrumb: "Question stats" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionStatsView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseReportByQuestion", | ||
| path: ":exerciseId/report-by-question", | ||
| meta: { breadcrumb: "Report by question" }, | ||
| component: () => import("../views/exercise/ExerciseReportByQuestionView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseLiveResults", | ||
| path: ":exerciseId/live-results", | ||
| meta: { breadcrumb: "Live results" }, | ||
| component: () => import("../views/exercise/ExerciseLiveResultsView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseGlobalQuestionSelector", | ||
| path: "questions/create", | ||
| meta: { breadcrumb: "Add a question" }, | ||
| component: () => import("../views/exercise/ExerciseGlobalQuestionSelectorView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseGlobalQuestionCreate", | ||
| path: "questions/create/:questionType", | ||
| meta: { breadcrumb: "Create question" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionEditorView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseQuestionPool", | ||
| path: "questions/recycle", | ||
| meta: { breadcrumb: "Recycle existing questions" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionBankView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseGlobalQuestionEdit", | ||
| path: "questions/:questionId/edit", | ||
| meta: { breadcrumb: "Edit question" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionEditorView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseQuestions", | ||
| path: ":exerciseId/questions", | ||
| meta: { breadcrumb: "Questions" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionSelectorView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseQuestionBank", | ||
| path: ":exerciseId/question-bank", | ||
| meta: { breadcrumb: "Recycle existing questions" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionBankView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseQuestionCreate", | ||
| path: ":exerciseId/questions/create/:questionType", | ||
| meta: { breadcrumb: "Create question" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionEditorView.vue"), | ||
| }, | ||
| { | ||
| name: "ExerciseQuestionEdit", | ||
| path: ":exerciseId/questions/:questionId/edit", | ||
| meta: { breadcrumb: "Edit question" }, | ||
| component: () => import("../views/exercise/ExerciseQuestionEditorView.vue"), | ||
| }, | ||
| ], | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.