2017-12-14 17:10:13 +01:00
|
|
|
module CommentaireHelper
|
2018-09-11 18:35:29 +02:00
|
|
|
def commentaire_is_from_me_class(commentaire, connected_user)
|
2019-07-01 18:14:02 +02:00
|
|
|
if commentaire.sent_by?(connected_user)
|
2017-12-14 17:10:13 +01:00
|
|
|
"from-me"
|
|
|
|
end
|
|
|
|
end
|
2018-09-06 15:04:43 +02:00
|
|
|
|
2018-09-11 18:40:10 +02:00
|
|
|
def commentaire_answer_action(commentaire, connected_user)
|
2019-07-01 18:14:02 +02:00
|
|
|
if commentaire.sent_by?(connected_user)
|
2021-04-17 18:49:00 +02:00
|
|
|
I18n.t('helpers.commentaire.send_message_to_instructeur')
|
2018-09-11 18:40:10 +02:00
|
|
|
else
|
2021-04-17 18:49:00 +02:00
|
|
|
I18n.t('helpers.commentaire.reply_in_mailbox')
|
2018-09-11 18:40:10 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-06 16:08:24 +02:00
|
|
|
def commentaire_is_from_guest(commentaire)
|
|
|
|
commentaire.dossier.invites.map(&:email).include?(commentaire.email)
|
|
|
|
end
|
|
|
|
|
2018-09-06 15:04:43 +02:00
|
|
|
def commentaire_date(commentaire)
|
2019-11-25 14:39:42 +01:00
|
|
|
is_current_year = (commentaire.created_at.year == Time.zone.today.year)
|
2018-09-06 15:04:43 +02:00
|
|
|
template = is_current_year ? :message_date : :message_date_with_year
|
2018-10-25 22:25:43 +02:00
|
|
|
I18n.l(commentaire.created_at, format: template)
|
2018-09-06 15:04:43 +02:00
|
|
|
end
|
2020-08-10 16:02:11 +02:00
|
|
|
|
|
|
|
def pretty_commentaire(commentaire)
|
2021-11-16 14:28:38 +01:00
|
|
|
return t('views.shared.commentaires.destroy.deleted_body') if commentaire.discarded?
|
2020-08-10 16:02:11 +02:00
|
|
|
body_formatted = commentaire.sent_by_system? ? commentaire.body : simple_format(commentaire.body)
|
|
|
|
sanitize(body_formatted)
|
|
|
|
end
|
2017-12-14 17:10:13 +01:00
|
|
|
end
|