45 lines
2.2 KiB
Twig
45 lines
2.2 KiB
Twig
<div{{ attributes }} class="min-w-48">
|
|
{% set table_body_id = (type == "complete") ? "complete_downloads" : "active_downloads" %}
|
|
<table id="downloads" class="divide-y divide-gray-200 bg-gray-50 overflow-hidden rounded-lg table-fixed" {{ turbo_stream_listen('App\\Download\\Framework\\Entity\\Download') }}>
|
|
<thead>
|
|
<tr class="bg-orange-500 bg-filter bg-blur-lg bg-opacity-80 text-gray-950">
|
|
<th scope="col"
|
|
class="px-6 py-3 text-start text-xs font-medium text-stone-500 uppercase dark:text-stone-800 min-w-[45ch] max-w-[45ch] truncate">
|
|
Title
|
|
</th>
|
|
<th scope="col"
|
|
class="px-6 py-3 text-start text-xs font-medium text-gray-500 uppercase dark:text-stone-800">
|
|
Progress
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="{{ table_body_id }}" class="divide-y divide-gray-200 dark:divide-gray-50">
|
|
{% if this.downloads|length > 0 %}
|
|
{% for download in this.downloads %}
|
|
<tr id="ad_download_{{ download.id }}">
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-800 dark:text-stone-800 min-w-[45ch] max-w-[45ch] truncate">
|
|
{{ download.title }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-800 dark:text-gray-50">
|
|
{% if download.progress < 100 %}
|
|
<span class="p-1.5 bg-purple-600 rounded-full">
|
|
<span class="w-4 inline-block text-center text-gray-50">{{ download.progress }}</span>
|
|
</span>
|
|
{% else %}
|
|
<twig:StatusBadge color="green" status="Completed" />
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% else %}
|
|
<tr id="{{ table_body_id }}_no_downloads">
|
|
<td class="px-6 py-4 whitespace-nowrap text-xs uppercase text-center col-span-2 font-medium text-gray-800 dark:text-stone-800" colspan="2">
|
|
No downloads
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|