discourse/lib/wizard/field.rb

40 lines
744 B
Ruby
Raw Normal View History

2016-08-25 13:14:56 -04:00
class Wizard
2016-09-07 18:04:01 -04:00
class Choice
2016-09-21 11:22:46 -04:00
attr_reader :id, :label, :icon, :data, :extra_label
2016-09-07 18:04:01 -04:00
attr_accessor :field
def initialize(id, opts)
@id = id
@data = opts[:data]
@label = opts[:label]
2016-09-21 11:22:46 -04:00
@extra_label = opts[:extra_label]
2016-09-09 15:57:44 -04:00
@icon = opts[:icon]
2016-09-07 18:04:01 -04:00
end
end
class Field
attr_reader :id, :type, :required, :value, :choices
2016-08-25 13:14:56 -04:00
attr_accessor :step
def initialize(attrs)
attrs = attrs || {}
@id = attrs[:id]
@type = attrs[:type]
@required = !!attrs[:required]
@value = attrs[:value]
2016-09-07 18:04:01 -04:00
@choices = []
end
2017-07-27 21:20:09 -04:00
def add_choice(id, opts = nil)
2016-09-07 18:04:01 -04:00
choice = Choice.new(id, opts || {})
choice.field = self
@choices << choice
choice
2016-08-25 13:14:56 -04:00
end
2016-08-25 13:14:56 -04:00
end
end