2020-12-07 01:37:19 +00:00
|
|
|
/*
|
2021-01-01 19:50:41 +00:00
|
|
|
* Copyright (C) 2020-2021 Yomichan Authors
|
2020-12-07 01:37:19 +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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* global
|
|
|
|
* AnkiController
|
|
|
|
* AnkiTemplatesController
|
|
|
|
* AudioController
|
|
|
|
* BackupController
|
|
|
|
* ClipboardPopupsController
|
|
|
|
* DictionaryController
|
|
|
|
* DictionaryImportController
|
2020-12-28 22:41:59 +00:00
|
|
|
* DocumentFocusController
|
2021-01-28 00:34:14 +00:00
|
|
|
* ExtensionKeyboardShortcutController
|
2020-12-07 01:37:19 +00:00
|
|
|
* GenericSettingController
|
2021-01-15 01:56:18 +00:00
|
|
|
* KeyboardShortcutController
|
2020-12-07 01:37:19 +00:00
|
|
|
* ModalController
|
|
|
|
* NestedPopupsController
|
|
|
|
* PopupPreviewController
|
2021-01-16 15:22:24 +00:00
|
|
|
* PopupWindowController
|
2020-12-07 01:37:19 +00:00
|
|
|
* ProfileController
|
|
|
|
* ScanInputsController
|
|
|
|
* ScanInputsSimpleController
|
|
|
|
* SecondarySearchDictionaryController
|
2021-01-10 19:43:06 +00:00
|
|
|
* SentenceTerminationCharactersController
|
2020-12-07 01:37:19 +00:00
|
|
|
* SettingsController
|
|
|
|
* SettingsDisplayController
|
|
|
|
* StatusFooter
|
|
|
|
* StorageController
|
2021-01-03 17:12:55 +00:00
|
|
|
* TranslationTextReplacementsController
|
2020-12-07 01:37:19 +00:00
|
|
|
* api
|
|
|
|
*/
|
|
|
|
|
|
|
|
async function setupEnvironmentInfo() {
|
2020-12-18 22:00:34 +00:00
|
|
|
const {manifest_version: manifestVersion} = chrome.runtime.getManifest();
|
2020-12-07 01:37:19 +00:00
|
|
|
const {browser, platform} = await api.getEnvironmentInfo();
|
|
|
|
document.documentElement.dataset.browser = browser;
|
|
|
|
document.documentElement.dataset.os = platform.os;
|
2020-12-18 22:00:34 +00:00
|
|
|
document.documentElement.dataset.manifestVersion = `${manifestVersion}`;
|
2020-12-07 01:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async function setupGenericSettingsController(genericSettingController) {
|
|
|
|
await genericSettingController.prepare();
|
|
|
|
await genericSettingController.refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
try {
|
2020-12-28 22:41:59 +00:00
|
|
|
const documentFocusController = new DocumentFocusController();
|
|
|
|
documentFocusController.prepare();
|
2020-12-07 01:37:19 +00:00
|
|
|
|
|
|
|
const statusFooter = new StatusFooter(document.querySelector('.status-footer-container'));
|
|
|
|
statusFooter.prepare();
|
|
|
|
|
|
|
|
api.forwardLogsToBackend();
|
|
|
|
await yomichan.prepare();
|
|
|
|
|
|
|
|
setupEnvironmentInfo();
|
|
|
|
|
|
|
|
const optionsFull = await api.optionsGetFull();
|
|
|
|
|
|
|
|
const preparePromises = [];
|
|
|
|
|
|
|
|
const modalController = new ModalController();
|
|
|
|
modalController.prepare();
|
|
|
|
|
|
|
|
const settingsController = new SettingsController(optionsFull.profileCurrent);
|
|
|
|
settingsController.prepare();
|
|
|
|
|
|
|
|
const storageController = new StorageController();
|
|
|
|
storageController.prepare();
|
|
|
|
|
2020-12-13 16:29:32 +00:00
|
|
|
const dictionaryController = new DictionaryController(settingsController, modalController, storageController, statusFooter);
|
2020-12-07 01:37:19 +00:00
|
|
|
dictionaryController.prepare();
|
|
|
|
|
|
|
|
const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController, statusFooter);
|
|
|
|
dictionaryImportController.prepare();
|
|
|
|
|
|
|
|
const genericSettingController = new GenericSettingController(settingsController);
|
|
|
|
preparePromises.push(setupGenericSettingsController(genericSettingController));
|
|
|
|
|
|
|
|
const audioController = new AudioController(settingsController);
|
|
|
|
audioController.prepare();
|
|
|
|
|
|
|
|
const profileController = new ProfileController(settingsController, modalController);
|
|
|
|
profileController.prepare();
|
|
|
|
|
|
|
|
const settingsBackup = new BackupController(settingsController, modalController);
|
|
|
|
settingsBackup.prepare();
|
|
|
|
|
|
|
|
const ankiController = new AnkiController(settingsController);
|
|
|
|
ankiController.prepare();
|
|
|
|
|
|
|
|
const ankiTemplatesController = new AnkiTemplatesController(settingsController, modalController, ankiController);
|
|
|
|
ankiTemplatesController.prepare();
|
|
|
|
|
|
|
|
const popupPreviewController = new PopupPreviewController(settingsController);
|
|
|
|
popupPreviewController.prepare();
|
|
|
|
|
|
|
|
const scanInputsController = new ScanInputsController(settingsController);
|
|
|
|
scanInputsController.prepare();
|
|
|
|
|
|
|
|
const simpleScanningInputController = new ScanInputsSimpleController(settingsController);
|
|
|
|
simpleScanningInputController.prepare();
|
|
|
|
|
|
|
|
const nestedPopupsController = new NestedPopupsController(settingsController);
|
|
|
|
nestedPopupsController.prepare();
|
|
|
|
|
|
|
|
const clipboardPopupsController = new ClipboardPopupsController(settingsController);
|
|
|
|
clipboardPopupsController.prepare();
|
|
|
|
|
|
|
|
const secondarySearchDictionaryController = new SecondarySearchDictionaryController(settingsController);
|
|
|
|
secondarySearchDictionaryController.prepare();
|
|
|
|
|
2021-01-03 17:12:55 +00:00
|
|
|
const translationTextReplacementsController = new TranslationTextReplacementsController(settingsController);
|
|
|
|
translationTextReplacementsController.prepare();
|
|
|
|
|
2021-01-10 19:43:06 +00:00
|
|
|
const sentenceTerminationCharactersController = new SentenceTerminationCharactersController(settingsController);
|
|
|
|
sentenceTerminationCharactersController.prepare();
|
|
|
|
|
2021-01-15 01:56:18 +00:00
|
|
|
const keyboardShortcutController = new KeyboardShortcutController(settingsController);
|
|
|
|
keyboardShortcutController.prepare();
|
|
|
|
|
2021-01-28 00:34:14 +00:00
|
|
|
const extensionKeyboardShortcutController = new ExtensionKeyboardShortcutController(settingsController);
|
|
|
|
extensionKeyboardShortcutController.prepare();
|
|
|
|
|
2021-01-16 15:22:24 +00:00
|
|
|
const popupWindowController = new PopupWindowController();
|
|
|
|
popupWindowController.prepare();
|
|
|
|
|
2020-12-07 01:37:19 +00:00
|
|
|
await Promise.all(preparePromises);
|
|
|
|
|
|
|
|
document.documentElement.dataset.loaded = 'true';
|
|
|
|
|
|
|
|
const settingsDisplayController = new SettingsDisplayController(settingsController, modalController);
|
|
|
|
settingsDisplayController.prepare();
|
|
|
|
} catch (e) {
|
|
|
|
yomichan.logError(e);
|
|
|
|
}
|
|
|
|
})();
|