2017-03-05 01:30:10 +00:00
|
|
|
/*
|
2017-08-15 06:22:37 +00:00
|
|
|
* Copyright (C) 2016-2017 Alex Yatskov <alex@foosoft.net>
|
2017-03-05 01:30:10 +00:00
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-08-15 02:55:04 +00:00
|
|
|
class DisplayFloat extends Display {
|
2017-03-05 01:30:10 +00:00
|
|
|
constructor() {
|
2017-08-14 03:50:43 +00:00
|
|
|
super($('#spinner'), $('#definitions'));
|
2017-08-15 06:22:37 +00:00
|
|
|
$(window).on('message', utilAsync(this.onMessage.bind(this)));
|
2017-03-05 01:30:10 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
onError(error) {
|
|
|
|
if (window.yomichan_orphaned) {
|
|
|
|
this.onOrphaned();
|
2017-03-05 01:30:10 +00:00
|
|
|
} else {
|
2017-09-23 02:57:00 +00:00
|
|
|
window.alert(`Error: ${error.toString ? error.toString() : error}`);
|
2017-03-05 01:30:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
onOrphaned() {
|
|
|
|
$('#definitions').hide();
|
|
|
|
$('#error-orphaned').show();
|
2017-03-25 22:59:33 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
onSearchClear() {
|
|
|
|
window.parent.postMessage('popupClose', '*');
|
2017-04-01 04:48:10 +00:00
|
|
|
}
|
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
onSelectionCopy() {
|
|
|
|
window.parent.postMessage('selectionCopy', '*');
|
2017-03-05 01:30:10 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 02:24:57 +00:00
|
|
|
onMessage(e) {
|
2017-03-27 05:42:17 +00:00
|
|
|
const handlers = {
|
2017-08-13 23:11:51 +00:00
|
|
|
termsShow: ({definitions, options, context}) => {
|
|
|
|
this.termsShow(definitions, options, context);
|
2017-03-27 05:42:17 +00:00
|
|
|
},
|
2017-03-05 01:30:10 +00:00
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
kanjiShow: ({definitions, options, context}) => {
|
|
|
|
this.kanjiShow(definitions, options, context);
|
2017-03-27 05:42:17 +00:00
|
|
|
},
|
2017-03-05 01:30:10 +00:00
|
|
|
|
2017-08-13 23:11:51 +00:00
|
|
|
orphaned: () => {
|
|
|
|
this.onOrphaned();
|
2017-03-05 02:24:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-27 05:42:17 +00:00
|
|
|
const {action, params} = e.originalEvent.data;
|
|
|
|
const handler = handlers[action];
|
|
|
|
if (handler) {
|
|
|
|
handler(params);
|
2017-03-05 02:24:57 +00:00
|
|
|
}
|
2017-03-05 01:30:10 +00:00
|
|
|
}
|
2017-04-01 04:48:10 +00:00
|
|
|
|
|
|
|
onKeyDown(e) {
|
|
|
|
const handlers = {
|
|
|
|
67: /* c */ () => {
|
2017-08-13 23:11:51 +00:00
|
|
|
if (e.ctrlKey && !window.getSelection().toString()) {
|
|
|
|
this.onSelectionCopy();
|
2017-04-01 04:48:10 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const handler = handlers[e.keyCode];
|
|
|
|
if (handler && handler()) {
|
|
|
|
e.preventDefault();
|
2017-04-01 18:20:58 +00:00
|
|
|
} else {
|
|
|
|
super.onKeyDown(e);
|
2017-04-01 04:48:10 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-15 02:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
window.yomichan_display = new DisplayFloat();
|