chore: revert to js toggle; better support for all cases
This commit is contained in:
parent
0e79fbeb01
commit
16b6e2163b
8 changed files with 64 additions and 79 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.4.4",
|
"version": "19.4.5",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.4.4",
|
"version": "19.4.5",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.4.4",
|
"version": "19.4.5",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
24
src/assets/scripts/text-toggle.js
Normal file
24
src/assets/scripts/text-toggle.js
Normal 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'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
button,
|
button {
|
||||||
[aria-role="button"] {
|
|
||||||
&:not(.theme-toggle) {
|
&:not(.theme-toggle) {
|
||||||
border-radius: var(--rounded-full);
|
border-radius: var(--rounded-full);
|
||||||
padding: var(--sizing-sm) var(--sizing-lg);
|
padding: var(--sizing-sm) var(--sizing-lg);
|
||||||
|
|
|
@ -1,29 +1,15 @@
|
||||||
.toggle-wrapper {
|
[data-toggle-content].text-toggle-hidden {
|
||||||
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 {
|
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: var(--sizing-base);
|
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;
|
position: absolute;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
content: '';
|
content: '';
|
||||||
|
@ -33,29 +19,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
& .toggle-checkbox:checked ~ [data-toggle-content] {
|
[data-toggle-button] {
|
||||||
height: auto;
|
margin-bottom: var(--sizing-base) !important;
|
||||||
}
|
|
||||||
|
|
||||||
& .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';
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -4,8 +4,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.artist-focus {
|
.artist-focus {
|
||||||
margin-bottom: var(--sizing-base);
|
|
||||||
|
|
||||||
& img {
|
& img {
|
||||||
border: 1px solid var(--accent-color);
|
border: 1px solid var(--accent-color);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -11,6 +11,11 @@ schema: artist
|
||||||
{%- capture alt -%}
|
{%- capture alt -%}
|
||||||
{{ artist.name_string }} / {{ artist.country }}
|
{{ artist.name_string }} / {{ artist.country }}
|
||||||
{%- endcapture -%}
|
{%- 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>
|
<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">
|
<article class="artist-focus">
|
||||||
<div class="artist-display">
|
<div class="artist-display">
|
||||||
|
@ -51,13 +56,8 @@ schema: artist
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{%- if artist.description -%}
|
{%- 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 data-toggle-content class="text-toggle-hidden">{{ artist.description | markdown }}</div>
|
||||||
</div>
|
<button data-toggle-button>Show more</button>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -16,22 +16,22 @@ schema: genre
|
||||||
is
|
is
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- endcapture -%}
|
{%- 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>
|
<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>
|
<h2 class="page-header">{{ genre.name }}</h2>
|
||||||
<article class="genre-focus">
|
<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>
|
<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 />
|
<hr />
|
||||||
{%- if genre.description -%}
|
{%- 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">
|
<div data-toggle-content class="text-toggle-hidden">
|
||||||
{{ genre.description | markdown }}
|
{{ genre.description | markdown }}
|
||||||
<p><a href="{{ genre.wiki_link }}">Continue reading at Wikipedia.</a></p>
|
<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>
|
<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>
|
||||||
</div>
|
<button data-toggle-button>Show more</button>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
</article>
|
</article>
|
Reference in a new issue