Merge branch 'master' into dev
This commit is contained in:
commit
a9cc121860
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ZIP=yomichan.zip
|
ZIP=yomichan.zip
|
||||||
rm -f $ZIP
|
rm -f $ZIP
|
||||||
7z a $ZIP ./ext/*
|
7za a $ZIP ./ext/*
|
||||||
|
@ -24,39 +24,6 @@ GNU General Public License for more details.
|
|||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
</pre>
|
|
||||||
<h3>VLGothic License</h3>
|
|
||||||
<pre>
|
|
||||||
Copyright (c) 1990-2003 Wada Laboratory, the University of Tokyo.
|
|
||||||
Copyright (c) 2003-2004 Electronic Font Open Laboratory (/efont/).
|
|
||||||
Copyright (C) 2002-2013 M+ FONTS PROJECT
|
|
||||||
Copyright (C) 2006-2013 Daisuke SUZUKI .
|
|
||||||
Copyright (C) 2006-2013 Project Vine .
|
|
||||||
All rights reserved.
|
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
|
||||||
modification, are permitted provided that the following conditions
|
|
||||||
are met:
|
|
||||||
1. Redistributions of source code must retain the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer.
|
|
||||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
this list of conditions and the following disclaimer in the documentation
|
|
||||||
and/or other materials provided with the distribution.
|
|
||||||
3. Neither the name of the Wada Laboratory, the University of Tokyo nor
|
|
||||||
the names of its contributors may be used to endorse or promote products
|
|
||||||
derived from this software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY WADA LABORATORY, THE UNIVERSITY OF TOKYO AND
|
|
||||||
CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
|
|
||||||
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE LABORATORY OR
|
|
||||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
||||||
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
||||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
||||||
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
||||||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
</pre>
|
</pre>
|
||||||
<h3>EDRDG License</h3>
|
<h3>EDRDG License</h3>
|
||||||
<pre>
|
<pre>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Yomichan",
|
"name": "Yomichan",
|
||||||
"version": "1.1.6",
|
"version": "1.1.7",
|
||||||
|
|
||||||
"description": "Japanese dictionary with Anki integration",
|
"description": "Japanese dictionary with Anki integration",
|
||||||
"icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},
|
"icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},
|
||||||
|
@ -23,6 +23,7 @@ class Display {
|
|||||||
this.container = container;
|
this.container = container;
|
||||||
this.definitions = [];
|
this.definitions = [];
|
||||||
this.audioCache = {};
|
this.audioCache = {};
|
||||||
|
this.responseCache = {};
|
||||||
this.sequence = 0;
|
this.sequence = 0;
|
||||||
this.index = 0;
|
this.index = 0;
|
||||||
|
|
||||||
@ -261,37 +262,38 @@ class Display {
|
|||||||
|
|
||||||
noteAdd(index, mode) {
|
noteAdd(index, mode) {
|
||||||
this.spinner.show();
|
this.spinner.show();
|
||||||
|
|
||||||
const definition = this.definitions[index];
|
const definition = this.definitions[index];
|
||||||
|
|
||||||
|
let promise = Promise.resolve();
|
||||||
if (mode !== 'kanji') {
|
if (mode !== 'kanji') {
|
||||||
const url = Display.audioBuildUrl(definition);
|
|
||||||
const filename = Display.audioBuildFilename(definition);
|
const filename = Display.audioBuildFilename(definition);
|
||||||
if (url && filename) {
|
if (filename) {
|
||||||
definition.audio = {url, filename};
|
promise = this.audioBuildUrl(definition).then(url => definition.audio = {url, filename}).catch(() => {});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.definitionAdd(definition, mode).then(success => {
|
promise.then(() => {
|
||||||
|
return this.definitionAdd(definition, mode).then(success => {
|
||||||
if (success) {
|
if (success) {
|
||||||
Display.adderButtonFind(index, mode).addClass('disabled');
|
Display.adderButtonFind(index, mode).addClass('disabled');
|
||||||
} else {
|
} else {
|
||||||
this.handleError('note could not be added');
|
this.handleError('note could not be added');
|
||||||
}
|
}
|
||||||
|
});
|
||||||
}).catch(this.handleError.bind(this)).then(() => this.spinner.hide());
|
}).catch(this.handleError.bind(this)).then(() => this.spinner.hide());
|
||||||
}
|
}
|
||||||
|
|
||||||
audioPlay(index) {
|
audioPlay(index) {
|
||||||
|
this.spinner.show();
|
||||||
|
const definition = this.definitions[index];
|
||||||
|
|
||||||
for (const key in this.audioCache) {
|
for (const key in this.audioCache) {
|
||||||
const audio = this.audioCache[key];
|
this.audioCache[key].pause();
|
||||||
if (audio !== null) {
|
|
||||||
audio.pause();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const definition = this.definitions[index];
|
this.audioBuildUrl(definition).then(url => {
|
||||||
const url = Display.audioBuildUrl(definition);
|
|
||||||
if (!url) {
|
if (!url) {
|
||||||
return;
|
url = '/mixed/mp3/button.mp3';
|
||||||
}
|
}
|
||||||
|
|
||||||
let audio = this.audioCache[url];
|
let audio = this.audioCache[url];
|
||||||
@ -309,43 +311,69 @@ class Display {
|
|||||||
audio.play();
|
audio.play();
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
}).catch(this.handleError.bind(this)).then(() => this.spinner.hide());
|
||||||
}
|
}
|
||||||
|
|
||||||
static entryIndexFind(element) {
|
audioBuildUrl(definition) {
|
||||||
return $('.entry').index(element.closest('.entry'));
|
return new Promise((resolve, reject) => {
|
||||||
|
const response = this.responseCache[definition.expression];
|
||||||
|
if (response) {
|
||||||
|
resolve(response);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static adderButtonFind(index, mode) {
|
const data = {
|
||||||
return $('.entry').eq(index).find(`.action-add-note[data-mode="${mode}"]`);
|
post: 'dictionary_reference',
|
||||||
}
|
match_type: 'exact',
|
||||||
|
search_query: definition.expression
|
||||||
static audioBuildUrl(definition) {
|
};
|
||||||
let kana = definition.reading;
|
|
||||||
let kanji = definition.expression;
|
|
||||||
|
|
||||||
if (!kana && !kanji) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!kana && wanakana.isHiragana(kanji)) {
|
|
||||||
kana = kanji;
|
|
||||||
kanji = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const params = [];
|
const params = [];
|
||||||
if (kanji) {
|
for (const key in data) {
|
||||||
params.push(`kanji=${encodeURIComponent(kanji)}`);
|
params.push(`${encodeURIComponent(key)}=${encodeURIComponent(data[key])}`);
|
||||||
}
|
|
||||||
if (kana) {
|
|
||||||
params.push(`kana=${encodeURIComponent(kana)}`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return `https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?${params.join('&')}`;
|
const xhr = new XMLHttpRequest();
|
||||||
|
xhr.open('POST', 'https://www.japanesepod101.com/learningcenter/reference/dictionary_post');
|
||||||
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
||||||
|
xhr.addEventListener('error', () => reject('failed to scrape audio data'));
|
||||||
|
xhr.addEventListener('load', () => {
|
||||||
|
this.responseCache[definition.expression] = xhr.responseText;
|
||||||
|
resolve(xhr.responseText);
|
||||||
|
});
|
||||||
|
|
||||||
|
xhr.send(params.join('&'));
|
||||||
|
}).then(response => {
|
||||||
|
const dom = new DOMParser().parseFromString(response, 'text/html');
|
||||||
|
const entries = [];
|
||||||
|
|
||||||
|
for (const row of dom.getElementsByClassName('dc-result-row')) {
|
||||||
|
try {
|
||||||
|
const url = row.getElementsByClassName('ill-onebuttonplayer').item(0).getAttribute('data-url');
|
||||||
|
const expression = dom.getElementsByClassName('dc-vocab').item(0).innerText;
|
||||||
|
const reading = dom.getElementsByClassName('dc-vocab_kana').item(0).innerText;
|
||||||
|
|
||||||
|
if (url && expression && reading) {
|
||||||
|
entries.push({url, expression, reading});
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// NOP
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return entries;
|
||||||
|
}).then(entries => {
|
||||||
|
for (const entry of entries) {
|
||||||
|
if (!definition.reading || definition.reading === entry.reading) {
|
||||||
|
return entry.url;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static audioBuildFilename(definition) {
|
static audioBuildFilename(definition) {
|
||||||
if (!definition.reading && !definition.expression) {
|
if (!definition.reading && !definition.expression) {
|
||||||
return null;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let filename = 'yomichan';
|
let filename = 'yomichan';
|
||||||
@ -358,4 +386,12 @@ class Display {
|
|||||||
|
|
||||||
return filename += '.mp3';
|
return filename += '.mp3';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static entryIndexFind(element) {
|
||||||
|
return $('.entry').index(element.closest('.entry'));
|
||||||
|
}
|
||||||
|
|
||||||
|
static adderButtonFind(index, mode) {
|
||||||
|
return $('.entry').eq(index).find(`.action-add-note[data-mode="${mode}"]`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user