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-09-09 17:37:58 -04:00
|
|
|
* BackupController
|
2020-05-29 20:33:40 -04:00
|
|
|
* ClipboardPopupsController
|
2020-05-29 20:25:22 -04:00
|
|
|
* DictionaryController
|
2020-09-04 17:54:34 -04:00
|
|
|
* DictionaryImportController
|
2020-05-29 20:33:40 -04:00
|
|
|
* GenericSettingController
|
2020-10-10 20:58:38 -04:00
|
|
|
* ModalController
|
2020-05-29 20:28:12 -04:00
|
|
|
* PopupPreviewController
|
2020-05-29 19:47:18 -04:00
|
|
|
* ProfileController
|
2020-09-09 16:59:03 -04:00
|
|
|
* ScanInputsController
|
2020-10-14 19:37:46 -04:00
|
|
|
* ScanInputsSimpleController
|
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-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();
|
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-10-10 20:58:38 -04:00
|
|
|
const modalController = new ModalController();
|
|
|
|
modalController.prepare();
|
|
|
|
|
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-10-10 20:58:38 -04:00
|
|
|
const profileController = new ProfileController(settingsController, modalController);
|
2020-07-18 17:11:38 -04:00
|
|
|
profileController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-12-13 11:29:32 -05:00
|
|
|
const dictionaryController = new DictionaryController(settingsController, modalController, storageController, null);
|
2020-07-18 17:11:38 -04:00
|
|
|
dictionaryController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-12-13 11:29:32 -05:00
|
|
|
const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController, null);
|
2020-09-04 17:54:34 -04:00
|
|
|
dictionaryImportController.prepare();
|
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
const ankiController = new AnkiController(settingsController);
|
|
|
|
ankiController.prepare();
|
2019-12-01 16:18:29 -05:00
|
|
|
|
2020-10-10 20:58:38 -04:00
|
|
|
const ankiTemplatesController = new AnkiTemplatesController(settingsController, modalController, ankiController);
|
2020-07-18 17:11:38 -04:00
|
|
|
ankiTemplatesController.prepare();
|
2020-05-30 09:50:33 -04:00
|
|
|
|
2020-10-10 20:58:38 -04:00
|
|
|
const settingsBackup = new BackupController(settingsController, modalController);
|
2020-07-18 17:11:38 -04:00
|
|
|
settingsBackup.prepare();
|
|
|
|
|
2020-09-09 16:59:03 -04:00
|
|
|
const scanInputsController = new ScanInputsController(settingsController);
|
|
|
|
scanInputsController.prepare();
|
|
|
|
|
2020-10-14 19:37:46 -04:00
|
|
|
const simpleScanningInputController = new ScanInputsSimpleController(settingsController);
|
|
|
|
simpleScanningInputController.prepare();
|
|
|
|
|
2020-07-18 17:11:38 -04:00
|
|
|
yomichan.ready();
|
|
|
|
} catch (e) {
|
|
|
|
yomichan.logError(e);
|
|
|
|
}
|
2020-05-30 09:50:33 -04:00
|
|
|
})();
|