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
47 Zeilen
964 B
Ruby
47 Zeilen
964 B
Ruby
# frozen_string_literal: true
|
|
class CustomWizard::StepUpdater
|
|
include ActiveModel::Model
|
|
|
|
attr_accessor :refresh_required, :result
|
|
attr_reader :step, :submission
|
|
|
|
def initialize(current_user, wizard, step, submission)
|
|
@current_user = current_user
|
|
@wizard = wizard
|
|
@step = step
|
|
@refresh_required = false
|
|
@submission = submission.with_indifferent_access
|
|
@result = {}
|
|
end
|
|
|
|
def update
|
|
if SiteSetting.custom_wizard_enabled &&
|
|
@step.present? &&
|
|
@step.updater.present? &&
|
|
success?
|
|
|
|
@step.updater.call(self)
|
|
|
|
UserHistory.create(
|
|
action: UserHistory.actions[:custom_wizard_step],
|
|
acting_user_id: @current_user.id,
|
|
context: @wizard.id,
|
|
subject: @step.id
|
|
)
|
|
else
|
|
false
|
|
end
|
|
end
|
|
|
|
def success?
|
|
@errors.blank?
|
|
end
|
|
|
|
def refresh_required?
|
|
@refresh_required
|
|
end
|
|
|
|
def validate
|
|
CustomWizard::UpdateValidator.new(self).perform
|
|
end
|
|
end
|