From b039d300249087aee18c7e8565ae7447d2cf5b15 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Sat, 4 Mar 2017 17:56:10 -0800 Subject: wip --- ext/bg/js/display-window.js | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 ext/bg/js/display-window.js (limited to 'ext/bg/js/display-window.js') diff --git a/ext/bg/js/display-window.js b/ext/bg/js/display-window.js new file mode 100644 index 00000000..44d1f7a9 --- /dev/null +++ b/ext/bg/js/display-window.js @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2016 Alex Yatskov + * Author: Alex Yatskov + * + * 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 . + */ + + +window.displayWindow = new class extends Display { + constructor() { + super($('#spinner'), $('#content')); + $('#search').click(this.onSearch.bind(this)); + } + + definitionAdd(definition, mode) { + return instYomi().definitionAdd(definition, mode); + } + + definitionsAddable(definitions, modes) { + return instYomi().definitionsAddable(definitions, modes); + } + + textRender(template, data) { + return instYomi().textRender(template, data); + } + + kanjiFind(character) { + return instYomi().kanjiFind(character); + } + + handleError(error) { + window.alert(`Error: ${error}`); + } + + onSearch(e) { + e.preventDefault(); + instYomi().termsFind($('#query').val()).then(({length, definitions}) => { + super.showTermDefs(definitions, instYomi().options); + }).catch(this.handleError.bind(this)); + } +}; -- cgit v1.2.3