5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 01:16:21 +00:00
panel/app/views/components/_comments_btn_box.haml

14 lines
522 B
Text
Raw Normal View History

-# Componente Botonera de Comentarios
2024-03-20 20:53:00 +00:00
- local_data = { reject: { confirm: t('.confirm_reject') }, report: { confirm: t('.confirm_report') } }
2024-03-04 16:49:07 +00:00
.d-flex.flex-row
- ActivityPub.events.each do |event|
- possible = activity_pub.public_send(:"may_#{event}?")
2024-03-04 16:49:07 +00:00
= render 'components/btn_base',
text: t(".text_#{event}"),
path: public_send(:"site_activity_pub_#{event}_path", activity_pub_id: activity_pub),
class: ('btn-secondary' if possible),
disabled: !possible,
data: local_data[event]