re-implement mdict lookup support

master
James Feng Cao 2 years ago
parent c033aee378
commit 936181547e

@ -74,21 +74,11 @@
</section> </section>
<script> <script>
//?file=./xxx/xx.xx,./xx/xx.xxx#word= //?file=.../xx.xx,.../xx.xxx#word=
var dictinput = document.getElementById('dictfile'); var dictinput = document.getElementById('dictfile');
var wordinput = document.getElementById('word'); var wordinput = document.getElementById('word');
var btnLookup = document.getElementById('btnLookup'); var btnLookup = document.getElementById('btnLookup');
window.onload = function() {
let v = location.hash.substring(6);
wordinput.value = v;
let filenames = location.search.substring(6);
if(filenames.length>0){
dictinput.setAttribute('accept',filenames);
location.href="i:5fdictinput.click()";
setTimeout(()=>{dictinput.dispatchEvent(new Event('change'));dictinput.removeAttribute('accept')},500);
}
window.onhashchange = function() { window.onhashchange = function() {
let v = location.hash.substring(6); let v = location.hash.substring(6);
if(v.length>0){ if(v.length>0){
@ -98,6 +88,33 @@
} }
}; };
{
let v = location.hash.substring(6);
wordinput.value = v;
}
{
let filenames = location.search.substring(6);
window.onload = function(){
if(filenames.length>0){
let clickurl = "i:5fdictinput.click():"+filenames;
location.href=clickurl;
//setTimeout(()=>{dictinput.dispatchEvent(new Event('change', {'bubbles': true}));},100);
var callbackTimer = setInterval(function() {
let files = dictinput.files;
if(files.length>0){
if(!btnLookup.disabled){
clearInterval(callbackTimer);
return;
}
}else
location.href=clickurl;
dictinput.dispatchEvent(new Event('change', {'bubbles': true}));
}, 100);
}
};
} }
</script> </script>
</body> </body>

Loading…
Cancel
Save