2020-09-19 01:16:39 +00:00
|
|
|
/*
|
2021-01-01 19:50:41 +00:00
|
|
|
* Copyright (C) 2020-2021 Yomichan Authors
|
2020-09-19 01:16:39 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* globals
|
2021-03-25 23:55:31 +00:00
|
|
|
* AnkiNoteDataCreator
|
2020-11-29 18:09:02 +00:00
|
|
|
* JapaneseUtil
|
2020-09-19 01:16:39 +00:00
|
|
|
* TemplateRenderer
|
|
|
|
* TemplateRendererFrameApi
|
|
|
|
*/
|
|
|
|
|
|
|
|
(() => {
|
2020-11-29 18:09:02 +00:00
|
|
|
const japaneseUtil = new JapaneseUtil(null);
|
|
|
|
const templateRenderer = new TemplateRenderer(japaneseUtil);
|
2021-03-25 23:55:31 +00:00
|
|
|
const ankiNoteDataCreator = new AnkiNoteDataCreator(japaneseUtil);
|
2021-01-11 00:28:50 +00:00
|
|
|
templateRenderer.registerDataType('ankiNote', {
|
2021-04-02 23:09:21 +00:00
|
|
|
modifier: ({marker, commonData}) => ankiNoteDataCreator.create(marker, commonData),
|
|
|
|
composeData: (marker, commonData) => ({marker, commonData})
|
2021-01-11 00:28:50 +00:00
|
|
|
});
|
2021-02-14 20:53:35 +00:00
|
|
|
const templateRendererFrameApi = new TemplateRendererFrameApi(templateRenderer);
|
|
|
|
templateRendererFrameApi.prepare();
|
2020-09-19 01:16:39 +00:00
|
|
|
})();
|