Sha256: 56d1d5003517e853a62e38181444617a73af1369ea268d70582891fda94e55a4
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
class Shadcn::FormBuilder < ActionView::Helpers::FormBuilder def label(method, options = {}) error_class = @object.errors[method].any? ? "error" : "" options[:class] = @template.tw("#{options[:class]} #{error_class}") @template.render_label(name: "#{object_name}[#{method}]", label: label_for(@object, method), **options) end def text_field(method, options = {}) error_class = @object.errors[method].any? ? "error" : "" options[:class] = @template.tw("#{options[:class]} #{error_class}") @template.render_input( name: "#{object_name}[#{method}]", id: "#{object_name}_#{method}", value: @object.send(method), type: "text", **options ) end def password_field(method, options = {}) error_class = @object.errors[method].any? ? "error" : "" options[:class] = @template.tw("#{options[:class]} #{error_class}") @template.render_input( name: "#{object_name}[#{method}]", id: "#{object_name}_#{method}", value: @object.send(method), type: "password", **options ) end def email_field(method, options = {}) error_class = @object.errors[method].any? ? "error" : "" options[:class] = @template.tw("#{options[:class]} #{error_class}") @template.render_input( name: "#{object_name}[#{method}]", id: "#{object_name}_#{method}", value: @object.send(method), type: "email", **options ) end def submit(value = nil, options = {}) @template.render_button(value, **options) end private def label_for(object, method) return method.capitalize if object.nil? object.class.human_attribute_name(method) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shadcn-ui-0.0.12 | app/components/shadcn/form_builder.rb |