2021-11-27 14:58:45 +00:00
|
|
|
<!--
|
2023-03-05 00:08:35 +00:00
|
|
|
mpvacious cards, version 15.0
|
2023-07-26 19:44:37 +00:00
|
|
|
Fri Jul 7 06:33:50 PM UTC 2023
|
2021-11-27 14:58:45 +00:00
|
|
|
-->
|
|
|
|
|
|
|
|
<div class="wrap">
|
2021-12-25 03:19:58 +00:00
|
|
|
<header>
|
2022-10-24 15:41:56 +00:00
|
|
|
{{#Focus}}
|
|
|
|
<div class="tags">{{Focus}}</div>
|
|
|
|
{{/Focus}}
|
2021-12-25 03:19:58 +00:00
|
|
|
{{#Tags}}
|
|
|
|
<div class="tags">{{Tags}}</div>
|
|
|
|
{{/Tags}}
|
|
|
|
</header>
|
2021-11-27 14:58:45 +00:00
|
|
|
|
2021-12-25 03:19:58 +00:00
|
|
|
<div class="sent-center">
|
2023-07-26 19:44:37 +00:00
|
|
|
<div class="jpsentence" lang="ja">
|
2022-11-02 19:01:21 +00:00
|
|
|
{{edit:furigana:SentKanji}}
|
2021-12-25 03:19:58 +00:00
|
|
|
{{^SentKanji}}
|
|
|
|
<nokana>{{edit:kanji:SentFurigana}}</nokana>
|
|
|
|
{{/SentKanji}}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-12 16:58:13 +00:00
|
|
|
|
2023-07-26 19:44:37 +00:00
|
|
|
{{#Image}}
|
|
|
|
<details class="images-on-front images-details">
|
|
|
|
<summary>Image</summary>
|
|
|
|
<div class="images">{{Image}}</div>
|
|
|
|
</details>
|
|
|
|
{{/Image}}
|
2021-11-27 14:58:45 +00:00
|
|
|
</div> <!-- /wrap -->
|
|
|
|
|
|
|
|
<div style="display:none;">
|
|
|
|
<div id="pitchnum_hidden">{{VocabPitchNum}}</div>
|
|
|
|
<div id="kanaword_hidden">{{kana:VocabFurigana}}</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
/* Paints the question word according to its Pitch Accent number.
|
|
|
|
* blue for 平板
|
|
|
|
* red for 頭高
|
|
|
|
* orange for 中高
|
|
|
|
* green for 尾高
|
|
|
|
*/
|
|
|
|
function markPitch() {
|
|
|
|
let pitchNumber = document.getElementById("pitchnum_hidden");
|
|
|
|
if (pitchNumber === null) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
pitchNumber = pitchNumber.innerHTML.match(/\d/);
|
|
|
|
}
|
|
|
|
if (pitchNumber === null) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
pitchNumber = Number(pitchNumber);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then decide what color to use and change font color accordingly. */
|
|
|
|
if (pitchNumber == 0) {
|
|
|
|
// use blue for 平板
|
|
|
|
paintTargetWord("#3366CC");
|
|
|
|
} else if (pitchNumber == 1) {
|
|
|
|
// use red for 頭高
|
|
|
|
paintTargetWord("red");
|
|
|
|
} else if (pitchNumber > 1) {
|
|
|
|
if (odaka(pitchNumber)) {
|
|
|
|
// use green for 尾高
|
|
|
|
paintTargetWord("green");
|
|
|
|
} else {
|
|
|
|
// use orange for 中高
|
|
|
|
paintTargetWord("#ff6207");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function paintTargetWord(color) {
|
2022-04-18 18:21:56 +00:00
|
|
|
for (const word of document.querySelectorAll(".jpsentence b, .jpsentence strong")) {
|
2022-04-17 14:37:06 +00:00
|
|
|
word.style.color = color;
|
2021-11-27 14:58:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function odaka(pitch_num) {
|
|
|
|
// word is odaka if number of moras is equal to pitch accent position
|
|
|
|
const vocab_kana = document.getElementById("kanaword_hidden");
|
|
|
|
if (vocab_kana === null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// small っ is one mora; ゃゅょ are parts of single mora
|
2021-12-25 03:19:58 +00:00
|
|
|
const n_moras = vocab_kana.innerHTML.replace(/[ャュョゃゅょ]/g, "").length;
|
2021-11-27 14:58:45 +00:00
|
|
|
if (n_moras == pitch_num) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Splits tags into separate divs */
|
|
|
|
function splitTagDiv() {
|
|
|
|
const header = document.querySelector("header");
|
|
|
|
if (!header) return;
|
2022-10-24 15:41:56 +00:00
|
|
|
const split = `{{Focus}} {{Tags}}`.split(" ");
|
2023-03-05 00:08:35 +00:00
|
|
|
const dont_show = ['imageonfront', 'tolearn', 'marked',];
|
2021-11-27 14:58:45 +00:00
|
|
|
|
|
|
|
header.innerHTML = "";
|
|
|
|
|
|
|
|
for (const tag of split) {
|
2022-11-02 19:02:10 +00:00
|
|
|
if (tag.length < 1 || dont_show.includes(tag)) continue;
|
2021-11-27 14:58:45 +00:00
|
|
|
const tag_elem = document.createElement("div");
|
|
|
|
tag_elem.className = "tags";
|
2022-09-12 16:58:13 +00:00
|
|
|
tag_elem.innerText = tag;
|
2021-11-27 14:58:45 +00:00
|
|
|
header.appendChild(tag_elem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-05 00:08:35 +00:00
|
|
|
function formatNewRuby(kanji, readings) {
|
|
|
|
if (readings.length > 1) {
|
|
|
|
return `<ruby>${formatNewRuby(kanji, readings.slice(0, -1))}</ruby><rt>${readings.slice(-1)}</rt>`
|
|
|
|
} else {
|
|
|
|
return `<rb>${kanji}</rb><rt>${readings.join('')}</rt>`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function reformatMultiFurigana() {
|
2023-03-05 00:48:00 +00:00
|
|
|
const separators = /[\s;,.、・。]+/iu;
|
2023-07-26 19:44:37 +00:00
|
|
|
const max_inline = 2;
|
|
|
|
document.querySelectorAll("ruby:not(ruby ruby)").forEach(ruby => {
|
2023-03-05 00:48:00 +00:00
|
|
|
try {
|
2023-07-26 19:44:37 +00:00
|
|
|
const kanji = (ruby.querySelector("rb") || ruby.firstChild).textContent.trim();
|
2023-03-05 00:48:00 +00:00
|
|
|
const readings = ruby.querySelector("rt").textContent
|
|
|
|
.split(separators)
|
|
|
|
.map(str => str.trim())
|
2023-07-26 19:44:37 +00:00
|
|
|
.filter(str => str.length);
|
|
|
|
|
2023-03-05 00:48:00 +00:00
|
|
|
if (readings.length > 1) {
|
2023-07-26 19:44:37 +00:00
|
|
|
ruby.innerHTML = formatNewRuby(kanji, readings.slice(0, max_inline));
|
|
|
|
}
|
|
|
|
if (readings.length > max_inline) {
|
|
|
|
const sequence = readings.map(reading => `<span class="tooltip-reading">${reading}</span>`).join('');
|
|
|
|
const wrapper = document.createElement("span");
|
|
|
|
wrapper.classList.add("tooltip");
|
|
|
|
wrapper.innerHTML += `<span class="tooltip-text">${sequence}</span>`;
|
|
|
|
ruby.replaceWith(wrapper);
|
|
|
|
wrapper.appendChild(ruby);
|
2023-03-05 00:48:00 +00:00
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error);
|
2023-03-05 00:08:35 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-07-26 19:44:37 +00:00
|
|
|
function isMobile() {
|
|
|
|
return document
|
|
|
|
.getElementsByTagName("html")[0]
|
|
|
|
.classList
|
|
|
|
.contains("mobile");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If a card has the "imageonfront" tag set, show images on the front side. */
|
|
|
|
function setVisibleImageOnFront() {
|
|
|
|
if (`{{Tags}}`.split(" ").includes("imageonfront")) {
|
|
|
|
for (const frontImg of document.querySelectorAll(".images-on-front")) {
|
|
|
|
frontImg.setAttribute("visible", true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hide images on mobile devices. */
|
|
|
|
function toggleImageDetails() {
|
|
|
|
for (const detailsElement of document.querySelectorAll(".images-details")) {
|
|
|
|
detailsElement.toggleAttribute("open", !isMobile());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 03:19:58 +00:00
|
|
|
markPitch();
|
|
|
|
splitTagDiv();
|
2023-03-05 00:08:35 +00:00
|
|
|
reformatMultiFurigana();
|
2023-07-26 19:44:37 +00:00
|
|
|
setVisibleImageOnFront();
|
|
|
|
toggleImageDetails();
|
|
|
|
</script>
|