mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
47 lines
1.8 KiB
PHP
47 lines
1.8 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
if ($comment->in_reply_to_id): ?>
|
|
<div class="relative -mb-2 overflow-hidden border-t border-l border-r border-subtle rounded-t-xl">
|
|
<div class="absolute z-0 w-[2px] h-full bg-base left-[43px] top-4"></div>
|
|
<?= view('episode/_partials/comment_reply', [
|
|
'reply' => $comment->reply_to_comment,
|
|
]) ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?= $this->include('episode/_partials/comment_card') ?>
|
|
<div class="-mt-2 overflow-hidden border-b border-l border-r border-subtle post-replies rounded-b-xl">
|
|
|
|
<?php if (can_user_interact()): ?>
|
|
<form action="<?= route_to('comment-attempt-reply', $podcast->id, $episode->id, $comment->id) ?>" method="POST" class="flex px-6 pt-8 pb-4 gap-x-2 bg-base">
|
|
<?= 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">
|
|
<x-Forms.Textarea
|
|
name="message"
|
|
isRequired="true"
|
|
class="w-full mb-4"
|
|
placeholder="<?= lang('Comment.form.reply_to_placeholder', [
|
|
'actorUsername' => esc($comment->actor->username),
|
|
]) ?>"
|
|
rows="1" />
|
|
<?php // @icon("send-plane-2-fill")?>
|
|
<x-Button variant="primary" size="small" type="submit" name="action" value="reply" class="self-end" iconRight="send-plane-2-fill"><?= lang('Comment.form.submit_reply') ?></x-Button>
|
|
</div>
|
|
</form>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($comment->has_replies): ?>
|
|
<div class="border-t divide-y border-subtle">
|
|
<?php foreach ($comment->replies as $reply): ?>
|
|
<?= view('episode/_partials/comment_reply', [
|
|
'reply' => $reply,
|
|
]) ?>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div>
|