My goal is to make a quizz where user needs to write code. The "Check" is supposed to validate the code (by running a piece) and become passed/failed based on validation result.
So I have everything in Lia - I can have code to run, I can have Generic quizzes. I'd love to have some tweaks if possible:
If possible combine "Execute" button with "Check". I.e. pressing "Execute" also triggers "Check" if execution passed.
Or vise versa - pressing "Check" runs execution and becomes checked if passed.
Remember user's code (as it currently stores user input's)
Have more control over "Execute" button if possible (it is now very small and not everyone finds it). Having "Execute" instead of icon would be awesome option in my case.
I managed to implement #2 by adding common
for quizz & code and then looking for a button control. If there any hints on how to do #3 or #4 that would be superawesome:) If not, LiaScript is still superawesome anyway:)
I made up a little example, that you can modify so that it fits your needs, this adds a very simple test, where the last statement of the executed code is checked within a quiz. The first quiz depicts, how a script and a generic-quiz can be stitched together, by using a bit CSS-magic, the other part is a simple macro that could be reused to simplify the coding:
<!--
@@ this is a custom styling, that will hide the check-button
@@ in all quizzes with class quiz-hide
@style
.quiz-hide > div:nth-of-type(2) > button:first-child {
display: none;
}
@end
@@ @codingQuiz will call a helper-macro and use @uid as a first
@@ parameter, this will generate a unique id, every time it is used
@@ the second-param is the actual input-parameter, the backticks
@@ make allow to input commas as well ...
@codingQuiz: @codingQuiz_(@uid,`@0`)
@@ This helper uses the uid to store the result in a global variable,
@@ which is used in the generic quiz. If the code is evaluated, the
@@ the click-event is released for this specific button, such that
@@ it looks like the quiz is checked ...
@codingQuiz_
<script>
if(!window.result) {
window.result = {}
}
try {
window.result["@0"]=eval(`@input`)
console.log(window.result["@0"])
let btn = document.querySelector('#quiz-@0 > div:nth-child(2) > button:first-child');
btn.click()
} catch(e) {
console.error(e.message)
}
"LIA: stop"
</script>
<!-- class="quiz-hide" id="quiz-@0"-->
[[!]]
<script>
window.result["@0"]=="@1"
</script>
@end
-->
# Code-Quiz
``` javascript
console.log("Hallo Welt")
22
[[!]]
[[?]] Test Hint
Macro
console.log("Hallo Welt")
22
@codingQuiz(11)
console.log("Hallo Welt")
22
@codingQuiz(22)
console.log("Hallo Welt")
22
@codingQuiz(33)
you can modify this example [here](https://liascript.github.io/LiveEditor/?/show/code/H4sIAAAAAAAAA81UTU/bQBC9768YzAFHil0It5BQV72A1B6qIvUQRWSznsTbrL3Bu04EiP/emd0GQqESFZdKvng9++Z9zHh0kGVCFAX4SjugR4LqnLc1OH9rdLPs0xfpYauNgUqXSK8IqkK1yuad97bhy7oBSd9vOn13h46KfQXKSOfCUcb3qAkjosgfj+AcSr0ZNr7K7CLzt2tMBz06jLjDhW6dz1SlTQn3AqjWrY28HUJjGzwTD6LApgzcC2VLovqNgCNRxWwkVGjW2Ga1VK0F2ZTQOYSi0yVIFhoa8P21bGWNHtt+tCFgLLHBVnqkwq7RNx2CLvuAG2xvweuaXj37RZBl9A/BobJNmQU4/sZnUvlOGnJo3fnsWSOEuVQrr9XKMUAtV8gu2i14G+tB2bpmqkQJiVKe56T3SexwX/l1ysr6s+J41guuXLGUaAGzjHRYPMFTwm2MskXXGR8ShKWxc+K6ka2Wc4N9RtlWWlU7oVzGl4I3WoV0c7hcxKGwFCkV4kaajowrg8idN8qQ0Izsa4JtLRqUjLiwbTTdrVHpBYHG+PvgOmrMwxcmzIOxduXA6FUkzr0ZKcwiAf1pzrUYOdXqtT8XepEebHVT2m0e5fbCQAE8O4Qx3D/QWHkK+JXPk6Q4TqZjVpfOipAPGc1lFLqzBnNjl+krV2KRQQ9z31CT0qquJhtoEWiWvpMRitJIjw7DYhTHe2sRhv9vS3HUOwvIhJoHd9OeeKDR96pKcadwxw3blnpgXqNzcolUKZIvl5+GPAnrRIw+7LwSI/ojxOUdJ4+rmtDw/34lSVl2LiaTg+n0yeLXrBonxckz6LiwfFscwmcal4yDEmI2m8FPuZGxUOz7mVzwSsAPND7picGAa5+6voiKGb4xIi59czTkQYlNFmbuv41nj2QCTxlNJh+nU7hC5+FCN/5FZsGz8enpfpfDQ/jKf81/z2ZvA9PZyQn/i94FMRi8G+L0dNb7Bc7+pl7oBgAA)
If you plan to use SCORM, the quiz result should be stored, but not the code-snippets. Unfortunately SCORM allows only to store 254bytes, which are not enough for us to store different version of the editors, thus previous edits will be lost if the course is reloaded... Only the quiz is stored persistently ...
I hope this helps ...
I apologize for the persistence, but I can't help but take advantage of your responsiveness:)
One more question. Is it possible to force "Check" button to also do "Execute"?
I see how you locate the "Check" button:
let btn = document.querySelector('#quiz-@0 > div:nth-child(2) > button:first-child');
The little problem is there is one small "Execute" button and big "Check" button. And the fact that you first have to click on a little Execute button that doesn't even have a signature is not intuitively obvious.
I think I can hide 'Check' button via css style, but can I change 'Execute' to look like check? Or Make it bigger and add text "Validate" to it?
Here is an updated version ... I changed the appearance of the execute-button with the style, which is a bit more complicated, since now I need to change the code-block and the quiz, therefore both elements have been surrounded by a div.
Changing the execute-button is easier, than executing the code from the Check-Button, then await the calculation and react onto it ... Since i cannot directly deactivate the new Check-Button I added a solution to the end of the quiz.
The macro is a bit more difficult now and it does not close the div, since the solution is added and this is part of the quiz ... You can move the div back into the macro if you don't need solutions. Adding the macro to the head of the code-block is just another way of saying, that the content of the entire code-block should be passed as the last parameter. This is a nice way, if you require to pass in more complex JSON, YAML or what so ever configuration ...
I will think of a simpler solution ... adding a new quiz-type as a combination with code-blocks might be also interesting for others ...
My goal is to make a quizz where user needs to write code. The "Check" is supposed to validate the code (by running a piece) and become passed/failed based on validation result.
So I have everything in Lia - I can have code to run, I can have Generic quizzes. I'd love to have some tweaks if possible:
I managed to implement #2 by adding common
I made up a little example, that you can modify so that it fits your needs, this adds a very simple test, where the last statement of the executed code is checked within a quiz. The first quiz depicts, how a script and a generic-quiz can be stitched together, by using a bit CSS-magic, the other part is a simple macro that could be reused to simplify the coding:
[[!]] [[?]] Test Hint
Macro
@codingQuiz(
11
)@codingQuiz(
22
)@codingQuiz(
33
)Andre, Thank you a million! That is an awesome and detailed example.
From script it looks like what I need. And your explanations are very clear. I have just one problem, for some reason I cannot build it.
First I tried it locally and since it is not rendering I tried your link
Here is how it renders in the LiveScript:
I.e. it looks like @codingQuizz is ignored. Is there anything I need to upgrade/update to see it working?
Br/Alexey
I am sorry, I just added the wrong comment-notation afterwards without checking ...
Within the following example the macros should work as expected ...
Example
Awesome!
I apologize for the persistence, but I can't help but take advantage of your responsiveness:)
One more question. Is it possible to force "Check" button to also do "Execute"? I see how you locate the "Check" button:
The little problem is there is one small "Execute" button and big "Check" button. And the fact that you first have to click on a little Execute button that doesn't even have a signature is not intuitively obvious.
I think I can hide 'Check' button via css style, but can I change 'Execute' to look like check? Or Make it bigger and add text "Validate" to it?
Br/Alexey
Here is an updated version ... I changed the appearance of the execute-button with the style, which is a bit more complicated, since now I need to change the code-block and the quiz, therefore both elements have been surrounded by a div.
Running Example
Changing the execute-button is easier, than executing the code from the Check-Button, then await the calculation and react onto it ... Since i cannot directly deactivate the new Check-Button I added a solution to the end of the quiz.
The macro is a bit more difficult now and it does not close the div, since the solution is added and this is part of the quiz ... You can move the div back into the macro if you don't need solutions. Adding the macro to the head of the code-block is just another way of saying, that the content of the entire code-block should be passed as the last parameter. This is a nice way, if you require to pass in more complex JSON, YAML or what so ever configuration ...
I will think of a simpler solution ... adding a new quiz-type as a combination with code-blocks might be also interesting for others ...
Hi Andre,
Thanks a lot for this example, it works! I've modified it a bit to demonstrate a bunch of examples of my needs here
Just for the case you decide to make a dedicated quiz-type of such kind (like Moodle has) you may see my version as a reference.
Thank you again for your invaluable help!