2021-10-13 15:43:40 +00:00
|
|
|
<?= $this->extend('episode/_layout') ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
|
|
|
<?php if (can_user_interact()): ?>
|
2021-10-22 14:35:11 +00:00
|
|
|
<?= view('_message_block') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<form action="<?= route_to('post-attempt-create', esc($podcast->handle)) ?>" method="POST" class="flex p-4 shadow bg-elevated gap-x-2 rounded-conditional-2xl">
|
2021-10-13 15:43:40 +00:00
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
|
|
|
<img src="<?= interact_as_actor()
|
2022-03-04 14:33:48 +00:00
|
|
|
->avatar_image_url ?>" alt="<?= esc(interact_as_actor()
|
|
|
|
->display_name) ?>" class="w-10 h-10 rounded-full aspect-square" loading="lazy" />
|
2021-10-13 15:43:40 +00:00
|
|
|
<div class="flex flex-col flex-1 min-w-0 gap-y-2">
|
2022-03-25 14:37:14 +00:00
|
|
|
<input name="episode_url" value="<?= esc($episode->link) ?>" type="hidden" />
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Forms.Textarea
|
2021-10-13 15:43:40 +00:00
|
|
|
name="message"
|
|
|
|
placeholder="<?= lang('Post.form.episode_message_placeholder') ?>"
|
2024-05-09 17:55:41 +00:00
|
|
|
isRequired="true"
|
2021-10-13 15:43:40 +00:00
|
|
|
rows="2" />
|
2024-12-17 15:06:08 +00:00
|
|
|
<?php // @icon("send-plane-2-fill")?>
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Button variant="primary" size="small" type="submit" class="self-end" iconRight="send-plane-2-fill"><?= lang('Post.form.submit') ?></x-Button>
|
2021-10-13 15:43:40 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2021-11-05 14:36:34 +00:00
|
|
|
<hr class="my-4 border-subtle">
|
2021-10-13 15:43:40 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2021-10-18 16:44:07 +00:00
|
|
|
<div class="flex flex-col gap-y-4">
|
|
|
|
<?php foreach ($episode->posts as $key => $post): ?>
|
|
|
|
<?= view('post/_partials/card', [
|
2023-06-12 14:47:38 +00:00
|
|
|
'index' => $key,
|
|
|
|
'post' => $post,
|
2021-10-18 16:44:07 +00:00
|
|
|
'podcast' => $podcast,
|
2021-10-13 15:43:40 +00:00
|
|
|
]) ?>
|
2021-10-18 16:44:07 +00:00
|
|
|
<?php endforeach; ?>
|
2021-10-13 15:43:40 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|