demarches-normaliennes/app/components/editable_champ/editable_champ_base_component.rb
2024-08-22 09:26:48 +02:00

22 lines
427 B
Ruby

# frozen_string_literal: true
class EditableChamp::EditableChampBaseComponent < ApplicationComponent
include Dsfr::InputErrorable
def dsfr_champ_container
:div
end
def dsfr_input_classname
nil
end
def describedby_id
@champ.describedby_id
end
def initialize(form:, champ:, seen_at: nil, opts: {})
@form, @champ, @seen_at, @opts = form, champ, seen_at, opts
@attribute = :value
end
end