70 lines
3.2 KiB
Twig
70 lines
3.2 KiB
Twig
{# Learn how to use Turbo Streams: https://github.com/symfony/ux-turbo#broadcast-doctrine-entities-update #}
|
|
{% block create %}
|
|
<turbo-stream action="append" target="active_downloads">
|
|
<template>
|
|
<tr id="ad_download_{{ entity.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">
|
|
{{ entity.title }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-end text-gray-800 dark:text-gray-50">
|
|
<span class="p-1.5 bg-purple-600 rounded-full">
|
|
<span class="w-4 inline-block text-center text-gray-50">{{ entity.progress }}</span>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
</turbo-stream>
|
|
|
|
<turbo-stream action="prepend" target="alert_list">
|
|
<template>
|
|
<twig:Alert title="Success" message="{{ entity.title }} has been added to the Download queue" alert_id="{{ entity.id }}" data-controller="alert" />
|
|
</template>
|
|
</turbo-stream>
|
|
{% endblock %}
|
|
|
|
{% block update %}
|
|
{% if entity.status != "Complete" %}
|
|
<turbo-stream action="update" target="ad_download_{{ id }}">
|
|
<template>
|
|
<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">
|
|
{{ entity.title }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-end text-gray-800 dark:text-gray-50">
|
|
<span class="p-1.5 bg-purple-600 rounded-full">
|
|
<span class="w-4 inline-block text-center text-gray-50">{{ entity.progress }}</span>
|
|
</span>
|
|
</td>
|
|
</template>
|
|
</turbo-stream>
|
|
{% else %}
|
|
<turbo-stream action="remove" target="ad_download_{{ id }}">
|
|
</turbo-stream>
|
|
|
|
<turbo-stream action="prepend" target="alert_list">
|
|
<template>
|
|
<twig:Alert title="Finished downloading" message="{{ entity.title }}" alert_id="{{ entity.id }}" data-controller="alert" />
|
|
</template>
|
|
</turbo-stream>
|
|
|
|
<turbo-stream action="prepend" target="recent_downloads">
|
|
<template>
|
|
<tr id="recent_download_{{ entity.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">
|
|
{{ entity.title }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-end text-gray-800 dark:text-gray-50">
|
|
<span class="p-1.5 bg-purple-600 rounded-full">
|
|
<span class="w-4 inline-block text-center text-gray-50">{{ entity.progress }}</span>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
</turbo-stream>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block remove %}
|
|
<turbo-stream action="remove" target="ad_download_{{ id }}"></turbo-stream>
|
|
{# <turbo-stream action="remove" target="cd_download_{{ id }}"></turbo-stream>#}
|
|
{% endblock %}
|