29 lines
660 B
Ruby
29 lines
660 B
Ruby
class Dossiers::RowShowComponent < ApplicationComponent
|
|
attr_reader :label
|
|
attr_reader :profile
|
|
attr_reader :updated_at
|
|
attr_reader :seen_at
|
|
attr_reader :content_class
|
|
|
|
renders_one :value
|
|
renders_one :blank
|
|
|
|
def initialize(label:, profile: nil, updated_at: nil, seen_at: nil, content_class: nil)
|
|
@label = label
|
|
@profile = profile
|
|
@updated_at = updated_at
|
|
@seen_at = seen_at
|
|
@content_class = content_class
|
|
end
|
|
|
|
def badge_updated_class
|
|
class_names(
|
|
"fr-badge fr-badge--sm" => true,
|
|
"fr-badge--new" => seen_at.present? && updated_at&.>(seen_at)
|
|
)
|
|
end
|
|
|
|
def usager?
|
|
@profile == 'usager'
|
|
end
|
|
end
|