87 lines
2.5 KiB
Ruby
87 lines
2.5 KiB
Ruby
class Dossiers::MessageComponent < ApplicationComponent
|
|
def initialize(commentaire:, connected_user:, messagerie_seen_at: nil, show_reply_button: false, groupe_gestionnaire: nil)
|
|
@commentaire = commentaire
|
|
@connected_user = connected_user
|
|
@messagerie_seen_at = messagerie_seen_at
|
|
@show_reply_button = show_reply_button
|
|
@groupe_gestionnaire = groupe_gestionnaire
|
|
end
|
|
|
|
attr_reader :commentaire, :connected_user, :messagerie_seen_at, :groupe_gestionnaire
|
|
|
|
def correction_badge
|
|
return if groupe_gestionnaire || commentaire.dossier_correction.nil?
|
|
return helpers.correction_resolved_badge if commentaire.dossier_correction.resolved?
|
|
|
|
helpers.pending_correction_badge(connected_user.is_a?(Instructeur) ? :for_instructeur : :for_user)
|
|
end
|
|
|
|
private
|
|
|
|
def soft_deletable?
|
|
commentaire.soft_deletable?(connected_user)
|
|
end
|
|
|
|
def show_reply_button?
|
|
@show_reply_button
|
|
end
|
|
|
|
def delete_button_text
|
|
if groupe_gestionnaire.nil? && commentaire.dossier_correction&.pending?
|
|
t('.delete_with_correction_button')
|
|
else
|
|
t('.delete_button')
|
|
end
|
|
end
|
|
|
|
def highlight_if_unseen_class
|
|
if highlight?
|
|
'highlighted'
|
|
end
|
|
end
|
|
|
|
def scroll_to_target
|
|
if highlight?
|
|
{ scroll_to_target: 'to' }
|
|
end
|
|
end
|
|
|
|
def icon
|
|
if commentaire.sent_by_system?
|
|
dsfr_icon('fr-icon-message-2-fill', :sm, :mr)
|
|
elsif commentaire.sent_by?(connected_user)
|
|
dsfr_icon('fr-icon-user-fill', :sm, :mr)
|
|
else
|
|
dsfr_icon('fr-icon-discuss-fill', :sm, :mr)
|
|
end
|
|
end
|
|
|
|
def commentaire_issuer
|
|
if commentaire.sent_by_system?
|
|
t('.automatic_email')
|
|
elsif commentaire.sent_by?(connected_user)
|
|
t('.you')
|
|
elsif groupe_gestionnaire
|
|
commentaire.gestionnaire_id ? commentaire.gestionnaire_email : commentaire.sender_email
|
|
else
|
|
commentaire.redacted_email
|
|
end
|
|
end
|
|
|
|
def commentaire_from_guest?
|
|
groupe_gestionnaire ? false : commentaire.dossier.invites.map(&:email).include?(commentaire.email)
|
|
end
|
|
|
|
def commentaire_date
|
|
is_current_year = (commentaire.created_at.year == Time.zone.today.year)
|
|
l(commentaire.created_at, format: is_current_year ? :message_date : :message_date_with_year)
|
|
end
|
|
|
|
def delete_url
|
|
groupe_gestionnaire ? gestionnaire_groupe_gestionnaire_commentaire_path(groupe_gestionnaire, commentaire) : instructeur_commentaire_path(commentaire.dossier.procedure, commentaire.dossier, commentaire)
|
|
end
|
|
|
|
def highlight?
|
|
commentaire.persisted? && (messagerie_seen_at.nil? || messagerie_seen_at < commentaire.created_at)
|
|
end
|
|
end
|