feat: redesign download UX — batch select, season download, toast feedback

Episode list:
- Added 'Saison complète' header button to download all episodes at once
- Added multi-select mode with checkboxes for batch episode download
- Individual download buttons now show visual feedback (checkmark + reset)
- Better grid/list toggle with selection state indicators

Search results (anime + series):
- Redesigned download dropdown with icons, descriptions, spinner on click
- Smooth scale/opacity transitions on dropdown open/close
- Consistent btn-success color for all download actions

Series search JS:
- Replaced basic <select> with scrollable episode list inline
- Added 'Tout télécharger' button per series card
- Replaced all alert() calls with toast notifications
- Episode buttons show checkmark on successful download

Anime details JS:
- Added batch download button next to episode select
- Fixed pre-existing lint error (escaped quote in translateSynopsis)
- Standardized download icon to fa-arrow-down across all cards

Recommendations + Tabs JS:
- Unified download button color (btn-success) across all card types
- Consistent icon (fa-arrow-down) for download actions

Toast system:
- Connected to existing Alpine.js toast infrastructure (show-toast events)
This commit is contained in:
root
2026-04-11 21:08:29 +00:00
parent a7145aabd1
commit 819acf04f8
8 changed files with 386 additions and 83 deletions
+49 -13
View File
@@ -5,14 +5,14 @@
{% for item in items %}
{% set _key = item.title | lower | trim %}
{% if _key not in _groups.items %}
{% set _ = _groups.items.update({_key: {
{% set _ = _groups.items.update({
"title": item.title,
"cover": item.cover_image or (item.metadata.poster_image if item.metadata else "") or "",
"synopsis": (item.metadata.synopsis if item.metadata and item.metadata.synopsis else ""),
"rating": item.metadata.rating if item.metadata and item.metadata.rating else "",
"genres": item.metadata.genres if item.metadata and item.metadata.genres else [],
"providers": [{ "id": item.provider_id or pid, "url": item.url }]
}}) %}
}) %}
{% else %}
{% set _existing = _groups.items[_key] %}
{% if not _existing.cover and item.cover_image %}
@@ -35,6 +35,7 @@
{% set first_url = group.providers[0].url %}
<div class="card bg-base-200 border border-base-300 hover:border-primary transition-colors">
<div class="card-body p-5 flex-row gap-5">
<!-- Poster -->
<figure class="w-28 shrink-0">
<a href="{{ first_url }}" target="_blank" rel="noopener">
<img src="{{ group.cover or 'https://placehold.co/240x360/29274c/7e52a0?text=No+Image' }}"
@@ -43,7 +44,10 @@
onerror="this.src='https://placehold.co/240x360/29274c/7e52a0?text=Error'; this.onerror=null;">
</a>
</figure>
<!-- Content -->
<div class="flex-1 min-w-0 flex flex-col gap-2">
<!-- Title + rating -->
<div class="flex items-baseline gap-3">
<h3 class="card-title text-base truncate">{{ group.title }}</h3>
{% if group.rating %}
@@ -63,6 +67,7 @@
</div>
{% endif %}
<!-- Provider badges -->
<div class="flex flex-wrap gap-1.5">
{% for p in group.providers %}
<a href="{{ p.url }}" target="_blank" rel="noopener"
@@ -72,41 +77,72 @@
{% endfor %}
</div>
<!-- Action buttons -->
<div class="flex flex-wrap gap-2 mt-1">
<!-- Watch -->
<a href="{{ first_url }}" target="_blank" rel="noopener"
class="btn btn-sm btn-primary">
<i class="fas fa-play"></i> Regarder
</a>
<div class="dropdown" @click.outside="openDropdown = null">
<!-- Download dropdown -->
<div class="dropdown dropdown-end" @click.outside="openDropdown = null">
<div tabindex="0" role="button"
@click.stop="openDropdown = (openDropdown === '{{ first_url | urlencode }}') ? null : '{{ first_url | urlencode }}'">
<span class="btn btn-sm btn-secondary">
<i class="fas fa-download"></i> Telecharger <i class="fas fa-chevron-down text-[0.6rem] ml-1"></i>
@click.stop="openDropdown = (openDropdown === '{{ first_url | urlencode }}') ? null : '{{ first_url | urlencode }}'"
x-ref="dlToggle-{{ loop.index0 }}">
<span class="btn btn-sm btn-success">
<i class="fas fa-arrow-down"></i> Télécharger <i class="fas fa-chevron-down text-[0.6rem] ml-1"></i>
</span>
</div>
<ul tabindex="0"
class="dropdown-content z-[1] menu p-2 shadow bg-base-200 rounded-box w-52 border border-base-300"
class="dropdown-content z-[1] menu p-2 shadow-xl bg-base-300 rounded-xl w-64 border border-base-300 mt-2"
x-show="openDropdown === '{{ first_url | urlencode }}'"
x-transition>
x-transition:enter="transition ease-out duration-100"
x-transition:enter-start="opacity-0 scale-95"
x-transition:enter-end="opacity-100 scale-100"
x-transition:leave="transition ease-in duration-75"
x-transition:leave-start="opacity-100 scale-100"
x-transition:leave-end="opacity-0 scale-95">
<!-- Full season -->
<li>
<button class="flex items-center gap-2 text-sm"
<button class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-base-200 transition-colors"
hx-post="/api/anime/download-season?url={{ first_url | urlencode }}&lang={{ default_lang }}"
hx-swap="none"
hx-on::after-request="openDropdown = null">
<i class="fas fa-layer-group"></i> Saison complete
hx-on::before-request="this.querySelector('.dl-icon').classList.add('hidden'); this.querySelector('.dl-spinner').classList.remove('hidden')"
hx-on::after-request="if(event.detail.successful){showToast('Saison complète mise en file'); this.querySelector('.dl-icon').classList.remove('hidden'); this.querySelector('.dl-spinner').classList.add('hidden'); openDropdown = null}">
<span class="w-8 h-8 rounded-lg bg-success/20 text-success flex items-center justify-center shrink-0">
<i class="fas fa-layer-group dl-icon text-sm"></i>
<span class="loading loading-spinner loading-xs dl-spinner hidden"></span>
</span>
<div class="flex flex-col text-left">
<span class="text-sm font-medium">Saison complète</span>
<span class="text-xs text-base-content/50">Tous les épisodes d'un coup</span>
</div>
</button>
</li>
<li>
<button class="flex items-center gap-2 text-sm"
<div class="divider my-1 before:bg-base-content/10 after:bg-base-content/10"></div>
</li>
<!-- Choose episodes -->
<li>
<button class="flex items-center gap-3 px-3 py-2.5 rounded-lg hover:bg-base-200 transition-colors"
hx-get="/api/anime/episodes?url={{ first_url | urlencode }}&lang={{ default_lang }}&html=1"
hx-target="#player-container"
hx-swap="innerHTML"
hx-on::after-request="openDropdown = null; document.getElementById('player-container').scrollIntoView({behavior: 'smooth'})">
<i class="fas fa-list-ol"></i> Choisir des episodes
<span class="w-8 h-8 rounded-lg bg-primary/20 text-primary flex items-center justify-center shrink-0">
<i class="fas fa-list-ol text-sm"></i>
</span>
<div class="flex flex-col text-left">
<span class="text-sm font-medium">Choisir des épisodes</span>
<span class="text-xs text-base-content/50">Sélectionnez ce que vous voulez</span>
</div>
</button>
</li>
</ul>
</div>
<!-- Follow -->
<button class="btn btn-sm btn-accent btn-outline"
hx-post="/api/watchlist"
hx-vals='{"anime_url": "{{ first_url }}", "anime_title": "{{ group.title }}", "provider_id": "{{ group.providers[0].id }}", "lang": "{{ default_lang }}", "poster_image": "{{ group.cover }}"}'