2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('title') ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= lang('Episode.all_podcast_episodes') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
2021-08-09 10:28:16 +00:00
|
|
|
<?= lang('Episode.all_podcast_episodes') ?> (<?= $pager->getDetails()['total'] ?>)
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
2020-07-16 10:08:23 +00:00
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('headerRight') ?>
|
2021-09-21 15:51:04 +00:00
|
|
|
<Button uri="<?= route_to('episode-create', $podcast->id) ?>" variant="primary" iconLeft="add"><?= lang('Episode.create') ?></Button>
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-08-11 15:47:23 +00:00
|
|
|
<p class="mb-4 text-sm italic text-gray-700">
|
|
|
|
<?= lang('Common.pageInfo', [
|
|
|
|
'currentPage' => $pager->getDetails()['currentPage'],
|
|
|
|
'pageCount' => $pager->getDetails()['pageCount'],
|
|
|
|
]) ?>
|
|
|
|
</p>
|
2021-08-09 10:28:16 +00:00
|
|
|
|
|
|
|
<?= data_table(
|
|
|
|
[
|
2021-09-08 15:51:33 +00:00
|
|
|
[
|
|
|
|
'header' => lang('Episode.list.episode'),
|
|
|
|
'cell' => function ($episode, $podcast) {
|
|
|
|
return '<div class="flex">' .
|
|
|
|
'<div class="relative flex-shrink-0 mr-2">' .
|
|
|
|
'<time class="absolute px-1 text-xs font-semibold text-white rounded bottom-2 right-2 bg-black/50" datetime="PT<?= $episode->audio_file_duration ?>S">' .
|
|
|
|
format_duration(
|
|
|
|
$episode->audio_file_duration,
|
|
|
|
) .
|
|
|
|
'</time>' .
|
|
|
|
'<img loading="lazy" src="' . $episode->image->thumbnail_url . '" alt="' . $episode->title . '" class="object-cover w-20 h-20 rounded-lg" />' .
|
|
|
|
'</div>' .
|
2021-10-18 16:44:07 +00:00
|
|
|
'<a class="overflow-x-hidden text-sm hover:underline" href="' . route_to(
|
2021-09-08 15:51:33 +00:00
|
|
|
'episode-view',
|
|
|
|
$podcast->id,
|
|
|
|
$episode->id,
|
|
|
|
) . '">' .
|
2021-10-18 16:44:07 +00:00
|
|
|
'<h2 class="inline-flex items-baseline w-full font-semibold leading-none gap-x-1 group">' .
|
2021-09-08 15:51:33 +00:00
|
|
|
episode_numbering(
|
|
|
|
$episode->number,
|
|
|
|
$episode->season_number,
|
2021-10-18 16:44:07 +00:00
|
|
|
'text-xs font-semibold text-gray-600 !no-underline border px-1 border-gray-500',
|
2021-09-08 15:51:33 +00:00
|
|
|
true,
|
|
|
|
) .
|
2021-10-18 16:44:07 +00:00
|
|
|
'<span class="mr-1 truncate group-hover:underline">' . $episode->title . '</span>' .
|
2021-09-08 15:51:33 +00:00
|
|
|
'</h2>' .
|
|
|
|
'<p class="max-w-sm text-xs text-gray-600 line-clamp-2">' . $episode->description . '</p>' .
|
|
|
|
'</a>' .
|
|
|
|
'</div>';
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'header' => lang('Episode.list.visibility'),
|
|
|
|
'cell' => function ($episode): string {
|
|
|
|
return publication_pill(
|
|
|
|
$episode->published_at,
|
|
|
|
$episode->publication_status,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'header' => lang('Episode.list.comments'),
|
|
|
|
'cell' => function ($episode): int {
|
|
|
|
return $episode->comments_count;
|
|
|
|
},
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'header' => lang('Episode.list.actions'),
|
|
|
|
'cell' => function ($episode, $podcast) {
|
2021-10-18 16:44:07 +00:00
|
|
|
return '<button id="more-dropdown-' . $episode->id . '" type="button" class="inline-flex items-center p-1 focus:ring-castopod" data-dropdown="button" data-dropdown-target="more-dropdown-' . $episode->id . '-menu" aria-haspopup="true" aria-expanded="false">' .
|
2021-09-08 15:51:33 +00:00
|
|
|
icon('more') .
|
|
|
|
'</button>' .
|
2021-10-05 11:03:29 +00:00
|
|
|
'<DropdownMenu id="more-dropdown-' . $episode->id . '-menu" labelledby="more-dropdown-' . $episode->id . '" items="' . esc(json_encode([
|
2021-09-28 15:47:59 +00:00
|
|
|
[
|
|
|
|
'type' => 'link',
|
|
|
|
'title' => lang('Episode.edit'),
|
|
|
|
'uri' => route_to('episode-edit', $podcast->id, $episode->id),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'link',
|
|
|
|
'title' => lang('Episode.embeddable_player.title'),
|
|
|
|
'uri' => route_to('embeddable-player-add', $podcast->id, $episode->id),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'link',
|
|
|
|
'title' => lang('Person.persons'),
|
|
|
|
'uri' => route_to('episode-persons-manage', $podcast->id, $episode->id),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'link',
|
|
|
|
'title' => lang('Episode.soundbites'),
|
|
|
|
'uri' => route_to('soundbites-edit', $podcast->id, $episode->id),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'link',
|
|
|
|
'title' => lang('Episode.go_to_page'),
|
|
|
|
'uri' => route_to('episode', $podcast->handle, $episode->slug),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'separator',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'link',
|
|
|
|
'title' => lang('Episode.delete'),
|
|
|
|
'uri' => route_to('episode-delete', $podcast->id, $episode->id),
|
|
|
|
'class' => 'font-semibold text-red-600',
|
|
|
|
],
|
|
|
|
])) . '" />';
|
2021-09-08 15:51:33 +00:00
|
|
|
},
|
|
|
|
],
|
2021-08-09 10:28:16 +00:00
|
|
|
],
|
2021-09-08 15:51:33 +00:00
|
|
|
$episodes,
|
|
|
|
'mb-6',
|
|
|
|
$podcast
|
|
|
|
) ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
|
|
|
|
<?= $pager->links() ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2021-08-11 15:47:23 +00:00
|
|
|
<?= $this->endSection() ?>
|