Pronounce => Play Audio

This commit is contained in:
Alex Yatskov 2016-07-18 08:08:31 -07:00
parent cea8471290
commit a567ef3605
6 changed files with 15 additions and 11 deletions

View File

@ -104,11 +104,11 @@ templates['term.html'] = template({"1":function(container,depth0,helpers,partial
},"2":function(container,depth0,helpers,partials,data,blockParams,depths) { },"2":function(container,depth0,helpers,partials,data,blockParams,depths) {
var helper, alias1=container.escapeExpression; var helper, alias1=container.escapeExpression;
return " <a href=\"#\" title=\"Pronounce\" class=\"action-pronounce\" data-index=\"" return " <a href=\"#\" title=\"Play audio\" class=\"action-play-audio\" data-index=\""
+ alias1(((helper = (helper = helpers.index || (data && data.index)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"index","hash":{},"data":data}) : helper))) + alias1(((helper = (helper = helpers.index || (data && data.index)) != null ? helper : helpers.helperMissing),(typeof helper === "function" ? helper.call(depth0 != null ? depth0 : {},{"name":"index","hash":{},"data":data}) : helper)))
+ "\"><img src=\"" + "\"><img src=\""
+ alias1(container.lambda((depths[1] != null ? depths[1].root : depths[1]), depth0)) + alias1(container.lambda((depths[1] != null ? depths[1].root : depths[1]), depth0))
+ "/img/pronounce.png\"></a>\n"; + "/img/play_audio.png\"></a>\n";
},"4":function(container,depth0,helpers,partials,data,blockParams,depths) { },"4":function(container,depth0,helpers,partials,data,blockParams,depths) {
var helper, alias1=depth0 != null ? depth0 : {}, alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression, alias5=container.lambda; var helper, alias1=depth0 != null ? depth0 : {}, alias2=helpers.helperMissing, alias3="function", alias4=container.escapeExpression, alias5=container.lambda;

View File

Before

Width:  |  Height:  |  Size: 610 B

After

Width:  |  Height:  |  Size: 610 B

View File

@ -168,9 +168,13 @@ class Client {
}); });
} }
api_pronounce(index) { api_playAudio(index) {
const dfn = this.definitions[index]; const definition = this.definitions[index];
const url = `http://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kana=${dfn.reading}&kanji=${dfn.expression}`;
let url = `https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kanji=${definition.expression}`;
if (definition.reading) {
url += `&kana=${definition.reading}`;
}
for (let key in this.audio) { for (let key in this.audio) {
this.audio[key].pause(); this.audio[key].pause();

View File

@ -36,12 +36,12 @@ function registerAddNoteLinks() {
} }
} }
function registerPronounceLinks() { function registerAudioLinks() {
for (let link of [].slice.call(document.getElementsByClassName('action-pronounce'))) { for (let link of [].slice.call(document.getElementsByClassName('action-play-audio'))) {
link.addEventListener('click', (e) => { link.addEventListener('click', (e) => {
e.preventDefault(); e.preventDefault();
const ds = e.currentTarget.dataset; const ds = e.currentTarget.dataset;
window.parent.postMessage({action: 'pronounce', params: ds.index}, '*'); window.parent.postMessage({action: 'playAudio', params: ds.index}, '*');
}); });
} }
} }
@ -49,7 +49,7 @@ function registerPronounceLinks() {
function onDomContentLoaded() { function onDomContentLoaded() {
registerKanjiLinks(); registerKanjiLinks();
registerAddNoteLinks(); registerAddNoteLinks();
registerPronounceLinks(); registerAudioLinks();
} }
function onMessage(e) { function onMessage(e) {

View File

@ -24,7 +24,7 @@
"fg/img/add_kanji.png", "fg/img/add_kanji.png",
"fg/img/add_vocab_kana.png", "fg/img/add_vocab_kana.png",
"fg/img/add_vocab_kanji.png", "fg/img/add_vocab_kanji.png",
"fg/img/pronounce.png", "fg/img/play_audio.png",
"fg/js/frame.js", "fg/js/frame.js",
"fg/ttf/kanji-stroke-orders.ttf", "fg/ttf/kanji-stroke-orders.ttf",
"fg/ttf/vl-gothic-regular.ttf" "fg/ttf/vl-gothic-regular.ttf"

View File

@ -2,7 +2,7 @@
{{#with options}} {{#with options}}
<div class="action-bar" data-sequence="{{../sequence}}"> <div class="action-bar" data-sequence="{{../sequence}}">
{{#if enableAudioPlayback}} {{#if enableAudioPlayback}}
<a href="#" title="Pronounce" class="action-pronounce" data-index="{{@index}}"><img src="{{../root}}/img/pronounce.png"></a> <a href="#" title="Play audio" class="action-play-audio" data-index="{{@index}}"><img src="{{../root}}/img/play_audio.png"></a>
{{/if}} {{/if}}
{{#if enableAnkiConnect}} {{#if enableAnkiConnect}}
<a href="#" title="Add term as expression" class="action-add-note disabled" data-mode="vocab_kanji" data-index="{{@index}}"><img src="{{../root}}/img/add_vocab_kanji.png"></a> <a href="#" title="Add term as expression" class="action-add-note disabled" data-mode="vocab_kanji" data-index="{{@index}}"><img src="{{../root}}/img/add_vocab_kanji.png"></a>