demarches-normaliennes/app/components/editable_champ/champ_label_content_component.rb
2022-11-22 16:41:20 +01:00

17 lines
361 B
Ruby

class EditableChamp::ChampLabelContentComponent < ApplicationComponent
include ApplicationHelper
def initialize(champ:, seen_at: nil)
@champ, @seen_at = champ, seen_at
end
def highlight_if_unseen_class
if highlight?
'highlighted'
end
end
def highlight?
@champ.updated_at.present? && @seen_at&.<(@champ.updated_at)
end
end