- new simpler modal without bootstrap - new loadingbutton component - cleanupsome old code - toolbar adjusments
253 lines
15 KiB
Twig
253 lines
15 KiB
Twig
{% extends 'base.html.twig' %}
|
|
{% block toolbar %}
|
|
{% if toolbar is defined %}
|
|
<twig:Toolbar toolbar="{{ toolbar }}"/>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block body %}
|
|
<div class="relative">
|
|
<div class="shadow-lg text-white">
|
|
<div class="relative h-96 bg-cover bg-center" style="background-image: url('{{ manga.imageUrl }}')">
|
|
<div class="absolute inset-0 bg-black opacity-50"></div>
|
|
<div class="absolute inset-0 flex flex-row justify-center p-4">
|
|
<div class="hidden mr-12 xl:block 2xl:block">
|
|
<img src="{{ manga.imageUrl }}" alt="{{ manga.title }}" class="max-w-72 max-h-72 ml-4">
|
|
</div>
|
|
<div class="flex flex-col">
|
|
<div class="flex items-center mb-4">
|
|
<i class="fas fa-bookmark text-white text-3xl"></i>
|
|
<h1 class="text-3xl font-bold ml-4">{{ manga.title }}</h1>
|
|
</div>
|
|
<div class="flex items-center mb-4">
|
|
<span class="mr-4">{{ manga.publicationYear }}</span>
|
|
<span>Chapters: {{ manga.chapters.count }}</span>
|
|
</div>
|
|
<div class="flex items-center mb-4">
|
|
<i class="fas fa-folder text-gray-400 mr-2"></i>
|
|
<span class="truncate">/media/mangas/{{ manga.title }} ({{ manga.publicationYear }})</span>
|
|
<span class="ml-auto bg-green-600 py-1 px-2 rounded">{{ manga.status ?? 'Terminé' }}</span>
|
|
</div>
|
|
<div class="flex items-center mb-4">
|
|
{% set genre_count = 0 %}
|
|
{% for genre in manga.genres %}
|
|
{% if genre_count < 5 %}
|
|
<span class="bg-gray-700 py-1 px-2 rounded-sm mr-2">{{ genre }}</span>
|
|
{% set genre_count = genre_count + 1 %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if genre_count == 5 and manga.genres|length > 5 %}
|
|
<span class="bg-gray-700 py-1 px-2 rounded-sm mr-2">...</span>
|
|
{% endif %}
|
|
</div>
|
|
<div class="mb-4">
|
|
<div class="flex items-center mb-2">
|
|
<i class="fas fa-heart text-red-500 mr-2"></i>
|
|
<span>{{ manga.rating|round(2) }}</span>
|
|
</div>
|
|
<p>{{ manga.description|truncate(500) }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="p-4">
|
|
{% for volume, chapters in chapters_by_volume %}
|
|
{% set is_first = loop.first %}
|
|
{% set volume_cbz_path = chapters|first.cbzPath %}
|
|
{% set all_chapters_same_cbz = chapters|reduce((carry, chapter) => carry and chapter.cbzPath == volume_cbz_path, true) %}
|
|
{% set available_chapters = chapters|filter(chapter => chapter.cbzPath is not null) %}
|
|
{% set total_chapters = chapters|length %}
|
|
|
|
<div data-controller="table" data-table-open-value="{{ is_first ? 'true' : 'false' }}">
|
|
<div class="bg-white rounded-sm shadow mb-4">
|
|
<div class="relative flex items-center justify-between bg-white p-4 rounded-t-sm">
|
|
<!-- Partie gauche -->
|
|
<div class="flex items-center space-x-4">
|
|
<i class="fas fa-bookmark text-gray-500 text-3xl w-8"></i>
|
|
<h2 class="text-xl font-semibold w-28">Volume {{ '%02d'|format(volume) }}</h2>
|
|
<div class="flex items-center w-16">
|
|
<span class="px-2 py-1 text-sm rounded w-full text-center
|
|
{% if available_chapters|length == 0 %}
|
|
bg-red-500 text-white
|
|
{% elseif available_chapters|length < total_chapters %}
|
|
bg-yellow-500 text-white
|
|
{% else %}
|
|
bg-green-500 text-white
|
|
{% endif %}">
|
|
{{ available_chapters|length }} / {{ total_chapters }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Chevron centré -->
|
|
<div class="absolute left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2">
|
|
<i data-table-target="toggleIcon" data-action="click->table#toggle"
|
|
class="bg-gray-400 rounded-full font-bold text-sm text-white p-1 hover:bg-green-500 fas fa-chevron-{{ is_first ? 'up' : 'down' }} cursor-pointer"></i>
|
|
</div>
|
|
|
|
<!-- Partie droite -->
|
|
<div class="flex space-x-2 text-xl text-bold">
|
|
<a href="#" class="w-8 text-center">
|
|
<i class="fas fa-search text-gray-500 hover:text-green-500"></i>
|
|
</a>
|
|
<a href="#" class="w-8 text-center">
|
|
<i class="fas fa-download text-gray-500 hover:text-green-500"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div data-table-target="body"
|
|
class="p-4 border-t" {{ not is_first ? 'style="display: none;"' : '' }}>
|
|
<table class="min-w-full table-auto">
|
|
<thead>
|
|
<tr>
|
|
<th class="px-4 py-2 text-left">#</th>
|
|
<th class="px-4 py-2 text-left">Title</th>
|
|
<th class="px-4 py-2 text-right">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if all_chapters_same_cbz and volume_cbz_path is not null %}
|
|
<tr class="border-t hover:bg-green-100">
|
|
<td class="px-4 py-2 text-green-500">
|
|
<a href="{{ path('app_manga_read', { mangaSlug: manga.slug, chapterNumber: chapters|first.number, pageNumber: 1 }) }}">
|
|
{{ '%02d'|format(volume) }}
|
|
</a>
|
|
</td>
|
|
<td class="px-4 py-2 w-full text-left">
|
|
<a href="{{ path('app_manga_read', { mangaSlug: manga.slug, chapterNumber: chapters|first.number, pageNumber: 1 }) }}">
|
|
Volume {{ '%02d'|format(volume) }}
|
|
</a>
|
|
</td>
|
|
<td class="px-4 py-2 flex justify-end gap-2">
|
|
<a href="{{ path('download_cbz', {chapterId: chapters|first.id}) }}"
|
|
class="text-gray-500 hover:text-green-500">
|
|
<i class="fas fa-download"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% else %}
|
|
{% for chapter in chapters %}
|
|
<tr class="border-t hover:bg-green-100">
|
|
{% if chapter.cbzPath is not null %}
|
|
<td class="px-4 py-2 text-green-500">
|
|
<a href="{{ path('app_manga_read', { mangaSlug: manga.slug, chapterNumber: chapter.number, pageNumber: 1 }) }}">
|
|
{{ '%02d'|format(chapter.number) }}
|
|
</a>
|
|
</td>
|
|
{% else %}
|
|
<td class="px-4 py-2">{{ '%02d'|format(chapter.number) }}</td>
|
|
{% endif %}
|
|
|
|
<td class="px-4 py-2 w-full text-left">
|
|
{% if chapter.cbzPath is not null %}
|
|
<a href="{{ path('app_manga_read', { mangaSlug: manga.slug, chapterNumber: chapter.number, pageNumber: 1 }) }}">
|
|
{{ chapter.title ?? 'No title' }}
|
|
</a>
|
|
{% else %}
|
|
{{ chapter.title ?? 'No title' }}
|
|
{% endif %}
|
|
</td>
|
|
<td class="px-4 py-2 flex justify-end gap-2">
|
|
{% if chapter.cbzPath is null %}
|
|
<button
|
|
data-controller="download-chapter"
|
|
data-action="click->download-chapter#handleClick"
|
|
data-url="{{ path('add_chapter', {id: chapter.id}) }}"
|
|
>
|
|
<span class="text-gray-500 hover:text-green-500">
|
|
<i data-download-chapter-target="icon"
|
|
class="fas fa-search"></i>
|
|
</span>
|
|
</button>
|
|
{% else %}
|
|
<button disabled>
|
|
<span class="text-gray-500">
|
|
<i class="fas fa-search"></i>
|
|
</span>
|
|
</button>
|
|
{% endif %}
|
|
<a href="{{ path('download_cbz', {chapterId: chapter.id}) }}"
|
|
class="text-gray-500 hover:text-green-500">
|
|
<i class="fas fa-download"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|
|
<div class="relative flex items-center justify-between bg-white mt-4 mb-2 rounded-t-sm">
|
|
<div
|
|
class="absolute left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2">
|
|
<i data-table-target="toggleIcon" data-action="click->table#toggle"
|
|
class="bg-gray-400 rounded-full font-bold text-sm text-white p-1 hover:bg-green-500 fas fa-chevron-up cursor-pointer"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{# Modal d'édition #}
|
|
<twig:Modal
|
|
openTrigger="openEditModal"
|
|
closeTrigger="closeEditModal"
|
|
title="Edit Manga"
|
|
>
|
|
{% block content %}
|
|
<form id="editForm" method="post" action="">
|
|
<div class="mb-4">
|
|
<label for="title" class="block text-gray-700 text-sm font-bold mb-2">Title:</label>
|
|
<input type="text" id="title" name="title" value="{{ manga.title }}"
|
|
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline">
|
|
</div>
|
|
<div class="mb-4">
|
|
<label for="description" class="block text-gray-700 text-sm font-bold mb-2">Description:</label>
|
|
<textarea id="description" name="description"
|
|
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
|
|
rows="3">{{ manga.description }}</textarea>
|
|
</div>
|
|
{# Ajoutez d'autres champs selon vos besoins #}
|
|
</form>
|
|
{% endblock %}
|
|
{% block footer %}
|
|
<button type="submit" form="editForm"
|
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm">
|
|
Save
|
|
</button>
|
|
<button type="button" data-action="modal#close"
|
|
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
|
|
Cancel
|
|
</button>
|
|
{% endblock %}
|
|
</twig:Modal>
|
|
|
|
{# Modal de confirmation de suppression #}
|
|
<twig:Modal
|
|
openTrigger="openDeleteModal"
|
|
closeTrigger="closeDeleteModal"
|
|
title="Delete Manga"
|
|
>
|
|
<twig:block name="content">
|
|
<p class="text-sm text-gray-500">
|
|
Are you sure you want to delete this manga? This action cannot be undone.
|
|
</p>
|
|
</twig:block>
|
|
<twig:block name="footer">
|
|
<form id="deleteForm" method="post" action="">
|
|
<button type="submit"
|
|
class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white hover:bg-red-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-500 sm:ml-3 sm:w-auto sm:text-sm">
|
|
Delete
|
|
</button>
|
|
</form>
|
|
<button type="button" data-action="modal#close"
|
|
class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm">
|
|
Cancel
|
|
</button>
|
|
</twig:block>
|
|
</twig:Modal>
|
|
{% endblock %}
|