X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/af99f42e425d0fd4e22d92458d5dc2049429d684..HEAD:/word/multichoice.js diff --git a/word/multichoice.js b/word/multichoice.js index aa018d0..300a32f 100644 --- a/word/multichoice.js +++ b/word/multichoice.js @@ -1,16 +1,18 @@ -class WordMultiChoice extends WordQuiz { +class WordMultichoice extends WordQuiz { next() { + if (this.words.length < 4) return; let word = this.words.shift(); let form = put(this.form, - '+img[src=$]+ul', `/data/word/en/${word[0]}.jpg`, + '+img[src=$]+ul', word.thumb() ); - let answers = [word[2], this.words[1][2], this.words[2][2], this.words[3][2]] - .sort(() => {return .5 - Math.random()}) // shuffle + let answers = [word, this.words[0], this.words[1], this.words[2]] + .shuffle() + this.log('ask', word.id, answers.map(w => w.id)); answers.forEach(suggest => { - let label = suggest.replace(/\/.*/, ''); - let option = put(form, 'li', label, {onclick: () => { - if (suggest != word[2]) { + let option = put(form, 'li', suggest.label, {onclick: () => { + this.log('pick', suggest.id, null, word.id); + if (suggest.label != word.label) { // incorrect put(option, '.wrong'); return; @@ -22,7 +24,7 @@ class WordMultiChoice extends WordQuiz { } setup() { - this.form = document.getElementById('quiz'); + super.setup(); this.next(); } };