@xiee/utils 1.5.4 → 1.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/load-pangu.js +1 -0
- package/js/load-pangu.min.js +1 -0
- package/js/sidenotes.js +22 -0
- package/js/sidenotes.min.js +1 -1
- package/package.json +1 -1
package/js/load-pangu.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pangu.spacingPage();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pangu.spacingPage();
|
package/js/sidenotes.js
CHANGED
|
@@ -14,9 +14,15 @@
|
|
|
14
14
|
// add footnote number
|
|
15
15
|
s.firstElementChild.insertAdjacentHTML('afterbegin', `<span class="bg-number">${a.innerText}</span> `);
|
|
16
16
|
s.querySelector('a[href^="#fnref"]')?.remove(); // remove backreference
|
|
17
|
+
s.className += ' footnotes';
|
|
17
18
|
} else {
|
|
18
19
|
s.innerHTML = el.outerHTML;
|
|
19
20
|
}
|
|
21
|
+
while (s.lastChild?.nodeName === '#text' && /^\s*$/.test(s.lastChild.textContent)) {
|
|
22
|
+
s.lastChild.remove();
|
|
23
|
+
}
|
|
24
|
+
// remove fullwidth classes if present (because they cannot be used in the margin)
|
|
25
|
+
s.querySelectorAll('.fullwidth').forEach(el => el.classList.remove('fullwidth'));
|
|
20
26
|
// insert note after the <sup> or <span> that contains a
|
|
21
27
|
a2.after(s);
|
|
22
28
|
a2.classList.add('note-ref');
|
|
@@ -28,4 +34,20 @@
|
|
|
28
34
|
});
|
|
29
35
|
// also add side classes to TOC
|
|
30
36
|
d.getElementById('TOC')?.classList.add('side', 'side-left');
|
|
37
|
+
// if a sidenote collapses with any fullwidth element, remove the side class
|
|
38
|
+
const sides = d.querySelectorAll('.side.side-right, .side.side-left'), fulls = [];
|
|
39
|
+
d.querySelectorAll('.fullwidth').forEach(el => {
|
|
40
|
+
fulls.push([el, el.getBoundingClientRect()]);
|
|
41
|
+
});
|
|
42
|
+
// add a class to document body if it has sidenotes
|
|
43
|
+
sides.length && d.body.classList.add('has-sidenotes');
|
|
44
|
+
sides.forEach(s => {
|
|
45
|
+
const r1 = s.getBoundingClientRect();
|
|
46
|
+
for (let f of fulls) {
|
|
47
|
+
const r2 = f[1];
|
|
48
|
+
if (!(r1.right < r2.left || r1.left > r2.right || r1.bottom < r2.top || r1.top > r2.bottom)) {
|
|
49
|
+
f[0].classList.remove('fullwidth');
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
});
|
|
31
53
|
})(document);
|
package/js/sidenotes.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(e=>{e.querySelectorAll('.footnotes > ol > li[id^="fn"], #refs > div[id^="ref-"]').forEach((t=>{const
|
|
1
|
+
(e=>{e.querySelectorAll('.footnotes > ol > li[id^="fn"], #refs > div[id^="ref-"]').forEach((t=>{const s=`a[href="#${t.id}"]`,r=e.querySelector(`${s} > sup, sup > ${s}, .citation > ${s}`);if(!r)return;const o=r.parentNode;("A"===r.tagName?r:o).removeAttribute("href");const l=e.createElement("div");for(l.className="side side-right",/^fn/.test(t.id)?(l.innerHTML=t.innerHTML,l.firstElementChild.insertAdjacentHTML("afterbegin",`<span class="bg-number">${r.innerText}</span> `),l.querySelector('a[href^="#fnref"]')?.remove(),l.className+=" footnotes"):l.innerHTML=t.outerHTML;"#text"===l.lastChild?.nodeName&&/^\s*$/.test(l.lastChild.textContent);)l.lastChild.remove();l.querySelectorAll(".fullwidth").forEach((e=>e.classList.remove("fullwidth"))),o.after(l),o.classList.add("note-ref"),t.remove()})),e.querySelectorAll(".footnotes, #refs").forEach((e=>{/^\s*$/.test(e.innerText)&&e.remove()})),e.getElementById("TOC")?.classList.add("side","side-left");const t=e.querySelectorAll(".side.side-right, .side.side-left"),s=[];e.querySelectorAll(".fullwidth").forEach((e=>{s.push([e,e.getBoundingClientRect()])})),t.length&&e.body.classList.add("has-sidenotes"),t.forEach((e=>{const t=e.getBoundingClientRect();for(let e of s){const s=e[1];t.right<s.left||t.left>s.right||t.bottom<s.top||t.top>s.bottom||e[0].classList.remove("fullwidth")}}))})(document);
|