2019-08-18 20:48:18 +00:00
|
|
|
/*
|
2020-01-01 17:00:00 +00:00
|
|
|
* Copyright (C) 2019-2020 Alex Yatskov <alex@foosoft.net>
|
2019-08-18 20:48:18 +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
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-08-18 20:48:18 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-01 20:00:34 +00:00
|
|
|
/*global apiOptionsGet*/
|
2019-08-18 20:48:18 +00:00
|
|
|
|
|
|
|
async function searchFrontendSetup() {
|
2020-03-02 02:51:45 +00:00
|
|
|
await yomichan.prepare();
|
|
|
|
|
2019-09-10 23:55:14 +00:00
|
|
|
const optionsContext = {
|
|
|
|
depth: 0,
|
|
|
|
url: window.location.href
|
|
|
|
};
|
2019-09-07 17:58:19 +00:00
|
|
|
const options = await apiOptionsGet(optionsContext);
|
2019-08-18 20:48:18 +00:00
|
|
|
if (!options.scanning.enableOnSearchPage) { return; }
|
|
|
|
|
2019-11-09 11:01:21 +00:00
|
|
|
const ignoreNodes = ['.scan-disable', '.scan-disable *'];
|
|
|
|
if (!options.scanning.enableOnPopupExpressions) {
|
2020-01-17 00:35:19 +00:00
|
|
|
ignoreNodes.push('.source-text', '.source-text *');
|
2019-11-09 11:01:21 +00:00
|
|
|
}
|
2019-11-09 10:27:09 +00:00
|
|
|
|
|
|
|
window.frontendInitializationData = {depth: 1, ignoreNodes, proxy: false};
|
2019-10-16 00:23:25 +00:00
|
|
|
|
2019-08-18 20:48:18 +00:00
|
|
|
const scriptSrcs = [
|
2019-12-05 01:58:35 +00:00
|
|
|
'/mixed/js/text-scanner.js',
|
2019-08-18 20:48:18 +00:00
|
|
|
'/fg/js/frontend-api-receiver.js',
|
|
|
|
'/fg/js/popup.js',
|
2019-08-19 00:51:19 +00:00
|
|
|
'/fg/js/popup-proxy-host.js',
|
2019-10-12 02:35:59 +00:00
|
|
|
'/fg/js/frontend.js',
|
|
|
|
'/fg/js/frontend-initialize.js'
|
2019-08-18 20:48:18 +00:00
|
|
|
];
|
|
|
|
for (const src of scriptSrcs) {
|
2019-12-08 20:03:07 +00:00
|
|
|
const node = document.querySelector(`script[src='${src}']`);
|
|
|
|
if (node !== null) { continue; }
|
|
|
|
|
2019-08-18 20:48:18 +00:00
|
|
|
const script = document.createElement('script');
|
|
|
|
script.async = false;
|
|
|
|
script.src = src;
|
|
|
|
document.body.appendChild(script);
|
|
|
|
}
|
|
|
|
|
|
|
|
const styleSrcs = [
|
|
|
|
'/fg/css/client.css'
|
|
|
|
];
|
|
|
|
for (const src of styleSrcs) {
|
|
|
|
const style = document.createElement('link');
|
|
|
|
style.rel = 'stylesheet';
|
|
|
|
style.type = 'text/css';
|
|
|
|
style.href = src;
|
|
|
|
document.head.appendChild(style);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
searchFrontendSetup();
|