chore: revert to js toggle; better support for all cases

This commit is contained in:
Cory Dransfeldt 2024-06-17 14:51:24 -07:00
parent 0e79fbeb01
commit 16b6e2163b
No known key found for this signature in database
8 changed files with 64 additions and 79 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "19.4.4",
"version": "19.4.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "19.4.4",
"version": "19.4.5",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "19.4.4",
"version": "19.4.5",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {

View file

@ -0,0 +1,24 @@
window.onload = () => {
const button = document.querySelector('[data-toggle-button]')
const content = document.querySelector('[data-toggle-content]')
const text = document.querySelectorAll('[data-toggle-content] p')
const minHeight = 500 // this needs to match the height set on [data-toggle-content].text-toggle-hidden in text-toggle.css
let interiorHeight = 0
text.forEach(node => interiorHeight += node.scrollHeight)
if (interiorHeight < minHeight) {
content.classList.remove('text-toggle-hidden')
button.style.display = 'none'
}
button.addEventListener('click', () => {
if (content.classList.contains('text-toggle-hidden')) {
content.classList.remove('text-toggle-hidden')
button.textContent = 'Show less'
} else {
content.classList.add('text-toggle-hidden')
button.textContent = 'Show more'
}
});
}

View file

@ -1,5 +1,4 @@
button,
[aria-role="button"] {
button {
&:not(.theme-toggle) {
border-radius: var(--rounded-full);
padding: var(--sizing-sm) var(--sizing-lg);

View file

@ -1,29 +1,15 @@
.toggle-wrapper {
display: flex;
position: relative;
margin-bottom: calc(var(--sizing-base) + 20px);
& p:first-of-type {
margin-top: 0;
}
& .toggle-checkbox {
display: none;
}
& .toggle-label {
display: inline-block;
}
& [data-toggle-content] {
&.text-toggle-hidden {
[data-toggle-content].text-toggle-hidden {
position: relative;
height: 500px;
overflow: hidden;
margin-bottom: var(--sizing-base);
& p:first-of-type {
margin-top: 0;
}
}
&.text-toggle-hidden::after {
[data-toggle-content].text-toggle-hidden::after {
position: absolute;
z-index: 1;
content: '';
@ -33,29 +19,7 @@
width: 100%;
height: 100%;
}
}
& .toggle-checkbox:checked ~ [data-toggle-content] {
height: auto;
}
& .toggle-checkbox:checked ~ [data-toggle-content]::after {
box-shadow: none;
}
& .toggle-checkbox:checked + .toggle-label [aria-role="button"]::after {
content: 'Show less';
}
& .toggle-label [aria-role="button"] {
position: absolute;
z-index: 2;
bottom: -20px;
left: 0;
margin-bottom: 0;
}
& .toggle-label [aria-role="button"]::after {
content: 'Show more';
}
[data-toggle-button] {
margin-bottom: var(--sizing-base) !important;
}

View file

@ -4,8 +4,6 @@
}
.artist-focus {
margin-bottom: var(--sizing-base);
& img {
border: 1px solid var(--accent-color);
width: 100%;

View file

@ -11,6 +11,11 @@ schema: artist
{%- capture alt -%}
{{ artist.name_string }} / {{ artist.country }}
{%- endcapture -%}
{% capture js %}
{% render "../../../../assets/scripts/text-toggle.js" %}
{% endcapture %}
<script>{{ js }}</script>
<noscript><style>[data-toggle-content].text-toggle-hidden {height: unset !important;overflow: unset !important;margin-bottom: unset !important;}[data-toggle-content].text-toggle-hidden::after {display: none !important;}</style></noscript>
<a class="back-link-header link-icon flex-centered" href="/music" title="Go back to the music index page">{% tablericon "arrow-left" "Go back to the music index page" %} Back to music</a>
<article class="artist-focus">
<div class="artist-display">
@ -51,13 +56,8 @@ schema: artist
</div>
</div>
{%- if artist.description -%}
<div class="toggle-wrapper">
<input id="toggle-checkbox" class="toggle-checkbox" type="checkbox">
<label class="toggle-label" for="toggle-checkbox">
<div aria-role="button"></div>
</label>
<div data-toggle-content class="text-toggle-hidden">{{ artist.description | markdown }}</div>
</div>
<button data-toggle-button>Show more</button>
{%- endif -%}
<table>
<tr>

View file

@ -16,22 +16,22 @@ schema: genre
is
{% endif %}
{%- endcapture -%}
{% capture js %}
{% render "../../../assets/scripts/text-toggle.js" %}
{% endcapture %}
<script>{{ js }}</script>
<noscript><style>[data-toggle-content].text-toggle-hidden {height: unset !important;overflow: unset !important;margin-bottom: unset !important;}[data-toggle-content].text-toggle-hidden::after {display: none !important;}</style></noscript>
<a class="back-link-header link-icon flex-centered" href="/music" title="Go back to the music index page">{% tablericon "arrow-left" "Go back to the music index page" %} Back to music</a>
<h2 class="page-header">{{ genre.name }}</h2>
<article class="genre-focus">
<p>My top <strong class="highlight-text">{{ genre.name }}</strong> artists {{ connectingWord }} {{ genre.artists | sortByPlaysDescending: "total_plays" | mediaLinks: "artist", 5 }}. I've listened to <strong class="highlight-text">{{ genre.total_plays | formatNumber }}</strong> tracks form this genre.</p>
<hr />
{%- if genre.description -%}
<div class="toggle-wrapper">
<input id="toggle-checkbox" class="toggle-checkbox" type="checkbox">
<label class="toggle-label" for="toggle-checkbox">
<div aria-role="button"></div>
</label>
<div data-toggle-content class="text-toggle-hidden">
{{ genre.description | markdown }}
<p><a href="{{ genre.wiki_link }}">Continue reading at Wikipedia.</a></p>
<p class="text-small"><em>Wikipedia content provided under the terms of the <a href="https://creativecommons.org/licenses/by-sa/3.0/">Creative Commons BY-SA license</a></em></p>
</div>
</div>
<button data-toggle-button>Show more</button>
{%- endif -%}
</article>