blob: e1e2a0393a3eddd27b1a44d5d68c1360e99ff907 (
plain)
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
|
function calculateTagHue(input) {
var out = 0;
for (var i = 0; i < input.length; i++)
out ^= input.charCodeAt(i);
return Math.floor((out * 12) % 360);
}
HTMLElement.prototype.parse = function() {
if (this.classList.contains("parsed")) return; // ignore already parsed elements
var input = this.innerHTML;
var bold = false; // currently bold
var italic = false; // currently italic
var mode = "normal"; // normal, kanji, reading
var out = ""; // output html
var note_head = 0;
var note_tail = 0;
var alwaysvisisble = false; // if furigana is always visible (on front of card)
var kanji = ""; // current kanji
var reading = ""; // current kanji reading
for (var i = 0; i < input.length; i++) {
if (this.classList.contains("parse-format")) {
// escape characters preceded by \
if (input[i] == "\\") {
var escaped = input[i+1];
if (escaped == "n") escaped = "<br>"; // newline
if (escaped == "t") escaped = "\t"; // tab
out += escaped; i++; continue;
}
// 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; }
}
if (this.classList.contains("parse-furigana")) {
// 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
mode = "normal";
out += `<ruby>${kanji}<rt class="${alwaysvisisble ? 'visible' : 'hidden'}">${reading}</rt></ruby>`;
continue;
}
}
if (this.classList.contains("parse-brackets")) {
if (i == 0) {
// start kanji reading
out += `<span class="kanji">`;
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 (input[i] == '\u3010') { out += `</span><span class="reading"><span class="bracket">${input[i]}</span><span class="syllable">`; continue; }
// reading closing bracket
if (input[i] == '\u3011') { out += `</span><span class="bracket">${input[i]}</span></span>`; continue; }
// interpunct (syllable separator)
if (input[i] == '\u30fb') { out += `</span><span class="syllable-separator">${input[i]}</span><span class="syllable">`; continue; }
}
// add current character to selected mode buffer
if (mode == "normal") out += input[i];
if (mode == "kanji") kanji += input[i];
if (mode == "reading") reading += input[i];
}
// oneshot parsers down below
input = out;
out = "";
// tags (separated by space)
if (this.classList.contains("parse-tags")) {
for (var tag of input.split(" "))
out += `<span class="tag" style="--tag-hue: ${calculateTagHue(tag)};"><span class="inner">${tag}</span></span>`;
}
// definitions (separated by comma)
else if (this.classList.contains("parse-definitions")) {
out += `<ul class="definitions">`;
out += input.split(",")
.map(s => s.trim())
.map(s => s.replace(/{(.+)}/g, `<span class="subtile">$1</span>`)) // {note}
.map(s => `<li class="definition">${s}</li>`)
.join(`<li class="definition-separator">, </li>`);
out += `</ul>`;
}
// no oneshot parser used
else out = input;
this.innerHTML = out;
this.classList.add("parsed");
if (input.length == 0) this.classList.add("empty");
};
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");
}
layout();
}
run();
window.onload = () => run();
window.onresize = () => layout();
window.ondeviceorientation = () => layout();
|