discourse/lib/wizard/step.rb
Ted Johansson 3126c50baa
DEV: Update member access wizard step to use toggle group (#28013)
We want to change the design of the "member experience" step of the wizard from using checkbox switches to using radio toggle groups.
2024-07-29 14:07:06 +08:00

30 lines
521 B
Ruby

# frozen_string_literal: true
class Wizard
class Step
attr_reader :id, :updater
attr_accessor :index, :fields, :next, :previous, :disabled, :description_vars, :emoji
def initialize(id)
@id = id
@fields = []
end
def add_field(attrs)
field = Field.new(attrs)
field.step = self
@fields << field
yield field if block_given?
field
end
def has_fields?
@fields.present?
end
def on_update(&block)
@updater = block
end
end
end