Add filtering
This commit is contained in:
parent
9da3c406dd
commit
b1c6afa81c
@ -22,13 +22,15 @@ main.songs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.filters {
|
.filters {
|
||||||
// `display: grid` is set via JS to prevent displaying the inputs
|
display: grid;
|
||||||
// on browsers wih JavaScript disabled.
|
|
||||||
display: none;
|
|
||||||
grid-template-columns: 2fr 1fr 1fr;
|
grid-template-columns: 2fr 1fr 1fr;
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
margin: 1em 0;
|
margin: 1em 0;
|
||||||
|
|
||||||
|
// This is removed via JS to prevent displaying the inputs
|
||||||
|
// on browsers wih JavaScript disabled.
|
||||||
|
&.hidden { display: none }
|
||||||
|
|
||||||
&>* {
|
&>* {
|
||||||
border: 1px solid #aaa;
|
border: 1px solid #aaa;
|
||||||
border-radius: .5em;
|
border-radius: .5em;
|
||||||
@ -38,6 +40,12 @@ main.songs {
|
|||||||
|
|
||||||
&>.button {
|
&>.button {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&.selected {
|
||||||
|
border-color: #333;
|
||||||
|
box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,6 +63,8 @@ main.songs {
|
|||||||
box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
|
box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
|
||||||
border-left: .7em solid #000;
|
border-left: .7em solid #000;
|
||||||
|
|
||||||
|
&.hidden { display: none }
|
||||||
|
|
||||||
&.mixtape { border-color: #654575 }
|
&.mixtape { border-color: #654575 }
|
||||||
&.classic { border-color: #a55d05 }
|
&.classic { border-color: #a55d05 }
|
||||||
|
|
||||||
|
41
static/js/filter.js
Normal file
41
static/js/filter.js
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
const filters = document.querySelector(".filters");
|
||||||
|
const buttons = Array.from(filters.querySelectorAll(".button"));
|
||||||
|
const search = document.querySelector("input[type='text']");
|
||||||
|
const songList = document.querySelector(".song-list");
|
||||||
|
|
||||||
|
let selectedCategory = null;
|
||||||
|
|
||||||
|
function buttonToggle(clickedButton) {
|
||||||
|
buttons.forEach(button => {
|
||||||
|
if (button === clickedButton && !button.classList.contains("selected")) {
|
||||||
|
button.classList.add("selected");
|
||||||
|
selectedCategory = button.dataset.category;
|
||||||
|
} else {
|
||||||
|
button.classList.remove("selected");
|
||||||
|
selectedCategory = null;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
filterSongs();
|
||||||
|
}
|
||||||
|
|
||||||
|
function filterSongs() {
|
||||||
|
const searchTerm = search.value.trim().toLowerCase().normalize("NFD").replace(/\p{Diacritic}/gu, "");
|
||||||
|
const songs = Array.from(songList.children);
|
||||||
|
songs.forEach(song => {
|
||||||
|
const title = song.dataset.title.toLowerCase().normalize("NFD").replace(/\p{Diacritic}/gu, "");
|
||||||
|
const matching = title.includes(searchTerm) && (!selectedCategory || song.dataset.category === selectedCategory);
|
||||||
|
song.classList.toggle("hidden", !matching);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Event listeners
|
||||||
|
search.addEventListener("keyup", filterSongs);
|
||||||
|
buttons.forEach(button => button.addEventListener("click", () => buttonToggle(button)));
|
||||||
|
|
||||||
|
// Normalize song titles
|
||||||
|
Array.from(songList.children).forEach(song => {
|
||||||
|
song.dataset.title = song.dataset.title.toLowerCase().normalize("NFD").replace(/\p{Diacritic}/gu, "");
|
||||||
|
});
|
||||||
|
|
||||||
|
// Display the filter section on JS-enabled browsers
|
||||||
|
window.addEventListener("load", () => filters.classList.remove = "hidden");
|
@ -13,12 +13,12 @@
|
|||||||
<main class="songs">
|
<main class="songs">
|
||||||
<section class="filters">
|
<section class="filters">
|
||||||
<input type="text" placeholder="Hledat">
|
<input type="text" placeholder="Hledat">
|
||||||
<div class="button">classic</div>
|
<div class="button" data-category="classic">classic</div>
|
||||||
<div class="button">mixtape</div>
|
<div class="button" data-category="mixtape">mixtape</div>
|
||||||
</section>
|
</section>
|
||||||
<section class="song-list">
|
<section class="song-list">
|
||||||
{% for song in section.pages %}
|
{% for song in section.pages %}
|
||||||
<div class="{{ macros::primary_category(song=song) }}">
|
<div class="{{ macros::primary_category(song=song) }}" data-title="{{ song.title }}" data-category="{{ macros::primary_category(song=song) }}">
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
<div class="title">{{ song.title }}</div>
|
<div class="title">{{ song.title }}</div>
|
||||||
{% if song.taxonomies["artist"] %}
|
{% if song.taxonomies["artist"] %}
|
||||||
@ -38,6 +38,8 @@
|
|||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block script %}{% endblock %}
|
{% block script %}
|
||||||
|
<script src="{{ get_url(path="/js/filter.js") }}"></script>
|
||||||
|
{% endblock %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user