112 lines
3.8 KiB
JavaScript
Raw Normal View History

2016-04-03 20:05:22 -07:00
/*
* Copyright (C) 2016-2021 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
* AnkiController
* AnkiTemplatesController
* AudioController
* BackupController
* DictionaryController
* DictionaryImportController
* GenericSettingController
* ModalController
* PermissionsToggleController
* PopupPreviewController
* ProfileController
* ScanInputsController
* ScanInputsSimpleController
* SettingsController
* StorageController
* 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
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 () => {
try {
api.forwardLogsToBackend();
await yomichan.backendReady();
2020-03-02 11:18:09 +02:00
setupEnvironmentInfo();
showExtensionInformation();
const optionsFull = await api.optionsGetFull();
2020-05-30 09:50:33 -04:00
const modalController = new ModalController();
modalController.prepare();
const settingsController = new SettingsController(optionsFull.profileCurrent);
settingsController.prepare();
2019-12-01 16:18:29 -05:00
const storageController = new StorageController();
storageController.prepare();
const genericSettingController = new GenericSettingController(settingsController);
genericSettingController.prepare();
2020-05-30 09:50:33 -04:00
const permissionsToggleController = new PermissionsToggleController(settingsController);
permissionsToggleController.prepare();
2020-05-30 09:50:33 -04:00
const popupPreviewController = new PopupPreviewController(settingsController);
popupPreviewController.prepare();
2020-05-30 09:50:33 -04:00
const audioController = new AudioController(settingsController);
audioController.prepare();
2020-05-30 09:50:33 -04:00
const profileController = new ProfileController(settingsController, modalController);
profileController.prepare();
2020-05-30 09:50:33 -04:00
const dictionaryController = new DictionaryController(settingsController, modalController, storageController, null);
dictionaryController.prepare();
2020-05-30 09:50:33 -04:00
const dictionaryImportController = new DictionaryImportController(settingsController, modalController, storageController, null);
dictionaryImportController.prepare();
const ankiController = new AnkiController(settingsController);
ankiController.prepare();
2019-12-01 16:18:29 -05:00
const ankiTemplatesController = new AnkiTemplatesController(settingsController, modalController, ankiController);
ankiTemplatesController.prepare();
2020-05-30 09:50:33 -04:00
const settingsBackup = new BackupController(settingsController, modalController);
settingsBackup.prepare();
const scanInputsController = new ScanInputsController(settingsController);
scanInputsController.prepare();
const simpleScanningInputController = new ScanInputsSimpleController(settingsController);
simpleScanningInputController.prepare();
yomichan.ready();
} catch (e) {
yomichan.logError(e);
}
2020-05-30 09:50:33 -04:00
})();