openvk/Web/Presenters/templates/components/comment.xml

51 lines
2.7 KiB
XML
Raw Normal View History

2020-06-07 19:04:43 +03:00
{var author = $comment->getOwner()}
{var $Club = openvk\Web\Models\Entities\Club::class}
2020-06-07 19:04:43 +03:00
<a name="cid={$comment->getId()}"></a>
<table border="0" style="font-size: 11px;" class="post comment" id="_comment{$comment->getId()}" data-comment-id="{$comment->getId()}" data-owner-id="{$author->getId()}" data-from-group="{$comment->getOwner() instanceof $Club}">
2020-06-07 19:04:43 +03:00
<tbody>
<tr>
2021-11-28 14:39:42 +03:00
<td width="30" valign="top">
2020-06-07 19:04:43 +03:00
<img
src="{$author->getAvatarURL()}"
width="30"
class="cCompactAvatars" />
2020-06-07 19:04:43 +03:00
</td>
2021-11-30 18:34:07 +03:00
<td width="100%" valign="top">
2020-06-07 19:04:43 +03:00
<div class="post-author">
<a href="{$author->getURL()}"><b>
{$author->getCanonicalName()}
2021-11-28 14:39:42 +03:00
</b></a><br/>
2020-06-07 19:04:43 +03:00
</div>
<div class="post-content" id="{$comment->getId()}">
<div class="text" id="text{$comment->getId()}">
{$comment->getText()|noescape}
<div n:ifcontent class="attachments_b">
<div class="attachment" n:foreach="$comment->getChildren() as $attachment" data-localized-nsfw-text="{_nsfw_warning}">
{include "attachment.xml", attachment => $attachment}
</div>
</div>
2020-06-07 19:04:43 +03:00
</div>
<div n:if="isset($thisUser) &&! ($compact ?? false)" class="post-menu">
2021-11-28 14:39:42 +03:00
<a href="#_comment{$comment->getId()}" class="date">{$comment->getPublicationTime()}</a>&nbsp;|
2020-06-07 19:04:43 +03:00
{var canDelete = $comment->getOwner()->getId() == $thisUser->getId()}
{var canDelete = $canDelete || $comment->getTarget()->getOwner()->getId() == $thisUser->getId()}
{if $canDelete}
2021-11-28 14:39:42 +03:00
<a href="/comment{$comment->getId()}/delete">{_"delete"}</a>&nbsp;|
2020-06-07 19:04:43 +03:00
{/if}
<a class="comment-reply">Ответить</a>
2020-06-07 19:04:43 +03:00
<div style="float: right; font-size: .7rem;">
2021-11-28 14:39:42 +03:00
<a class="post-like-button" href="/comment{$comment->getId()}/like?hash={rawurlencode($csrfToken)}">
2021-01-17 01:29:21 +03:00
<div class="heart" style="{if $comment->hasLikeFrom($thisUser)}opacity: 1;{else}opacity: 0.4;{/if}"></div>
2021-11-30 18:34:07 +03:00
<span class="likeCnt">{if $comment->getLikesCount() > 0}{$comment->getLikesCount()}{/if}</span>
2020-06-07 19:04:43 +03:00
</a>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>