2016-04-03 20:05:22 -07:00
|
|
|
/*
|
2020-04-10 11:06:55 -07:00
|
|
|
* Copyright (C) 2016-2020 Yomichan Authors
|
2016-04-03 20:05:22 -07: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 12:00:31 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-04-03 20:05:22 -07:00
|
|
|
*/
|
|
|
|
|
2020-03-10 22:30:36 -04:00
|
|
|
/* global
|
2020-05-29 19:52:51 -04:00
|
|
|
* AnkiController
|
|
|
|
* AnkiTemplatesController
|
2020-05-29 19:56:38 -04:00
|
|
|
* AudioController
|
2020-05-29 20:33:40 -04:00
|
|
|
* ClipboardPopupsController
|
2020-05-29 20:25:22 -04:00
|
|
|
* DictionaryController
|
2020-05-29 20:33:40 -04:00
|
|
|
* GenericSettingController
|
2020-05-29 20:28:12 -04:00
|
|
|
* PopupPreviewController
|
2020-05-29 19:47:18 -04:00
|
|
|
* ProfileController
|
2020-05-24 13:56:46 -04:00
|
|
|
* SettingsBackup
|
2020-05-29 19:45:54 -04:00
|
|
|
* SettingsController
|
2020-05-29 20:25:22 -04:00
|
|
|
* StorageController
|
2020-05-24 13:30:40 -04:00
|
|
|
* api
|
2020-03-10 22:30:36 -04:00
|
|
|
*/
|
2020-02-01 15:00:34 -05:00
|
|
|
|
2019-09-28 13:42:48 -04:00
|
|
|
function showExtensionInformation() {
|
|
|
|
const node = document.getElementById('extension-info');
|
|
|
|
if (node === null) { return; }
|
|
|
|
|
|
|
|
const manifest = chrome.runtime.getManifest();
|
|
|
|
node.textContent = `${manifest.name} v${manifest.version}`;
|
|
|
|
}
|
2019-12-01 16:18:29 -05:00
|
|
|
|
2020-05-09 18:36:00 +03:00
|
|
|
async function settingsPopulateModifierKeys() {
|
|
|
|
const scanModifierKeySelect = document.querySelector('#scan-modifier-key');
|
|
|
|
scanModifierKeySelect.textContent = '';
|
|
|
|
|
2020-05-24 13:30:40 -04:00
|
|
|
const environment = await api.getEnvironmentInfo();
|
2020-05-09 18:36:00 +03:00
|
|
|
const modifierKeys = [
|
|
|
|
{value: 'none', name: 'None'},
|
|
|
|
...environment.modifiers.keys
|
|
|
|
];
|
|
|
|
for (const {value, name} of modifierKeys) {
|
|
|
|
const option = document.createElement('option');
|
|
|
|
option.value = value;
|
|
|
|
option.textContent = name;
|
|
|
|
scanModifierKeySelect.appendChild(option);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 20:25:22 -04:00
|
|
|
async function setupEnvironmentInfo() {
|
|
|
|
const {browser, platform} = await api.getEnvironmentInfo();
|
|
|
|
document.documentElement.dataset.browser = browser;
|
|
|
|
document.documentElement.dataset.operatingSystem = platform.os;
|
|
|
|
}
|
|
|
|
|
2019-12-01 16:18:29 -05:00
|
|
|
|
2020-05-30 09:50:33 -04:00
|
|
|
(async () => {
|
2020-07-18 17:11:38 -04:00
|
|
|
try {
|
|
|
|
api.forwardLogsToBackend();
|
|
|
|
await yomichan.backendReady();
|
2020-03-02 11:18:09 +02:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
setupEnvironmentInfo();
|
|
|
|
showExtensionInformation();
|
|
|
|
settingsPopulateModifierKeys();
|
2020-05-30 09:33:13 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const optionsFull = await api.optionsGetFull();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const settingsController = new SettingsController(optionsFull.profileCurrent);
|
|
|
|
settingsController.prepare();
|
2019-12-01 16:18:29 -05:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const storageController = new StorageController();
|
|
|
|
storageController.prepare();
|
2020-05-29 20:25:22 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const genericSettingController = new GenericSettingController(settingsController);
|
|
|
|
genericSettingController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const clipboardPopupsController = new ClipboardPopupsController(settingsController);
|
|
|
|
clipboardPopupsController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const popupPreviewController = new PopupPreviewController(settingsController);
|
|
|
|
popupPreviewController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const audioController = new AudioController(settingsController);
|
|
|
|
audioController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const profileController = new ProfileController(settingsController);
|
|
|
|
profileController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const dictionaryController = new DictionaryController(settingsController, storageController);
|
|
|
|
dictionaryController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const ankiController = new AnkiController(settingsController);
|
|
|
|
ankiController.prepare();
|
2019-12-01 16:18:29 -05:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const ankiTemplatesController = new AnkiTemplatesController(settingsController, ankiController);
|
|
|
|
ankiTemplatesController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const settingsBackup = new SettingsBackup(settingsController);
|
|
|
|
settingsBackup.prepare();
|
|
|
|
|
|
|
|
yomichan.ready();
|
|
|
|
} catch (e) {
|
|
|
|
yomichan.logError(e);
|
|
|
|
}
|
2020-05-30 09:50:33 -04:00
|
|
|
})();
|