Skip to content

More accurate displaying of enum values. #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 28 additions & 42 deletions lib/enum/active_record_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,51 +13,37 @@ def field_type_with_enumerated_attribute
end

if defined?(ActionView::Base)
module ActionView
module Helpers
module ActionView
module Helpers

#form_options_helper.rb
module FormOptionsHelper
#def select
def enum_select(object, method, options={}, html_options={})
InstanceTag.new(object, method, self, options.delete(:object)).to_enum_select_tag(options, html_options)
end
end
#form_options_helper.rb
module FormOptionsHelper
#def select
def enum_select(object, method, options={}, html_options={})
InstanceTag.new(object, method, self, options.delete(:object)).to_enum_select_tag(options, html_options)
end
end

class InstanceTag
def to_enum_select_tag(options, html_options={})
if self.object.respond_to?(method_name.to_sym)
class InstanceTag
def to_enum_select_tag(options, html_options={})
if self.object.respond_to?(method_name.to_sym)
column = self.object.column_for_attribute(method_name)
if (value = self.object.__send__(method_name.to_sym))
options[:selected] ||= value.to_s
else
if (value = self.object.__send__(method_name.to_sym))
options[:selected] ||= value.to_s
else
options[:include_blank] = column.null if options[:include_blank].nil?
end
end
to_select_tag(column.limit, options, html_options)
end

#initialize record_name, method, self
if respond_to?(:to_tag)
def to_tag_with_enumerated_attribute(options={})
#look for an enum
if (column_type == :enum && self.object.class.respond_to?(method_name.to_sym))
to_enum_select_tag(options)
else
to_tag_without_enumerated_attribute(options)
end
end
alias_method_chain :to_tag, :enumerated_attribute
end

end
end
end
to_select_tag(column.limit.select{|o| !o.blank?}.map{|v|[v.to_s.humanize,v]}, options, html_options)
end
end

class FormBuilder
def enum_select(method, options={}, html_options={})
@template.enum_select(@object_name, method, objectify_options(options), @default_options.merge(html_options))
end
end
class FormBuilder
def enum_select(method, options={}, html_options={})
@template.enum_select(@object_name, method, objectify_options(options), @default_options.merge(html_options))
end
end

end
end
end
end
end
end