yomichan/ext/jp/translator.js

65 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-03-20 17:52:27 +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 Translator {
2016-03-20 19:26:10 +00:00
constructor() {
2016-03-21 00:15:40 +00:00
this.dictionary = new Dictionary();
2016-03-21 00:52:14 +00:00
this.deinflector = new Deinflector();
2016-03-20 17:52:27 +00:00
this.initialized = false;
}
2016-03-20 19:26:10 +00:00
initialize(paths, callback) {
2016-03-20 17:52:27 +00:00
if (this.initialized) {
return;
}
2016-03-20 19:26:10 +00:00
const loaders = [];
for (const key of ['rules', 'edict', 'enamdict', 'kanjidic']) {
loaders.push(
$.getJSON(chrome.extension.getURL(paths[key]))
);
}
$.when.apply($, loaders).done((rules, edict, enamdict, kanjidic) => {
2016-03-21 00:52:14 +00:00
this.deinflector.setRules(rules);
2016-03-21 00:15:40 +00:00
this.dictionary.addTermDict(edict[0]);
this.dictionary.addTermDict(enamdict[0]);
this.dictionary.addKanjiDict(kanjidic[0]);
2016-03-20 19:26:10 +00:00
2016-03-20 17:52:27 +00:00
this.initialized = true;
if (callback) {
callback();
}
});
}
}
2016-03-20 19:26:10 +00:00
const trans = new Translator();
2016-03-20 17:52:27 +00:00
2016-03-20 19:26:10 +00:00
trans.initialize({
rules: 'jp/data/rules.json',
edict: 'jp/data/edict.json',
enamdict: 'jp/data/enamdict.json',
2016-03-21 01:27:11 +00:00
kanjidic: 'jp/data/kanjidic.json'
2016-03-20 19:26:10 +00:00
}, function() {
2016-03-21 00:52:14 +00:00
alert('Loaded');
2016-03-21 00:15:40 +00:00
// alert(trans.dictionary.findTerm('猫'));
2016-03-20 19:26:10 +00:00
});