b1db273415ae27e51f7c40026c014673fd115543
[sheet.git] / word / finder.js
1 class WordFinder extends WordQuiz {
2         add(parentitem, rows) {
3                 const catitem = put(parentitem, 'ul');
4                 rows.forEach(ref => {
5                         const [title, level, imgid] = this.data[ref];
6                         const worditem = put(catitem, 'li');
7                         const figitem = put(worditem, 'figure');
8                         if (imgid) {
9                                 put(figitem, 'img[src=$]', `/data/word/32/${imgid}.jpg`);
10                         }
11                         if (title) {
12                                 let html = title.replace(/\/(.*)/, ' <small>($1)</small>');
13                                 put(figitem, 'figcaption', {
14                                         innerHTML: html,
15                                 });
16                         }
17                         if (this.cats[ref]) {
18                                 // delve into subcategory
19                                 put(worditem, '.parent');
20                                 this.add(worditem, this.cats[ref].sort((a, b) => {
21                                         const [worda, wordb] = [this.data[a], this.data[b]];
22                                         return (worda[1] % 1) - (wordb[1] % 1)
23                                                 || worda[0].localeCompare(wordb[0]);
24                                 }));
25                         }
26                 });
27         }
28
29         setup() {
30                 this.gallery = document.getElementById('gallery');
31                 put(this.gallery, '-p', 'Under construction.');
32                 this.add(this.gallery, this.preset.cat ? [this.preset.cat] : this.cats[null]);
33         }
34
35         stop() {}
36 };