Sha256: 25a9d28d36b012e58c7432e2a70c6aae53a3d87bf87f58474a022e63ec97a3c0

Contents?: true

Size: 989 Bytes

Versions: 4

Compression:

Stored size: 989 Bytes

Contents

# frozen_string_literal: true

class Admin::Tramway::Event::ParticipantFormFieldForm < ::Tramway::Core::ExtendedApplicationForm
  properties :title, :description, :field_type, :options, :position, :list_field
  association :event

  def initialize(object)
    super(object).tap do
      form_properties event: :association,
                      title: :string,
                      description: :string,
                      field_type: :default,
                      options: :text,
                      list_field: :boolean,
                      position: :numeric
    end
  end

  def submit(params)
    super(params).tap do
      model.options = {} if model.options == ''
      model.options&.merge! list_field: (params[:list_field] == '1').to_s
      model.save
    end
  end

  def list_field
    model.options&.dig('list_field') == 'true'
  end

  def options
    model.options&.to_json
  end

  def options=(value)
    super value == '' ? value : JSON.parse(value)
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tramway-event-1.9.29 app/forms/admin/tramway/event/participant_form_field_form.rb
tramway-event-1.9.28.4 app/forms/admin/tramway/event/participant_form_field_form.rb
tramway-event-1.9.28.3 app/forms/admin/tramway/event/participant_form_field_form.rb
tramway-event-1.9.28.2 app/forms/admin/tramway/event/participant_form_field_form.rb