word: language includes for general use
[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[2]}.jpg`,
6                 );
7
8                 let answers = [word[0], this.words[0][0], this.words[1][0], this.words[2][0]]
9                         .shuffle()
10                 answers.forEach(suggest => {
11                         let label = suggest.replace(/\/.*/, '');
12                         let option = put(form, 'li', label, {onclick: () => {
13                                 if (suggest != word[0]) {
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 };