2019-10-12 16:59:51 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2019-2020 Yomichan Authors
|
2019-10-12 16:59:51 +00:00
|
|
|
*
|
|
|
|
* 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
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-10-12 16:59:51 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
|
|
|
* Frontend
|
|
|
|
* Popup
|
2020-05-08 23:04:53 +00:00
|
|
|
* PopupFactory
|
2020-03-11 02:30:36 +00:00
|
|
|
* TextSourceRange
|
2020-05-24 17:30:40 +00:00
|
|
|
* api
|
2020-03-11 02:30:36 +00:00
|
|
|
*/
|
2019-10-12 16:59:51 +00:00
|
|
|
|
|
|
|
class SettingsPopupPreview {
|
|
|
|
constructor() {
|
|
|
|
this.frontend = null;
|
2020-05-24 17:30:40 +00:00
|
|
|
this.apiOptionsGetOld = api.optionsGet.bind(api);
|
2020-02-16 18:37:03 +00:00
|
|
|
this.popup = null;
|
|
|
|
this.popupSetCustomOuterCssOld = null;
|
2019-10-12 16:59:51 +00:00
|
|
|
this.popupShown = false;
|
2019-10-12 21:59:56 +00:00
|
|
|
this.themeChangeTimeout = null;
|
2019-12-12 02:27:42 +00:00
|
|
|
this.textSource = null;
|
2020-04-26 19:33:50 +00:00
|
|
|
this.optionsContext = null;
|
2020-02-17 04:41:17 +00:00
|
|
|
this._targetOrigin = chrome.runtime.getURL('/').replace(/\/$/, '');
|
2020-02-27 01:07:14 +00:00
|
|
|
|
|
|
|
this._windowMessageHandlers = new Map([
|
2020-04-26 19:33:50 +00:00
|
|
|
['prepare', ({optionsContext}) => this.prepare(optionsContext)],
|
2020-02-27 01:07:14 +00:00
|
|
|
['setText', ({text}) => this.setText(text)],
|
|
|
|
['setCustomCss', ({css}) => this.setCustomCss(css)],
|
2020-04-26 19:33:50 +00:00
|
|
|
['setCustomOuterCss', ({css}) => this.setCustomOuterCss(css)],
|
|
|
|
['updateOptionsContext', ({optionsContext}) => this.updateOptionsContext(optionsContext)]
|
2020-02-27 01:07:14 +00:00
|
|
|
]);
|
2019-10-12 16:59:51 +00:00
|
|
|
|
2020-02-27 02:01:40 +00:00
|
|
|
window.addEventListener('message', this.onMessage.bind(this), false);
|
2020-04-26 19:33:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async prepare(optionsContext) {
|
|
|
|
this.optionsContext = optionsContext;
|
2019-10-12 16:59:51 +00:00
|
|
|
|
2020-04-26 19:33:50 +00:00
|
|
|
// Setup events
|
2020-02-27 02:19:22 +00:00
|
|
|
document.querySelector('#theme-dark-checkbox').addEventListener('change', this.onThemeDarkCheckboxChanged.bind(this), false);
|
2019-10-12 16:59:51 +00:00
|
|
|
|
|
|
|
// Overwrite API functions
|
2020-05-24 17:30:40 +00:00
|
|
|
api.optionsGet = this.apiOptionsGet.bind(this);
|
2019-10-12 16:59:51 +00:00
|
|
|
|
|
|
|
// Overwrite frontend
|
2020-05-24 17:30:40 +00:00
|
|
|
const {frameId} = await api.frameInformationGet();
|
2019-12-21 18:27:32 +00:00
|
|
|
|
2020-05-08 23:04:53 +00:00
|
|
|
const popupFactory = new PopupFactory(frameId);
|
|
|
|
await popupFactory.prepare();
|
|
|
|
|
|
|
|
this.popup = popupFactory.getOrCreatePopup();
|
2020-02-16 18:37:03 +00:00
|
|
|
this.popup.setChildrenSupported(false);
|
2019-12-21 18:19:31 +00:00
|
|
|
|
2020-02-16 18:37:03 +00:00
|
|
|
this.popupSetCustomOuterCssOld = this.popup.setCustomOuterCss;
|
2020-02-27 02:01:40 +00:00
|
|
|
this.popup.setCustomOuterCss = this.popupSetCustomOuterCss.bind(this);
|
2020-02-16 18:37:03 +00:00
|
|
|
|
|
|
|
this.frontend = new Frontend(this.popup);
|
2020-04-26 19:33:50 +00:00
|
|
|
this.frontend.getOptionsContext = async () => this.optionsContext;
|
2019-12-21 18:19:31 +00:00
|
|
|
await this.frontend.prepare();
|
2020-05-02 16:47:15 +00:00
|
|
|
this.frontend.setDisabledOverride(true);
|
|
|
|
this.frontend.canClearSelection = false;
|
2019-10-12 16:59:51 +00:00
|
|
|
|
|
|
|
// Update search
|
|
|
|
this.updateSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
async apiOptionsGet(...args) {
|
|
|
|
const options = await this.apiOptionsGetOld(...args);
|
|
|
|
options.general.enable = true;
|
|
|
|
options.general.debugInfo = false;
|
|
|
|
options.general.popupWidth = 400;
|
|
|
|
options.general.popupHeight = 250;
|
|
|
|
options.general.popupHorizontalOffset = 0;
|
|
|
|
options.general.popupVerticalOffset = 10;
|
|
|
|
options.general.popupHorizontalOffset2 = 10;
|
|
|
|
options.general.popupVerticalOffset2 = 0;
|
|
|
|
options.general.popupHorizontalTextPosition = 'below';
|
|
|
|
options.general.popupVerticalTextPosition = 'before';
|
|
|
|
options.scanning.selectText = false;
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:37:03 +00:00
|
|
|
async popupSetCustomOuterCss(...args) {
|
2019-10-13 16:10:00 +00:00
|
|
|
// This simulates the stylesheet priorities when injecting using the web extension API.
|
2020-02-16 18:37:03 +00:00
|
|
|
const result = await this.popupSetCustomOuterCssOld.call(this.popup, ...args);
|
2019-10-13 16:10:00 +00:00
|
|
|
|
|
|
|
const node = document.querySelector('#client-css');
|
2020-02-16 18:48:06 +00:00
|
|
|
if (node !== null && result !== null) {
|
|
|
|
node.parentNode.insertBefore(result, node);
|
2019-10-13 16:10:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-10-12 16:59:51 +00:00
|
|
|
onMessage(e) {
|
2020-02-17 04:41:17 +00:00
|
|
|
if (e.origin !== this._targetOrigin) { return; }
|
|
|
|
|
2019-10-12 16:59:51 +00:00
|
|
|
const {action, params} = e.data;
|
2020-02-27 01:07:14 +00:00
|
|
|
const handler = this._windowMessageHandlers.get(action);
|
2019-12-12 02:45:39 +00:00
|
|
|
if (typeof handler !== 'function') { return; }
|
|
|
|
|
2020-02-27 01:07:14 +00:00
|
|
|
handler(params);
|
2019-10-12 16:59:51 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 02:19:22 +00:00
|
|
|
onThemeDarkCheckboxChanged(e) {
|
|
|
|
document.documentElement.classList.toggle('dark', e.target.checked);
|
2019-10-12 21:59:56 +00:00
|
|
|
if (this.themeChangeTimeout !== null) {
|
|
|
|
clearTimeout(this.themeChangeTimeout);
|
|
|
|
}
|
|
|
|
this.themeChangeTimeout = setTimeout(() => {
|
|
|
|
this.themeChangeTimeout = null;
|
2020-05-06 23:35:36 +00:00
|
|
|
this.popup.updateTheme();
|
2019-10-12 21:59:56 +00:00
|
|
|
}, 300);
|
2019-10-12 16:59:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setText(text) {
|
|
|
|
const exampleText = document.querySelector('#example-text');
|
|
|
|
if (exampleText === null) { return; }
|
|
|
|
|
|
|
|
exampleText.textContent = text;
|
|
|
|
this.updateSearch();
|
|
|
|
}
|
|
|
|
|
2019-10-12 21:21:36 +00:00
|
|
|
setInfoVisible(visible) {
|
|
|
|
const node = document.querySelector('.placeholder-info');
|
|
|
|
if (node === null) { return; }
|
|
|
|
|
|
|
|
node.classList.toggle('placeholder-info-visible', visible);
|
|
|
|
}
|
|
|
|
|
|
|
|
setCustomCss(css) {
|
|
|
|
if (this.frontend === null) { return; }
|
2020-05-06 23:35:36 +00:00
|
|
|
this.popup.setCustomCss(css);
|
2019-10-12 21:21:36 +00:00
|
|
|
}
|
|
|
|
|
2019-10-13 15:51:59 +00:00
|
|
|
setCustomOuterCss(css) {
|
|
|
|
if (this.frontend === null) { return; }
|
2020-05-06 23:35:36 +00:00
|
|
|
this.popup.setCustomOuterCss(css, false);
|
2019-10-13 15:51:59 +00:00
|
|
|
}
|
|
|
|
|
2020-04-26 19:33:50 +00:00
|
|
|
async updateOptionsContext(optionsContext) {
|
|
|
|
this.optionsContext = optionsContext;
|
|
|
|
await this.frontend.updateOptions();
|
|
|
|
await this.updateSearch();
|
|
|
|
}
|
|
|
|
|
2019-10-12 16:59:51 +00:00
|
|
|
async updateSearch() {
|
|
|
|
const exampleText = document.querySelector('#example-text');
|
|
|
|
if (exampleText === null) { return; }
|
|
|
|
|
|
|
|
const textNode = exampleText.firstChild;
|
|
|
|
if (textNode === null) { return; }
|
|
|
|
|
|
|
|
const range = document.createRange();
|
|
|
|
range.selectNode(textNode);
|
2020-01-25 16:18:18 +00:00
|
|
|
const source = new TextSourceRange(range, range.toString(), null, null);
|
2019-10-12 16:59:51 +00:00
|
|
|
|
2019-10-25 00:01:04 +00:00
|
|
|
try {
|
2020-05-02 16:47:15 +00:00
|
|
|
await this.frontend.setTextSource(source);
|
2019-10-25 00:01:04 +00:00
|
|
|
} finally {
|
|
|
|
source.cleanup();
|
|
|
|
}
|
2019-12-12 02:27:42 +00:00
|
|
|
this.textSource = source;
|
2019-12-12 02:31:21 +00:00
|
|
|
await this.frontend.showContentCompleted();
|
2019-10-12 16:59:51 +00:00
|
|
|
|
2020-05-06 23:35:36 +00:00
|
|
|
if (this.popup.isVisibleSync()) {
|
2019-10-12 16:59:51 +00:00
|
|
|
this.popupShown = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setInfoVisible(!this.popupShown);
|
|
|
|
}
|
|
|
|
}
|