1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
|
function charNotLatin(input) {
var code = input.charCodeAt(0);
if (0x0000 <= code && code <= 0x007f) return false; // basic latin
return true;
}
function charNotJapanese(input) {
var code = input.charCodeAt(0);
if (0x3000 <= code && code <= 0x303f) return false; // japanese punctuation
if (0x3040 <= code && code <= 0x309f) return false; // hiragana
if (0x30a0 <= code && code <= 0x30ff) return false; // katakana
if (0xff00 <= code && code <= 0xffef) return false; // full-width latin + half-width katakana
if (0x4e00 <= code && code <= 0x9faf) return false; // kanji
return true;
}
function charNotNumeric(input) {
var code = input.charCodeAt(0);
if (0x30 <= code && code <= 0x39) return false; // ascii numbers
return true;
}
function charNotPunctuation(input) {
var code = input.charCodeAt(0);
if (0x20 == code) return false; // space
if (0x21 == code) return false; // exclamation mark
if (0x2e == code) return false; // full stop
if (0x3f == code) return false; // question mark
return true;
}
function calculateTagHue(input) {
var out = 0;
for (var i = 0; i < input.length; i++)
out ^= input.charCodeAt(i);
return Math.floor((out * 12) % 360);
}
function HTMLtoParseArr(input) {
var out = [];
var node = { data: "", type: "text" };
var tag_open = false;
var new_node = false;
var clear = () => {
out.push(node);
node = { data: "", type: "text" };
};
for (var i = 0; i < input.length; i++) {
new_node = false;
if (input[i] == "<") {
clear();
tag_open = true;
node.type = "html";
}
if (input[i] == ">" && tag_open == true) {
tag_open = false;
node.data += input[i];
clear();
continue;
}
node.data += input[i];
}
if (new_node == false) out.push(node);
return out;
}
function parseOnTextOnly(nodes, parseFn) {
for (var node of nodes) {
if (node.type == "html") continue;
node.data = parseFn(node.data);
}
return HTMLtoParseArr(nodes.map(n => n.data).join("")); // re-parse for newly created html
}
function parseFormat(nodes) {
return parseOnTextOnly(nodes, input => {
var bold = false; // currently bold
var italic = false; // currently italic
var out = "";
for (var i = 0; i < input.length; i++) {
// escape characters preceded by \
if (input[i] == "\\") {
var escaped = input[i+1];
if (escaped == "n") { out += "<br>"; i++; continue; } // newline
if (escaped == "t") { out += "\t"; i++; continue; } // tab
if (escaped == "*") { out += "*"; i++; continue; } // bold
if (escaped == "_") { out += "_"; i++; continue; } // italic
if (escaped == "\\") { out += "\\"; i++; continue; } // literal backslash
}
// parse *test* into <b>test</b>
if (input[i] == "*") { bold = !bold; out += `<${bold ? "" : "/"}b>`; continue; }
// parse _test_ into <i>test</i>
if (input[i] == "_") { italic = !italic; out += `<${italic ? "" : "/"}i>`; continue; }
out += input[i];
}
return out;
});
}
function parseIndicators(nodes) {
return parseOnTextOnly(nodes, input => {
var indicator = false; // indicator is open
var content = ""; // indicator content
var stamp = ""; // filled if indicator has stamp
var out = "";
for (var i = 0; i < input.length; i++) {
// escape characters preceded by \
if (input[i] == "\\") {
var escaped = input[i+1];
if (escaped == "[") { out += "["; i++; continue; }
if (escaped == "]") { out += "]"; i++; continue; }
if (escaped == "-" && indicator) { content += "-"; i++; continue; }
if (escaped == "\\") { out += "\\"; i++; continue; }
}
if (input[i] == "[") { indicator = true; out += `<span class="indicator">`; continue; }
if (input[i] == "]" && indicator) {
indicator = false;
if (stamp) out += `<span class="stamp">${stamp}</span>`;
out += `<span class="content">${content}</span></span>`;
content = "";
stamp = "";
continue;
}
if (input[i] == "-" && indicator) { stamp = content; content = ""; continue; }
if (indicator) content += input[i];
else out += input[i];
}
return out;
});
}
function parseFurigana(nodes) {
return parseOnTextOnly(nodes, input => {
var mode = "normal"; // normal, kanji, reading
var out = ""; // output html
var alwaysvisisble = false; // if furigana is always visible (on front of card)
var kanji = ""; // current kanji
var reading = ""; // current kanji reading
var normal = ""; // normal text
var flush_normal = () => { out += `<span class="normal">${normal}</span>`; normal = ""; };
for (var i = 0; i < input.length; i++, lastmode = mode) {
// parse [kanji](reading) into ruby text
// [kanji](reading) is only visible on card back
// {kanji}(reading) is always visible
if (mode == "normal" && input[i] == "[") // hidden reading kanji open
{ kanji = ""; mode = "kanji"; alwaysvisisble = false; continue; }
if (mode == "normal" && input[i] == "{") // always visible reading kanji open
{ kanji = ""; mode = "kanji"; alwaysvisisble = true; continue; }
if (mode == "kanji" && input[i] == "]") continue; // hidden reading kanji close
if (mode == "kanji" && input[i] == "}") continue; // always visible reading kanji close
if (mode == "kanji" && kanji.length > 0 && input[i] == "(") // reading open
{ reading = ""; mode = "reading"; continue; }
if (mode == "reading" && input[i] == ")") { // reading close
flush_normal();
mode = "normal";
out += `<ruby>${kanji}<rt class="${alwaysvisisble ? 'visible' : 'hidden'}">${reading}</rt></ruby>`;
continue;
}
// add current character to selected mode buffer
if (mode == "normal") normal += input[i];
if (mode == "kanji") kanji += input[i];
if (mode == "reading") reading += input[i];
}
flush_normal();
return out;
});
}
function parseReading(nodes) {
return parseOnTextOnly(nodes, input => {
var note_head = 0;
var note_tail = 0;
var out = ""; // output html
var writings = [""];
var writingIndex = 0;
var mode = "writing"; // parsing mode ("writing" or "reading")
var flush_writings = () => {
if (writings.reduce((current, n) => current + n.length, 0) == 0) return;
out += `<span class="kanji">`;
for(let i = 0; i < writings.length; i++) {
if (i == 1) out += `<span class="extra-writings">`;
if (i > 0) out += `<span class="writing-separator"><span class="inner">、</span></span>`;
var classes = ["writing"];
if (i == 0) classes.push("first");
out += `<span class="${classes.join(' ')}"><span class="inner">${writings[i].trim()}</span></span>`;
}
if (writings.length > 1) out += `<span class="extra-count">+${writings.length - 1}</span></span>`;
out += `</span>`;
writings = []; writingIndex = 0;
};
for (var i = 0; i < input.length; i++) {
if (i == 0) {
var match = input.match(/\((.+?)\)/);
// display "(note)" before kanji
if (match) {
out += `<span class="note subtile">${match[1]}</span>`;
note_head = match.index;
note_tail = note_head + match[0].length;
}
}
// ignore note if parsed
else if (i == note_head) { i = note_tail - 1; continue; }
// reading open bracket
if (mode == "writing" && input[i] == '【') {
mode = "reading";
flush_writings();
out += `</span><span class="reading"><span class="bracket">${input[i]}</span><span class="syllable">`;
continue;
}
// reading closing bracket
if (mode == "reading" && input[i] == '】') { out += `</span><span class="bracket">${input[i]}</span></span>`; continue; }
// interpunct (syllable separator)
if (mode == "reading" && input[i] == '・') { out += `</span><span class="syllable-separator">${input[i]}</span><span class="syllable">`; continue; }
// comma (writing separator)
if (mode == "writing" && (input[i] == ',' || input[i] == "、")) { writings[++writingIndex] = ""; continue; }
if (mode == "writing") writings[writingIndex] += input[i];
else out += input[i];
}
flush_writings(); // kana only word fix
return out;
});
}
function parseTags(nodes) {
var out = "";
var tags = nodes.map(n => n.data).join(""); // original field content
tags = tags.replaceAll("::", " "); // treat subtags as normal tags
tags = tags.split(" "); // split on space (tags may not contain spaces)
tags = Array.from(new Set(tags)); // remove duplicates
tags = tags.map(text => text.replaceAll("_", " ")); // display underscore as space
for (var tag of tags)
out += `<span class="tag" style="--tag-hue: ${calculateTagHue(tag)};"><span class="inner">${tag}</span></span>`;
return HTMLtoParseArr(out);
}
function parseDefinitions(nodes) {
let classes = ["definitions"];
let out = "";
var subtile = false; // current text is subtile
var parenthesis = false; // current text is surrounded by parenthesis
for (var node of nodes) {
if (node.type == "html") {
out += node.data;
continue;
}
var input = node.data;
for (var i = 0; i < input.length; i++) {
// escape characters preceded by \
if (input[i] == "\\") {
var escaped = input[i+1];
if (escaped == "{") { out += "{"; i++; continue; }
if (escaped == "}") { out += "}"; i++; continue; }
if (escaped == ",") { out += ","; i++; continue; }
if (escaped == "(") { out += "("; i++; continue; }
if (escaped == ")") { out += ")"; i++; continue; }
if (escaped == "\\") { out += "\\"; i++; continue; }
if (escaped == "。") { out += "。"; i++; continue; }
}
if (input[i] == "。" && !classes.includes("hidecomma")) classes.push("hidecomma");
// subtile brackets
if (input[i] == "{") { subtile = true; out += `<span class="subtile">`; continue; }
if (input[i] == "}" && subtile) { subtile = false; out += `</span>`; continue; }
// definition separator
if (!subtile && !parenthesis) {
if (input[i] == ",") {
out += `</li><li class="definition-separator"></li><li class="definition">`;
continue;
} else if (input[i] == "。") {
// TODO: comma is inserted in definition-separator instead of using css psuedo
let last = input.substr(i+1).trim().length == 0;
out += `${input[i]}</li>`;
if (!last)
out += `<li class="definition-separator"></li><li class="definition">`;
continue;
}
}
// ignore comma's starting new definition in parenthesis
if (input[i] == "(") parenthesis = true;
if (input[i] == ")") parenthesis = false;
out += input[i];
}
}
if (!classes.includes("hidecomma")) classes.push("showcomma");
out = `<ul class="${classes.join(" ")}"><li class="definition">` + out;
out += `</li></ul>`;
return HTMLtoParseArr(out);
}
function parseScript(nodes) {
return parseOnTextOnly(nodes, input => {
if (input.length == 0) return input;
var numberOnly = true;
var punctuationOnly = true;
var script = "unknown";
var lastScript = "unknown";
var out = "";
var buffer = "";
function flush() {
var classes = [`script-${lastScript}`];
if (numberOnly) classes.push("number-only");
if (punctuationOnly) classes.push("punctuation-only");
if (numberOnly || punctuationOnly) classes.push("horizontal-in-vertical");
out += `<span class="${classes.join(" ")}">${buffer}</span>`;
buffer = "";
numberOnly = true;
punctuationOnly = true;
}
for (var i = 0; i < input.length; i++) {
if (input[i] != " ") {
if (!charNotJapanese(input[i])) script = "japanese";
if (!charNotLatin(input[i])) script = "latin";
}
if (i != 0 && script != lastScript) flush();
if (charNotNumeric(input[i])) numberOnly = false;
if (charNotPunctuation(input[i])) punctuationOnly = false;
buffer += input[i];
lastScript = script;
}
flush();
return out;
});
}
function setSpoiler(nodes) {
return HTMLtoParseArr(`<span class="outer"><span class="inner">` + nodes.map(n => n.data).join("") + "</span></span>");
}
function parse(input, classes) {
var nodes = HTMLtoParseArr(input); // seperate user text from html formatting (keep html intact)
// parsers
if (classes.includes("parse-format")) nodes = parseFormat(nodes);
if (classes.includes("parse-furigana")) nodes = parseFurigana(nodes);
if (classes.includes("parse-reading")) nodes = parseReading(nodes);
if (classes.includes("parse-indicators")) nodes = parseIndicators(nodes);
if (classes.includes("parse-tags")) nodes = parseTags(nodes);
if (classes.includes("parse-definitions")) nodes = parseDefinitions(nodes);
if (classes.includes("parse-script")) nodes = parseScript(nodes);
if (classes.includes("spoiler")) nodes = setSpoiler(nodes);
return nodes;
};
HTMLElement.prototype.has = function(fn) {
if (fn(this)) return true;
for (var child of this.children)
if (child.has(fn)) return true;
return false;
};
HTMLElement.prototype.parse = function() {
if (this.classList.contains("parsed")) return; // ignore already parsed elements
var nodes = parse(this.innerHTML, Array.from(this.classList));
this.classList.add("parsed");
// if innerHTML only contains empty html (no 'user' text)
if (nodes.reduce((current, n) => current + (n.type == "text" ? n.data.length : 0), 0) == 0) {
this.classList.add("empty");
this.innerHTML = "";
return;
}
this.innerHTML = nodes.map(n => n.data).join("");
if (this.id == "sentence" && this.has(n => n.tagName == "B")) this.classList.add("has-b");
if (this.id == "target-word-translation" && this.has(n => n.classList.contains("script-latin"))) this.classList.add("has-script-latin");
};
function layout() {
// set vertical layout on vertical displays (primarily mobile screens)
var el = document.getElementById("card");
if (screen.orientation.type.startsWith("landscape") && el.classList.contains("vertical-layout")) {
el.classList.remove("vertical-layout");
el.classList.add("horizontal-layout");
} else if (screen.orientation.type.startsWith("portrait") && el.classList.contains("horizontal-layout")) {
el.classList.remove("horizontal-layout");
el.classList.add("vertical-layout");
}
}
function run() {
for (var el of document.getElementsByClassName("parse"))
el.parse();
// toggle spoiler by clicking
for (var el of document.getElementsByClassName("spoiler"))
el.onclick = function () {
this.classList.toggle("hidden");
this.classList.toggle("visible");
};
// remove spoiler from sentence translation if word reading field is empty
if(document.getElementById("target-word-reading").classList.contains("empty")) {
document.getElementById("sentence-translation").classList.remove("hidden");
document.getElementById("sentence-translation").classList.add("visible");
}
var audio = document.getElementById("audio");
if (audio != null && audio.innerHTML == "noaudio") {
audio.classList.add("display-none");
} else {
// replace ugly anki play icon with material design icon
for (var el of document.querySelectorAll("#audio .replay-button")) {
el.innerHTML = document.getElementById("play-icon").outerHTML;
el.children[0].classList.remove("display-none");
}
}
layout();
}
run();
window.onload = () => run();
window.onresize = () => layout();
window.ondeviceorientation = () => layout();
window.screen.orientation.onchange = () => layout();
|