5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 00:26:22 +00:00
panel/app/views/moderation_queue/_comment.haml

34 lines
1.1 KiB
Text
Raw Normal View History

2024-03-04 16:49:07 +00:00
-#
Componente Comentario
@param profile [Hash]
@param comment [Hash]
@param activity_pub [ActivityPub]
2024-03-04 16:11:17 +00:00
- in_reply_to = text_plain comment['inReplyTo']
2024-03-04 16:49:07 +00:00
- summary = text_plain comment['summary']
2024-03-04 16:11:17 +00:00
.row.no-gutters
.col-1
= render 'components/checkbox', id: activity_pub.id, name: 'activity_pub[]', value: activity_pub.id, data: { target: 'select-all.input' }, form: form_id
.col-11
2024-03-04 14:59:29 +00:00
.d-flex.flex-row.align-items-center.justify-content-between
%h4.mb-0
2024-03-04 16:11:17 +00:00
%a{ href: text_plain(comment['attributedTo']) }= text_plain profile['preferredUsername']
2024-03-04 14:59:29 +00:00
%small
2024-03-04 16:17:21 +00:00
= render 'layouts/time', time: text_plain(comment['published'])
2024-03-04 16:11:17 +00:00
- if in_reply_to.present?
2024-03-04 14:59:29 +00:00
%dl
%dt.d-inline
%small= t('.reply_to')
%dd.d-inline
%small
2024-03-04 16:17:21 +00:00
%a{ href: in_reply_to }= in_reply_to
.content
- if summary.present?
= render 'layouts/details', summary: summary, summary_class: 'h5' do
2024-03-04 14:59:29 +00:00
= sanitize comment['content']
- else
= sanitize comment['content']
2024-03-04 16:49:07 +00:00
= render 'components/comments_btn_box', activity_pub: activity_pub