yomichan/ext/bg/js/dictionary.js

159 lines
4.7 KiB
JavaScript
Raw Normal View History

2016-03-20 02:32:35 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class Dictionary {
2016-03-21 00:15:40 +00:00
constructor() {
2016-08-22 15:48:19 +00:00
this.db = null;
2016-08-22 02:51:12 +00:00
this.entities = null;
2016-03-21 00:15:40 +00:00
}
2016-08-24 03:33:04 +00:00
existsDb() {
return Dexie.exists('dict');
2016-08-21 20:32:36 +00:00
}
2016-08-24 03:33:04 +00:00
loadDb() {
2016-08-22 15:48:19 +00:00
this.db = null;
this.entities = null;
2016-08-24 03:33:04 +00:00
return this.initDb().open();
2016-03-21 00:15:40 +00:00
}
2016-08-24 03:33:04 +00:00
initDb() {
this.db = new Dexie('dict');
this.db.version(1).stores({
terms: '++id,expression,reading',
entities: '++id,name',
kanji: '++id,character'
2016-08-22 02:51:12 +00:00
});
2016-08-24 03:33:04 +00:00
return this.db;
2016-08-22 02:51:12 +00:00
}
2016-08-22 02:51:12 +00:00
importKanjiDict(dict) {
2016-08-22 15:48:19 +00:00
return this.db.kanji.bulkAdd(dict.d);
2016-08-22 02:51:12 +00:00
}
2016-08-22 02:51:12 +00:00
fetchEntities() {
if (this.entities !== null) {
return Promise.resolve(this.entities);
}
2016-08-22 15:48:19 +00:00
return this.db.entities.toArray((rows) => {
this.entities = {};
for (const row of rows) {
this.entities[row.name] = row.value;
}
2016-08-22 02:51:12 +00:00
}).then(() => {
return Promise.resolve(this.entities);
});
2016-03-21 00:15:40 +00:00
}
2016-08-24 03:33:04 +00:00
findTerm(term) {
const results = [];
2016-08-24 03:33:04 +00:00
return this.db.terms.where('expression').equals(term).or('reading').equals(term).each((row) => {
2016-08-22 02:51:12 +00:00
results.push({
2016-08-24 03:33:04 +00:00
expression: row.expression,
reading: row.reading,
tags: row.tags.split(' '),
glossary: row.glossary,
2016-08-22 02:51:12 +00:00
entities: this.entities,
2016-08-24 03:33:04 +00:00
id: row.id
2016-08-22 02:51:12 +00:00
});
}).then(() => {
2016-08-24 03:33:04 +00:00
return Promise.resolve(results);
2016-08-22 02:51:12 +00:00
});
}
2016-04-13 06:12:20 +00:00
2016-08-22 02:51:12 +00:00
findKanji(kanji) {
const results = [];
2016-08-22 15:48:19 +00:00
return this.db.kanji.where('c').equals(kanji).each((row) => {
2016-08-22 02:51:12 +00:00
results.push({
2016-08-22 15:48:19 +00:00
character: row.c,
onyomi: row.o.split(' '),
kunyomi: row.k.split(' '),
tags: row.t.split(' '),
glossary: row.m
2016-08-22 02:51:12 +00:00
});
});
}
2016-08-24 03:33:04 +00:00
// importTermDict(dict) {
// return this.db.terms.bulkAdd(dict.d).then(() => {
// this.entities = {};
// for (const name in dict.e) {
// this.entities[name] = dict.e[name];
// }
// return this.db.entities.bulkAdd(dict.e);
// });
// }
importTermDict(indexUrl) {
return Dictionary.loadJson(indexUrl).then((index) => {
const entities = [];
for (const [name, value] of index.ents) {
entities.push({name, value});
}
return this.db.entities.bulkAdd(entities).then(() => {
if (this.entities === null) {
this.entities = {};
}
for (const entity of entities) {
this.entities[entity.name] = entity.value;
}
}).then(() => {
const loaders = [];
const indexDir = indexUrl.slice(0, indexUrl.lastIndexOf('/'));
for (let i = 0; i < index.refs; ++i) {
const refUrl = `${indexDir}/ref_${i}.json`;
loaders.push(
Dictionary.loadJson(refUrl).then((refs) => {
const rows = [];
for (const [e, r, t, ...g] of refs) {
rows.push({
'expression': e,
'reading': r,
'tags': t,
'glossary': g
});
}
return this.db.terms.bulkAdd(rows);
})
);
}
return Promise.all(loaders);
});
});
}
static loadJson(url) {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.addEventListener('load', () => resolve(JSON.parse(xhr.responseText)));
xhr.open('GET', chrome.extension.getURL(url), true);
xhr.send();
});
}
2016-03-20 02:32:35 +00:00
}