added error handling, changed something

This commit is contained in:
Robert 2021-01-03 02:06:21 +01:00
parent c5b24cde5f
commit ff9343a5ab
2 changed files with 7 additions and 4 deletions

7
app.py
View file

@ -7,5 +7,8 @@ def main():
@app.route('/submit_kanji', methods=['GET'])
def submit_kanji():
with open(f"assets/0{format(ord(request.args.get('kanji')), 'x')}.svg", encoding='utf-8') as file:
return render_template('index.html', svg=file.read())
try:
with open(f"assets/0{format(ord(request.args.get('kanji')), 'x')}.svg", encoding='utf-8') as file:
return render_template('index.html', svg=file.read())
except:
return render_template('index.html', svg="no")

View file

@ -40,7 +40,7 @@
</span>
<script>
var allParts = $("svg > g > g > *");
var allParts = $("svg > g > g *[kvg\\:element]");
allParts.on({
mouseenter: function () {
@ -54,7 +54,7 @@
});
allParts.click(function() {
window.location = "{{ url_for('submit_kanji') }}" + "?kanji=" + ((typeof $(this).attr("kvg:original") !== typeof undefined) ? $(this).attr("kvg:original") : $(this).attr("kvg:element"));
window.location = "{{ url_for('submit_kanji') }}" + "?kanji=" + ((typeof $(this).attr("kvg:original") === typeof undefined) ? ((typeof $(this).attr("kvg:element") === typeof undefined) ? $(this).attr("kvg:phon") : $(this).attr("kvg:element")) : $(this).attr("kvg:original") );
});
</script>