Files
UNIT3D-Community-Edition/resources/views/blocks/featured.blade.php
Roardom 69363b7d7a remove: seasons, episodes, guest_stars
These tables and models aren't used anymore. Seasons and episodes aren't used because most torrents do not follow tmdb's episode and season ordering, but instead follow tvdb's, so it is more accurate to specify the episode and season number directly. Guest stars haven't been used for a long time, if ever.

Fixes #4565
2025-04-03 09:05:19 +00:00

93 lines
4.5 KiB
PHP

@if ($featured->isNotEmpty())
<section class="panelV2 blocks__featured" x-data>
<header class="panel__header">
<h2 class="panel__heading">
<i class="{{ config('other.font-awesome') }} fa-star"></i>
{{ __('blocks.featured-torrents') }}
</h2>
<div class="panel__actions">
<div class="panel__action">
<button
class="form__standard-icon-button"
x-on:click="
$refs.featured.scrollLeft == 16
? ($refs.featured.scrollLeft = $refs.featured.scrollWidth)
: ($refs.featured.scrollLeft -= ($refs.featured.children[0].offsetWidth + 16) / 2 + 2)
"
>
<i class="{{ \config('other.font-awesome') }} fa-angle-left"></i>
</button>
</div>
<div class="panel__action">
<button
class="form__standard-icon-button"
x-on:click="
$refs.featured.scrollLeft == $refs.featured.scrollWidth - $refs.featured.offsetWidth - 16
? ($refs.featured.scrollLeft = 0)
: ($refs.featured.scrollLeft += ($refs.featured.children[0].offsetWidth + 16) / 2 + 2)
"
>
<i class="{{ \config('other.font-awesome') }} fa-angle-right"></i>
</button>
</div>
</div>
</header>
<div>
<ul
class="featured-carousel"
x-ref="featured"
x-init="
setInterval(function () {
if (! $root.matches(':hover')) {
$el.scrollLeft == $el.scrollWidth - $el.offsetWidth - 16
? ($el.scrollLeft = 0)
: ($el.scrollLeft += ($el.children[0].offsetWidth + 16) / 2 + 2);
}
}, 5000)
"
>
@foreach ($featured as $feature)
@if ($feature->torrent === null || $feature->torrent->status !== \App\Enums\ModerationStatus::APPROVED)
@continue
@endif
@php
$meta = match (true) {
$feature->torrent->category->tv_meta => App\Models\TmdbTv::query()
->with('genres', 'networks')
->find($feature->torrent->tmdb_tv_id ?? 0),
$feature->torrent->category->movie_meta => App\Models\TmdbMovie::query()
->with('genres', 'companies')
->find($feature->torrent->tmdb_movie_id ?? 0),
$feature->torrent->category->game_meta => App\Models\Game::query()
->with('genres')
->find((int) $feature->torrent->igdb),
default => null,
};
@endphp
<li class="featured-carousel__slide">
<x-torrent.card :meta="$meta" :torrent="$feature->torrent" />
<footer class="featured-carousel__feature-details">
<p class="featured-carousel__featured-until">
{{ __('blocks.featured-until') }}:
<br />
<time
datetime="{{ $feature->created_at->addDay(7) }}"
title="{{ $feature->created_at->addDay(7) }}"
>
{{ $feature->created_at->addDay(7)->toFormattedDateString() }}
({{ $feature->created_at->addDay(7)->diffForHumans() }}!)
</time>
</p>
<p class="featured-carousel__featured-by">
{{ __('blocks.featured-by') }}: {{ $feature->user->username }}!
</p>
</footer>
</li>
@endforeach
</ul>
</div>
</section>
@endif