ceef3f4bc9
* Re structure builder logic to allow for step conditionality Concerns - Performance. Look at whether the additional build in the steps controller can be reduced - Does not work if applied to the last step. - Certain conditions will not work with the first step(?) - How should this be scoped to known functionality? * Add indexes and conditions to steps and fields * Complete and add spec * Complete backend * Complete step conditionality and field indexing * Fix failing spec * Update coverage * Apply rubocop * Apply prettier * Apply prettier to wizard js * Fix schema issues created in merge * Remove setting label for force_final * Improve client wizard cache naming * Improve steps controller and spec conditionality * Improve final step attribute naming * Fix failing spec * Linting * Add one more final step test * Linting * Fix eslint issues * Apply prettier * Linting, syntax, merge and copy cleanups * Update wizard-admin.scss * Fix template linting * Rubocop fixes
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,
|
|
:key,
|
|
:permitted,
|
|
:permitted_message,
|
|
:fields,
|
|
:next,
|
|
:previous,
|
|
:banner,
|
|
: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
|