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

Quiz implementation #272

Open
iliakan opened this issue Aug 24, 2024 · 3 comments
Open

Quiz implementation #272

iliakan opened this issue Aug 24, 2024 · 3 comments
Labels
question Question related to TutorialKit that doesn't require changes in codebase.

Comments

@iliakan
Copy link

iliakan commented Aug 24, 2024

Sometimes, a quiz is needed, rather than a code task.
That is: a question + a list of options with "choose one" / "choose many".
When a visitor selects the correct answer, then show ✅ ; otherwise ❌ with the feedback text explaining why it's wrong.

How should I implement it?

Astro component, perhaps?

I'd like to try, please sketch out a correct way ;)

@AriPerkkio
Copy link
Member

Lessons without coding tasks can hide the file tree and editor by specifying editor: false in frontmatter: https://tutorialkit.dev/reference/configuration/#editor.

---
type: tutorial
editor: false
---

To build a list of options with logic for showing correct answer and description for incorrect answers, you could create a Vite application in the template for this.

@iliakan
Copy link
Author

iliakan commented Sep 1, 2024

Yes, I do need the logic for showing the answer/description.

"Vite application" - any docs or a similar example in the tutorial?

P.S. I've never built Vite apps, but surely can google up and read. So the question is mainly about how to integrate this into tutorialkit without patching.

@AriPerkkio
Copy link
Member

Where would you like to show the feedback for correct and incorrect answers? If in the preview tab is enough, you could have something like https://stackblitz.com/~/edit/vitejs-vite-zwwnxg?file=src%2Ftemplates%2Fdefault%2Findex.html&terminal=dev.

It's running the quiz application in preview and hiding the code editor. The quiz application itself doesn't have to be built with Vite - any web application works.

image

@AriPerkkio AriPerkkio added the question Question related to TutorialKit that doesn't require changes in codebase. label Sep 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Question related to TutorialKit that doesn't require changes in codebase.
Projects
None yet
Development

No branches or pull requests

2 participants