Knowledge Question Setup
This commit is contained in:
parent
1e8516e254
commit
861a3bad6a
4 changed files with 21 additions and 7 deletions
18
index.html
18
index.html
|
|
@ -225,7 +225,17 @@
|
||||||
</p>
|
</p>
|
||||||
<p>Have fun! 🤟</p>
|
<p>Have fun! 🤟</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="intro-step5">Knowledge Questions</div>
|
<div id="intro-step5">
|
||||||
|
<h1>Questions about this visualization sepcifically</h1>
|
||||||
|
<p>
|
||||||
|
After the project-specific "knowledge" questions in the last step I want to get your
|
||||||
|
valuable input as a developer for the following questions:
|
||||||
|
</p>
|
||||||
|
<label for="k-1">
|
||||||
|
1) Do you remember any of the contributors of this project? Please name them below
|
||||||
|
<textarea id="k-1" name="k-1"></textarea>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
<div id="intro-step6">
|
<div id="intro-step6">
|
||||||
<h1>Questions about Play in Software Development</h1>
|
<h1>Questions about Play in Software Development</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
@ -249,9 +259,9 @@
|
||||||
<textarea id="fb-3" name="fb-3"></textarea>
|
<textarea id="fb-3" name="fb-3"></textarea>
|
||||||
</label>
|
</label>
|
||||||
<label for="fb-4">
|
<label for="fb-4">
|
||||||
4) Could you imageine yourself using this visualization or something similar on
|
4) Could you imagine yourself using a visualization or something similar on different
|
||||||
different projects to learn about them? If so, on which projects would you want to try
|
projects to learn about them? If so, on which projects would you want to try it out? If
|
||||||
it out?
|
not, what would you prefer instead, just going throught the files?
|
||||||
<textarea id="fb-4" name="fb-4"></textarea>
|
<textarea id="fb-4" name="fb-4"></textarea>
|
||||||
</label>
|
</label>
|
||||||
<label for="fb-5">
|
<label for="fb-5">
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ export class Logger {
|
||||||
if (uid) {
|
if (uid) {
|
||||||
const logEvKey = this.database.ref(uid).child('logs').push().key;
|
const logEvKey = this.database.ref(uid).child('logs').push().key;
|
||||||
|
|
||||||
// this.database.ref(uid).update({ [`logs/${logEvKey}`]: ev });
|
this.database.ref(uid).update({ [`logs/${logEvKey}`]: ev });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ const store = create<State>(
|
||||||
devtools((set) => ({
|
devtools((set) => ({
|
||||||
uid: null,
|
uid: null,
|
||||||
showScore: false,
|
showScore: false,
|
||||||
currentIntroStep: 0,
|
currentIntroStep: 1,
|
||||||
revealablesFinished: 0,
|
revealablesFinished: 0,
|
||||||
currentScene: Scenes.OVERVIEW,
|
currentScene: Scenes.OVERVIEW,
|
||||||
currentSubproject: null,
|
currentSubproject: null,
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,8 @@ export class Intro {
|
||||||
fb9: HTMLTextAreaElement;
|
fb9: HTMLTextAreaElement;
|
||||||
fb10: HTMLTextAreaElement;
|
fb10: HTMLTextAreaElement;
|
||||||
|
|
||||||
|
k1: HTMLTextAreaElement;
|
||||||
|
|
||||||
errorRef: HTMLElement;
|
errorRef: HTMLElement;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
@ -65,6 +67,8 @@ export class Intro {
|
||||||
this.fb9 = document.querySelector('#fb-9');
|
this.fb9 = document.querySelector('#fb-9');
|
||||||
this.fb10 = document.querySelector('#fb-10');
|
this.fb10 = document.querySelector('#fb-10');
|
||||||
|
|
||||||
|
this.k1 = document.querySelector('#k-1');
|
||||||
|
|
||||||
this.errorRef = document.querySelector('#intro-error');
|
this.errorRef = document.querySelector('#intro-error');
|
||||||
|
|
||||||
this.nextButton.addEventListener('click', () => this.onNextClick());
|
this.nextButton.addEventListener('click', () => this.onNextClick());
|
||||||
|
|
@ -192,7 +196,7 @@ export class Intro {
|
||||||
}
|
}
|
||||||
|
|
||||||
private sendKnowledgeQuestionAnswers() {
|
private sendKnowledgeQuestionAnswers() {
|
||||||
const answers = [];
|
const answers = [this.k1.value];
|
||||||
|
|
||||||
logger.logQuestions(answers, true);
|
logger.logQuestions(answers, true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue