feat: add multi_select question type for multiple correct answers#7
Merged
feat: add multi_select question type for multiple correct answers#7
Conversation
Adds a new `multi_select` question type allowing questions where players must select all correct answers (2+) from a list of options. Changes: - DB: add `correct_indices` (questions) and `chosen_indices` (answers) columns via migration - Server types: add `multi_select` to QuestionType, update DbQuestion, DbAnswer, QuizQuestion, PlayerAnswerPayload - Admin routes: persist/parse correct_indices in quiz CRUD endpoints - Socket: handle multi_select correctness (exact match of all indices), store chosen_indices - Client types: add multi_select, correctIndices to ImportQuestion/QuestionResults/LeaderboardEntry - QuestionEditor: checkbox-style correct answer selection for multi_select - CreateQuiz/EditQuiz: multi_select validation + JSON schema example - Game.tsx: selectedIndices state + toggleMultiSelectIndex + submitMultiSelect - QuestionScreen: checkbox toggle UI with Submit button for multi_select - ResultsScreen: highlight all correctIndices for multi_select Co-authored-by: Levende <Lawndlwd@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #6
Adds a new
multi_selectquestion type where players must select all correct answers.Changes:
correct_indicesandchosen_indicescolumnscorrectIndicescorrectIndicesarrayGenerated with Claude Code