word/quiz: common base class for all subpages
[sheet.git] / word / multichoice.js
1 class WordMultiChoice extends WordQuiz {
2         next() {
3                 let word = this.words.shift();
4                 let form = put(this.form,
5                         '+img[src=$]+ul', `/data/word/en/${word[0]}.jpg`,
6                 );
7
8                 let answers = [word[2], this.words[1][2], this.words[2][2], this.words[3][2]]
9                         .sort(() => {return .5 - Math.random()}) // shuffle
10                 answers.forEach(suggest => {
11                         let label = suggest.replace(/\/.*/, '');
12                         let option = put(form, 'li', label, {onclick: () => {
13                                 if (suggest != word[2]) {
14                                         // incorrect
15                                         put(option, '.wrong');
16                                         return;
17                                 }
18                                 put(option, '.good');
19                                 window.setTimeout(() => this.next(), 500);
20                         }});
21                 });
22         }
23
24         setup() {
25                 this.form = document.getElementById('quiz');
26                 this.next();
27         }
28 };