{"id":2469,"date":"2012-02-23T14:54:25","date_gmt":"2012-02-23T16:54:25","guid":{"rendered":"http:\/\/blog.plataformatec.com.br\/?p=2469"},"modified":"2012-03-08T10:04:02","modified_gmt":"2012-03-08T13:04:02","slug":"simpleform-2-0-bootstrap-for-you-with-love","status":"publish","type":"post","link":"https:\/\/blog.plataformatec.com.br\/2012\/02\/simpleform-2-0-bootstrap-for-you-with-love\/","title":{"rendered":"SimpleForm 2.0 + Bootstrap: for you with love"},"content":{"rendered":"
The Carnival is over in Brazil but we are still partying at Plataformatec by bringing you a complete new release of SimpleForm. This time is not a small bump though, it’s a shiny new version: SimpleForm 2.0<\/a>, that comes with a bunch of new features and customizations, a new wrapper API to create custom input stacks and a great integration with Twitter Bootstrap<\/a>.<\/p>\n The new wrappers API is here in place of the old Wrappers are used by the form builder to generate a complete input. You can remove any component from the wrapper, change the order or even add your own to the stack.<\/p>\n The Or you can just pick a different wrapper in a specific input if you want:<\/p>\n You can see a more detailed description of the new wrappers API in the documentation<\/a>.<\/p>\n The second big change in SimpleForm 2.0 is out of the box Bootstrap integration. SimpleForm now ships with a generator option to initialize your application with a set of specific wrappers customized for Bootstrap. To get them, just run in your terminal, inside a Rails application (with SimpleForm already installed):<\/p>\n This gives you the default SimpleForm initializer in This wrapper is setup with the same structure that Bootstrap expects and is set to be the default wrapper in your application. This is the killer feature in SimpleForm 2.0<\/strong>: the Bootstrap integration is not inside SimpleForm but all in your application. This means that, if you want to move away or customize Bootstrap in the future, you don’t need to monkey patch SimpleForm, everything is in your app!<\/p>\n We’ve set up a live example application showing most of the SimpleForm inputs integrated with Twitter Bootstrap<\/a>, make sure you check it out! The application code is on github<\/a>.<\/p>\n Keep reading this blog post to find out the other changes and deprecations that gave SimpleForm all this extra flexibility, allowing it to be easily integrated with Twitter Bootstrap 2.0. <\/p>\n SimpleForm 2.0 comes with some new configs to ease its integration with Bootstrap and to make your daily work even more flexible:<\/p>\n In order to create the new wrappers API, we had to deprecate some configs and change some helpers, so here is a basic summary of what is being deprecated:<\/p>\n SimpleForm 2.0 comes with a lot of new features, in special the new wrappers API, to make it flexible enough to allow you to customize inputs as much as possible in an easier way, and to bring you the integrated Bootstrap structure.<\/p>\n Make sure you check out the new SimpleForm README<\/a> and also the CHANGELOG<\/a> for a full list of changes. We’ve also created an special wiki page to help you Upgrading to SimpleForm 2.0<\/a>. <\/p>\n If you find any trouble while migrating to 2.0, or any issue with Bootstrap integration, or any other issue, please let us know in the issues tracker<\/a>. And if you have any questions, make sure to send them to the mailing list<\/a>, there are a lot of people there to help you.<\/p>\nWrappers API<\/h3>\n
components<\/code> option (besides some other *_tag and *_class configs), to add more flexibility to the way you build SimpleForm inputs. Here is an example of the default wrapper config that ships with SimpleForm when you run its install generator:<\/p>\n
\r\nconfig.wrappers :default, :class => :input,\r\n :hint_class => :field_with_hint, :error_class => :field_with_errors do |b|\r\n ## Extensions enabled by default\r\n # Any of these extensions can be disabled for a\r\n # given input by passing: `f.input EXTENSION_NAME => false`.\r\n # You can make any of these extensions optional by\r\n # renaming `b.use` to `b.optional`.\r\n\r\n # Determines whether to use HTML5 (:email, :url, ...)\r\n # and required attributes\r\n b.use :html5\r\n\r\n # Calculates placeholders automatically from I18n\r\n # You can also pass a string as f.input :placeholder => \"Placeholder\"\r\n b.use :placeholder\r\n\r\n ## Optional extensions\r\n # They are disabled unless you pass `f.input EXTENSION_NAME => :lookup`\r\n # to the input. If so, they will retrieve the values from the model\r\n # if any exists. If you want to enable the lookup for any of those\r\n # extensions by default, you can change `b.optional` to `b.use`.\r\n\r\n # Calculates maxlength from length validations for string inputs\r\n b.optional :maxlength\r\n\r\n # Calculates pattern from format validations for string inputs\r\n b.optional :pattern\r\n\r\n # Calculates min and max from length validations for numeric inputs\r\n b.optional :min_max\r\n\r\n # Calculates readonly automatically from readonly attributes\r\n b.optional :readonly\r\n\r\n ## Inputs\r\n b.use :label_input\r\n b.use :hint, :wrap_with => { :tag => :span, :class => :hint }\r\n b.use :error, :wrap_with => { :tag => :span, :class => :error }\r\nend\r\n<\/pre>\n
:default<\/code> wrapper is going to be used in all forms by default. You can also select which wrapper to use per form, by naming them:<\/p>\n
\r\n# Given you added this wrapper in your SimpleForm initializer:\r\nconfig.wrappers :small do |b|\r\n b.use :placeholder\r\n b.use :label_input\r\nend\r\n\r\n# Uses the :small wrapper for all inputs in this form.\r\nsimple_form_for @user, :wrapper => :small do |f|\r\n f.input :name\r\nend\r\n<\/pre>\n
\r\n# Uses the default wrapper for other inputs, and :small for :name.\r\nsimple_form_for @user do |f|\r\n f.input :name, :wrapper => :small\r\nend\r\n<\/pre>\n
Twitter Bootstrap<\/h3>\n
\r\nrails generate simple_form:install --bootstrap\r\n<\/pre>\n
config\/initializers\/simple_form.rb<\/code> with some extra integration code added for Bootstrap. For example, here is the default wrapper:<\/p>\n
\r\nconfig.wrappers :bootstrap, :tag => 'div', :class => 'control-group', \r\n :error_class => 'error' do |b|\r\n b.use :placeholder\r\n b.use :label\r\n b.wrapper :tag => 'div', :class => 'controls' do |ba|\r\n ba.use :input\r\n ba.use :error, :wrap_with => { :tag => 'span', :class => 'help-inline' }\r\n ba.use :hint, :wrap_with => { :tag => 'p', :class => 'help-block' }\r\n end\r\nend\r\n<\/pre>\n
New configs<\/h3>\n
\n
default_wrapper<\/code>: defines the default wrapper to be used when no one is given.<\/li>\n
button_class<\/code>: defines a class to add for all buttons.<\/li>\n
boolean_style<\/code>: change the way booleans (mainly check boxes and radio buttons) are shown:
:inline<\/code> (the default) uses the same structure as before, checkbox + label;
:nested<\/code> (generated for new apps) puts the checkbox inside the label, as label > checkbox.<\/li>\n
collection_wrapper_class<\/code>: class to add in all collections (check boxes \/ radio buttons), given
collection_wrapper_tag<\/code> is set.<\/li>\n
item_wrapper_class<\/code>: class to add to all items in a collection.<\/li>\n
generate_additional_classes_for<\/code>: allows you to specify whether to generate the extra css classes for inputs, labels and wrappers. By default SimpleForm always generate all classes, such as input type and required info, to all of them. You can be more selective and tell SimpleForm to just add such classes to the input or wrapper, by changing this config.<\/li>\n<\/ul>\n
Deprecations<\/h3>\n
Configs<\/h4>\n
\n
translate<\/code>: By making
placeholder<\/code> and
hint<\/code>
optional<\/code> options in the wrappers API, you can already disable the automatic translation attempt that happens for these components.
labels<\/code>, on the other hand, are always used in forms, so we added a special config for them:
translate_labels<\/code>.<\/li>\n
html5<\/code>: this config is now part of the wrappers API, with
b.use :html5<\/code>, so the config option has been deprecated.<\/li>\n
error_notification_id<\/code>: in favor of using
error_notification_class<\/code> only.<\/li>\n
wrapper_tag=, wrapper_class=, wrapper_error_class=, error_tag=, error_class=, hint_tag=, hint_class=, components=<\/code>: all these were moved to the wrappers API structure, and are not required anymore.<\/li>\n<\/ul>\n
Helpers<\/h4>\n
\n
:radio<\/code> input type: In order to integrate with Bootstrap, we had to get rid of the
:as => :radio<\/code> and use
:as => :radio_buttons<\/code> instead. The former still works, but will give you a bunch of deprecation warnings. CSS class names changed accordingly as well<\/li>\n
collection_radio<\/code>: has changed to
collection_radio_buttons<\/code> to follow the
:as => :radio_buttons<\/code> change. Its label class has changed as well based on the helper name.<\/li>\n<\/ul>\n
Wrapping up<\/h3>\n