mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- enhance plugin card ui - refactor components to be more consistent - invert toggler label for better UX - edit view components regex
68 lines
4.0 KiB
PHP
68 lines
4.0 KiB
PHP
<div data-sidebar-toggler="backdrop" class="absolute top-0 left-0 z-10 hidden w-full h-full bg-backdrop/75 md:hidden" role="button" tabIndex="0" aria-label="<?= lang('Common.close') ?>"></div>
|
|
<aside id="podcast-sidebar" data-sidebar-toggler="sidebar" data-toggle-class="hidden" data-hide-class="hidden" class="z-20 hidden h-full col-span-1 col-start-2 row-start-1 p-4 py-6 shadow-2xl md:shadow-none md:block bg-base">
|
|
<div class="sticky z-10 bg-base top-12">
|
|
<a href="<?= $podcast->feed_url ?>" class="inline-flex items-center mb-6 text-sm font-semibold text-skin-muted hover:text-skin-base group" target="_blank" rel="noopener noreferrer">
|
|
<?= icon('rss-fill', [
|
|
'class' => ' mr-2 bg-orange-500 text-xl text-white group-hover:bg-orange-700 p-1 w-6 h-6 inline-flex items-center justify-center rounded-lg',
|
|
]) . lang('Podcast.feed') ?>
|
|
</a>
|
|
<?php if (
|
|
in_array(true, array_column($podcast->socialPlatforms, 'is_visible'), true)
|
|
): ?>
|
|
<h2 class="text-sm font-bold font-display text-accent-muted"> <?= lang('Podcast.find_on', [
|
|
'podcastTitle' => $podcast->title,
|
|
]) ?></h2>
|
|
<div class="grid items-center justify-center grid-cols-6 gap-3 mb-6">
|
|
<?php foreach ($podcast->socialPlatforms as $socialPlatform): ?>
|
|
<?php if ($socialPlatform->is_visible): ?>
|
|
<?= anchor(
|
|
esc($socialPlatform->link_url),
|
|
icon($socialPlatform->type . ':' . $socialPlatform->slug),
|
|
[
|
|
'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
|
|
'target' => '_blank',
|
|
'rel' => 'noopener noreferrer',
|
|
'data-tooltip' => 'bottom',
|
|
'title' => $socialPlatform->label,
|
|
],
|
|
) ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (
|
|
in_array(true, array_column($podcast->podcastingPlatforms, 'is_visible'), true)
|
|
): ?>
|
|
<h2 class="text-sm font-bold font-display text-accent-muted"><?= lang('Podcast.listen_on') ?></h2>
|
|
<div class="grid items-center justify-center grid-cols-6 gap-3 mb-6">
|
|
<?php foreach ($podcast->podcastingPlatforms as $podcastingPlatform): ?>
|
|
<?php if ($podcastingPlatform->is_visible): ?>
|
|
<?= anchor(
|
|
esc($podcastingPlatform->link_url),
|
|
icon(sprintf('%s:%s', $podcastingPlatform->type, $podcastingPlatform->slug)),
|
|
[
|
|
'class' => 'text-2xl text-skin-muted hover:text-skin-base w-8 h-8 items-center inline-flex justify-center',
|
|
'target' => '_blank',
|
|
'rel' => 'noopener noreferrer',
|
|
'data-tooltip' => 'bottom',
|
|
'title' => $podcastingPlatform->label,
|
|
],
|
|
) ?>
|
|
<?php endif; ?>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<footer class="flex flex-col items-center py-2 text-xs text-center border-t border-subtle text-skin-muted">
|
|
<?= render_page_links('inline-flex mb-2 flex-wrap gap-y-1 justify-center', $podcast->handle) ?>
|
|
<div class="flex flex-col">
|
|
<p><?= esc($podcast->copyright) ?></p>
|
|
<p><?= lang('Common.powered_by', [
|
|
'castopod' => '<a class="inline-flex font-semibold text-skin-muted hover:underline" href="https://castopod.org" target="_blank" rel="noreferrer noopener">Castopod' . icon('social:castopod', [
|
|
'class' => 'ml-1 text-lg',
|
|
]) . '</a>',
|
|
], null, false) ?></p>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</aside>
|