-
Notifications
You must be signed in to change notification settings - Fork 14
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
refactor: migrate live quiz to unified data structure (i.e., from question instances/blocks to element block and element instances) #4338
Merged
Merged
Changes from 36 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
72fa749
refactor: simplify response logic for element stacks and add unit tes…
sjschlapbach 9a54f78
fix: migrate numerical question evaluation on asynchronous activities…
sjschlapbach 25859ff
fix: use full combined results for student evaluation on asynchronous…
sjschlapbach b8cef82
enhance: define new element blocks for improved live quiz data struct…
sjschlapbach 524bb29
refactor: migrate creation and editing process to new element instanc…
sjschlapbach 1e8b0c5
refactor: add query components of running live quiz on lecturer and s…
sjschlapbach 218bdee
refactor: migrate test seed and demo quiz to new live quiz structure …
sjschlapbach 6ce6287
refactor: implement functionalities for live quiz interaction besides…
sjschlapbach 4a1ddc5
refactor: migrate live quiz execution (including cache operations) to…
sjschlapbach 7bc80d6
enhance: introduce statistics for numerical questions in asynchronous…
sjschlapbach 8dd73f1
refactor: migrate live quiz evaluation to new database structure (#4355)
sjschlapbach 9a82194
refactor: replace question preview with student element and move arti…
sjschlapbach cf9198f
chore: remove components related to live session and question instanc…
sjschlapbach 761360a
Merge branch 'v3' of https://github.com/uzh-bf/klicker-uzh into v3-ne…
sjschlapbach d56edb2
enhance: add direct forwarding for live quiz evaluation embedding (#4…
sjschlapbach ec964c8
enhance(packages/graphql): store correctness along open answers in li…
sjschlapbach 37f5a32
chore: cleanup formulations and variables related to old live session…
sjschlapbach dbbfe41
Merge branch 'v3' of https://github.com/uzh-bf/klicker-uzh into v3-ne…
sjschlapbach c3a7691
chore: migrate live session data to live quiz table (#4363)
sjschlapbach ad44023
fix: ensure that app replicas variable in helmfile can be correctly read
sjschlapbach 7114952
chore: add script for dumping redis
rschlaefli 3cab4a2
chore: add working redis restore script
rschlaefli 48b5675
fix: improve live session to live quiz migration script (#4368)
rschlaefli 53dcc38
fix(packages/graphql): ensure we read the old instances by originalId…
rschlaefli c06d004
Merge branch 'v3' of https://github.com/uzh-bf/klicker-uzh into v3-ne…
sjschlapbach 444e3b0
Merge branch 'v3' of https://github.com/uzh-bf/klicker-uzh into v3-ne…
rschlaefli d2f3a43
fix: message for PQ start date
rschlaefli b6d98f1
Update README.md
rschlaefli 1d804f2
deps: restore necessary production deps
rschlaefli d346609
Merge branch 'v3-new-live-quiz' of https://github.com/uzh-bf/klicker-…
rschlaefli 1a789b7
deps(apps/frontend-manage): move react-tagcloud to production deps
rschlaefli 8ae67c3
deps: upgrade design system to include fix in free text field
rschlaefli b8f65b8
Merge branch 'v3' of https://github.com/uzh-bf/klicker-uzh into v3-ne…
rschlaefli 20eb487
fix: only parse solutions in processCachedData if they are not undefined
rschlaefli 20ab05a
refactor(packages/graphql): merge functions into getCachedBlockResults
rschlaefli 8fa77cb
fix(packages/graphql): update getCachedBlockResults to fetch from red…
rschlaefli 1cfab1c
fix(packages/graphql): use originalIds in live quiz migration where m…
rschlaefli c4e050f
fix(packages/graphql): await instance migrations in redis migration s…
rschlaefli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains 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 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 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 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 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,3 @@ | ||
#!/bin/sh | ||
|
||
docker compose down postgres redis_exec redis_cache reverse_proxy_macos |
This file contains 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 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
2 changes: 2 additions & 0 deletions
2
apps/backend-docker/scripts/2023-11-13_upgrade_question_data.ts
This file contains 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 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 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 was deleted.
Oops, something went wrong.
This file contains 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 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 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 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 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this is a prod dependency especially in standalone deployments but this might have changed with Next.js 15. I'll add it back and we can check it later :)