2019-08-18 20:48:18 +00:00
|
|
|
/*
|
2022-02-03 01:43:10 +00:00
|
|
|
* Copyright (C) 2019-2022 Yomichan Authors
|
2019-08-18 20:48:18 +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/>.
|
2019-08-18 20:48:18 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-11 02:30:36 +00:00
|
|
|
/* global
|
2021-02-12 03:57:38 +00:00
|
|
|
* Display
|
2021-10-03 20:46:15 +00:00
|
|
|
* DisplayAnki
|
|
|
|
* DisplayAudio
|
2020-12-28 22:41:59 +00:00
|
|
|
* DocumentFocusController
|
2021-01-17 21:55:45 +00:00
|
|
|
* HotkeyHandler
|
2020-11-29 18:09:02 +00:00
|
|
|
* JapaneseUtil
|
2021-05-15 20:30:33 +00:00
|
|
|
* SearchActionPopupController
|
2021-02-12 03:57:38 +00:00
|
|
|
* SearchDisplayController
|
2021-05-15 19:11:42 +00:00
|
|
|
* SearchPersistentStateController
|
2020-11-29 18:09:02 +00:00
|
|
|
* wanakana
|
2020-03-11 02:30:36 +00:00
|
|
|
*/
|
2019-08-18 20:48:18 +00:00
|
|
|
|
2020-04-23 01:42:20 +00:00
|
|
|
(async () => {
|
2020-06-21 20:14:05 +00:00
|
|
|
try {
|
2021-04-07 23:07:42 +00:00
|
|
|
const documentFocusController = new DocumentFocusController('#search-textbox');
|
2020-12-28 22:41:59 +00:00
|
|
|
documentFocusController.prepare();
|
|
|
|
|
2021-05-15 19:11:42 +00:00
|
|
|
const searchPersistentStateController = new SearchPersistentStateController();
|
|
|
|
searchPersistentStateController.prepare();
|
|
|
|
|
2021-05-15 20:30:33 +00:00
|
|
|
const searchActionPopupController = new SearchActionPopupController(searchPersistentStateController);
|
|
|
|
searchActionPopupController.prepare();
|
|
|
|
|
2021-02-14 20:19:31 +00:00
|
|
|
await yomichan.prepare();
|
2020-06-21 20:14:05 +00:00
|
|
|
|
2021-02-14 20:53:35 +00:00
|
|
|
const {tabId, frameId} = await yomichan.api.frameInformationGet();
|
2021-02-10 03:56:04 +00:00
|
|
|
|
2020-11-29 18:09:02 +00:00
|
|
|
const japaneseUtil = new JapaneseUtil(wanakana);
|
2021-01-17 21:55:45 +00:00
|
|
|
|
|
|
|
const hotkeyHandler = new HotkeyHandler();
|
|
|
|
hotkeyHandler.prepare();
|
|
|
|
|
2021-02-12 03:57:38 +00:00
|
|
|
const display = new Display(tabId, frameId, 'search', japaneseUtil, documentFocusController, hotkeyHandler);
|
|
|
|
await display.prepare();
|
|
|
|
|
2021-10-03 20:46:15 +00:00
|
|
|
const displayAudio = new DisplayAudio(display);
|
|
|
|
displayAudio.prepare();
|
|
|
|
|
|
|
|
const displayAnki = new DisplayAnki(display, displayAudio, japaneseUtil);
|
|
|
|
displayAnki.prepare();
|
|
|
|
|
|
|
|
const searchDisplayController = new SearchDisplayController(tabId, frameId, display, displayAudio, japaneseUtil, searchPersistentStateController);
|
2021-02-12 03:57:38 +00:00
|
|
|
await searchDisplayController.prepare();
|
|
|
|
|
|
|
|
display.initializeState();
|
2020-07-18 21:11:38 +00:00
|
|
|
|
2020-11-08 17:34:23 +00:00
|
|
|
document.documentElement.dataset.loaded = 'true';
|
2021-02-12 03:57:38 +00:00
|
|
|
|
2020-07-18 21:11:38 +00:00
|
|
|
yomichan.ready();
|
2020-06-21 20:14:05 +00:00
|
|
|
} catch (e) {
|
2021-02-14 22:52:01 +00:00
|
|
|
log.error(e);
|
2020-06-21 20:14:05 +00:00
|
|
|
}
|
2020-04-23 01:42:20 +00:00
|
|
|
})();
|