Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-08 19:38:00 +01:00
56 Zeilen
1,1 KiB
Ruby
56 Zeilen
1,1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class CustomWizard::Step
|
|
include ActiveModel::SerializerSupport
|
|
|
|
attr_reader :id,
|
|
:updater
|
|
|
|
attr_accessor :index,
|
|
:title,
|
|
:description,
|
|
:permitted,
|
|
:permitted_message,
|
|
:fields,
|
|
:next,
|
|
:previous,
|
|
:banner,
|
|
:banner_upload_id,
|
|
:disabled,
|
|
:description_vars,
|
|
:last_step,
|
|
:force_final,
|
|
:conditional_final_step,
|
|
:wizard
|
|
|
|
def initialize(id)
|
|
@id = id
|
|
@fields = []
|
|
end
|
|
|
|
def add_field(attrs)
|
|
field = ::CustomWizard::Field.new(attrs)
|
|
field.index = (@fields.size == 1 ? 0 : @fields.size) if field.index.nil?
|
|
field.step = self
|
|
@fields << field
|
|
field
|
|
end
|
|
|
|
def has_fields?
|
|
@fields.present?
|
|
end
|
|
|
|
def on_update(&block)
|
|
@updater = block
|
|
end
|
|
|
|
def update_field_order!
|
|
@fields.sort_by!(&:index)
|
|
end
|
|
|
|
def final?
|
|
return true if force_final && conditional_final_step
|
|
return true if last_step
|
|
false
|
|
end
|
|
end
|