2016-04-04 03:05:22 +00:00
|
|
|
/*
|
2020-04-10 18:06:55 +00:00
|
|
|
* Copyright (C) 2016-2020 Yomichan Authors
|
2016-04-04 03:05:22 +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/>.
|
2016-04-04 03:05:22 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
2020-05-29 23:52:51 +00:00
|
|
|
* AnkiController
|
|
|
|
* AnkiTemplatesController
|
2020-05-29 23:56:38 +00:00
|
|
|
* AudioController
|
2020-09-09 21:37:58 +00:00
|
|
|
* BackupController
|
2020-05-30 00:33:40 +00:00
|
|
|
* ClipboardPopupsController
|
2020-05-30 00:25:22 +00:00
|
|
|
* DictionaryController
|
2020-09-04 21:54:34 +00:00
|
|
|
* DictionaryImportController
|
2020-05-30 00:33:40 +00:00
|
|
|
* GenericSettingController
|
2020-10-11 00:58:38 +00:00
|
|
|
* ModalController
|
2020-05-30 00:28:12 +00:00
|
|
|
* PopupPreviewController
|
2020-05-29 23:47:18 +00:00
|
|
|
* ProfileController
|
2020-09-09 20:59:03 +00:00
|
|
|
* ScanInputsController
|
2020-10-14 23:37:46 +00:00
|
|
|
* ScanInputsSimpleController
|
2020-05-29 23:45:54 +00:00
|
|
|
* SettingsController
|
2020-05-30 00:25:22 +00:00
|
|
|
* StorageController
|
2020-05-24 17:30:40 +00:00
|
|
|
* api
|
2020-03-11 02:30:36 +00:00
|
|
|
*/
|
2020-02-01 20:00:34 +00:00
|
|
|
|
2019-09-28 17:42:48 +00: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 21:18:29 +00:00
|
|
|
|
2020-05-30 00:25:22 +00:00
|
|
|
async function setupEnvironmentInfo() {
|
|
|
|
const {browser, platform} = await api.getEnvironmentInfo();
|
|
|
|
document.documentElement.dataset.browser = browser;
|
|
|
|
document.documentElement.dataset.operatingSystem = platform.os;
|
|
|
|
}
|
|
|
|
|
2019-12-01 21:18:29 +00:00
|
|
|
|
2020-05-30 13:50:33 +00:00
|
|
|
(async () => {
|
2020-07-18 21:11:38 +00:00
|
|
|
try {
|
|
|
|
api.forwardLogsToBackend();
|
|
|
|
await yomichan.backendReady();
|
2020-03-02 09:18:09 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
setupEnvironmentInfo();
|
|
|
|
showExtensionInformation();
|
2020-05-30 13:33:13 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const optionsFull = await api.optionsGetFull();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-10-11 00:58:38 +00:00
|
|
|
const modalController = new ModalController();
|
|
|
|
modalController.prepare();
|
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const settingsController = new SettingsController(optionsFull.profileCurrent);
|
|
|
|
settingsController.prepare();
|
2019-12-01 21:18:29 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const storageController = new StorageController();
|
|
|
|
storageController.prepare();
|
2020-05-30 00:25:22 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const genericSettingController = new GenericSettingController(settingsController);
|
|
|
|
genericSettingController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const clipboardPopupsController = new ClipboardPopupsController(settingsController);
|
|
|
|
clipboardPopupsController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const popupPreviewController = new PopupPreviewController(settingsController);
|
|
|
|
popupPreviewController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const audioController = new AudioController(settingsController);
|
|
|
|
audioController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-10-11 00:58:38 +00:00
|
|
|
const profileController = new ProfileController(settingsController, modalController);
|
2020-07-18 21:11:38 +00:00
|
|
|
profileController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-12-13 16:29:32 +00:00
|
|
|
const dictionaryController = new DictionaryController(settingsController, modalController, storageController, null);
|
2020-07-18 21:11:38 +00:00
|
|
|
dictionaryController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-12-13 16:29:32 +00:00
|
|
|
const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController, null);
|
2020-09-04 21:54:34 +00:00
|
|
|
dictionaryImportController.prepare();
|
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
const ankiController = new AnkiController(settingsController);
|
|
|
|
ankiController.prepare();
|
2019-12-01 21:18:29 +00:00
|
|
|
|
2020-10-11 00:58:38 +00:00
|
|
|
const ankiTemplatesController = new AnkiTemplatesController(settingsController, modalController, ankiController);
|
2020-07-18 21:11:38 +00:00
|
|
|
ankiTemplatesController.prepare();
|
2020-05-30 13:50:33 +00:00
|
|
|
|
2020-10-11 00:58:38 +00:00
|
|
|
const settingsBackup = new BackupController(settingsController, modalController);
|
2020-07-18 21:11:38 +00:00
|
|
|
settingsBackup.prepare();
|
|
|
|
|
2020-09-09 20:59:03 +00:00
|
|
|
const scanInputsController = new ScanInputsController(settingsController);
|
|
|
|
scanInputsController.prepare();
|
|
|
|
|
2020-10-14 23:37:46 +00:00
|
|
|
const simpleScanningInputController = new ScanInputsSimpleController(settingsController);
|
|
|
|
simpleScanningInputController.prepare();
|
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
yomichan.ready();
|
|
|
|
} catch (e) {
|
|
|
|
yomichan.logError(e);
|
|
|
|
}
|
2020-05-30 13:50:33 +00:00
|
|
|
})();
|