mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?= $this->extend('episode/_layout') ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?php if (can_user_interact()): ?>
|
|
<?= view('_message_block') ?>
|
|
<form action="<?= route_to('comment-attempt-create', $podcast->id, $episode->id) ?>" method="POST" class="flex p-4 gap-x-2">
|
|
<?= csrf_field() ?>
|
|
|
|
<img src="<?= interact_as_actor()
|
|
->avatar_image_url ?>" alt="<?= esc(interact_as_actor()
|
|
->display_name) ?>" class="w-10 h-10 rounded-full aspect-square" loading="lazy" />
|
|
<div class="flex flex-col flex-1 min-w-0 gap-y-2">
|
|
<x-Forms.Textarea
|
|
name="message"
|
|
isRequired="true"
|
|
placeholder="<?= lang('Comment.form.episode_message_placeholder') ?>"
|
|
rows="2" />
|
|
<?php // @icon("send-plane-2-fill")?>
|
|
<x-Button class="self-end" variant="primary" size="small" type="submit" iconRight="send-plane-2-fill"><?= lang('Comment.form.submit') ?></x-Button>
|
|
</div>
|
|
</form>
|
|
<?php endif; ?>
|
|
|
|
<div class="flex flex-col gap-y-2">
|
|
<?php foreach ($episode->comments as $comment): ?>
|
|
<?= view('episode/_partials/comment', [
|
|
'comment' => $comment,
|
|
'podcast' => $podcast,
|
|
]) ?>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<?= $this->endSection()
|
|
?>
|