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, 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.
Wrappers API
The new wrappers API is here in place of the old components
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:
config.wrappers :default, :class => :input,
:hint_class => :field_with_hint, :error_class => :field_with_errors do |b|
## Extensions enabled by default
# Any of these extensions can be disabled for a
# given input by passing: `f.input EXTENSION_NAME => false`.
# You can make any of these extensions optional by
# renaming `b.use` to `b.optional`.
# Determines whether to use HTML5 (:email, :url, ...)
# and required attributes
b.use :html5
# Calculates placeholders automatically from I18n
# You can also pass a string as f.input :placeholder => "Placeholder"
b.use :placeholder
## Optional extensions
# They are disabled unless you pass `f.input EXTENSION_NAME => :lookup`
# to the input. If so, they will retrieve the values from the model
# if any exists. If you want to enable the lookup for any of those
# extensions by default, you can change `b.optional` to `b.use`.
# Calculates maxlength from length validations for string inputs
b.optional :maxlength
# Calculates pattern from format validations for string inputs
b.optional :pattern
# Calculates min and max from length validations for numeric inputs
b.optional :min_max
# Calculates readonly automatically from readonly attributes
b.optional :readonly
## Inputs
b.use :label_input
b.use :hint, :wrap_with => { :tag => :span, :class => :hint }
b.use :error, :wrap_with => { :tag => :span, :class => :error }
end
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.
The :default
wrapper is going to be used in all forms by default. You can also select which wrapper to use per form, by naming them:
# Given you added this wrapper in your SimpleForm initializer:
config.wrappers :small do |b|
b.use :placeholder
b.use :label_input
end
# Uses the :small wrapper for all inputs in this form.
simple_form_for @user, :wrapper => :small do |f|
f.input :name
end
Or you can just pick a different wrapper in a specific input if you want:
# Uses the default wrapper for other inputs, and :small for :name.
simple_form_for @user do |f|
f.input :name, :wrapper => :small
end
You can see a more detailed description of the new wrappers API in the documentation.
Twitter Bootstrap
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):
rails generate simple_form:install --bootstrap
This gives you the default SimpleForm initializer in config/initializers/simple_form.rb
with some extra integration code added for Bootstrap. For example, here is the default wrapper:
config.wrappers :bootstrap, :tag => 'div', :class => 'control-group',
:error_class => 'error' do |b|
b.use :placeholder
b.use :label
b.wrapper :tag => 'div', :class => 'controls' do |ba|
ba.use :input
ba.use :error, :wrap_with => { :tag => 'span', :class => 'help-inline' }
ba.use :hint, :wrap_with => { :tag => 'p', :class => 'help-block' }
end
end
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: 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!
We’ve set up a live example application showing most of the SimpleForm inputs integrated with Twitter Bootstrap, make sure you check it out! The application code is on github.
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.
New configs
SimpleForm 2.0 comes with some new configs to ease its integration with Bootstrap and to make your daily work even more flexible:
-
default_wrapper
: defines the default wrapper to be used when no one is given. -
button_class
: defines a class to add for all buttons. -
boolean_style
: change the way booleans (mainly check boxes and radio buttons) are shown::inline
(the default) uses the same structure as before, checkbox + label;:nested
(generated for new apps) puts the checkbox inside the label, as label > checkbox. -
collection_wrapper_class
: class to add in all collections (check boxes / radio buttons), givencollection_wrapper_tag
is set. -
item_wrapper_class
: class to add to all items in a collection. -
generate_additional_classes_for
: 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.
Deprecations
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:
Configs
-
translate
: By makingplaceholder
andhint
optional
options in the wrappers API, you can already disable the automatic translation attempt that happens for these components.labels
, on the other hand, are always used in forms, so we added a special config for them:translate_labels
. -
html5
: this config is now part of the wrappers API, withb.use :html5
, so the config option has been deprecated. -
error_notification_id
: in favor of usingerror_notification_class
only. -
wrapper_tag=, wrapper_class=, wrapper_error_class=, error_tag=, error_class=, hint_tag=, hint_class=, components=
: all these were moved to the wrappers API structure, and are not required anymore.
Helpers
-
:radio
input type: In order to integrate with Bootstrap, we had to get rid of the:as => :radio
and use:as => :radio_buttons
instead. The former still works, but will give you a bunch of deprecation warnings. CSS class names changed accordingly as well -
collection_radio
: has changed tocollection_radio_buttons
to follow the:as => :radio_buttons
change. Its label class has changed as well based on the helper name.
Wrapping up
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.
Make sure you check out the new SimpleForm README and also the CHANGELOG for a full list of changes. We’ve also created an special wiki page to help you Upgrading to SimpleForm 2.0.
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. And if you have any questions, make sure to send them to the mailing list, there are a lot of people there to help you.
All our development team and an amazing number of contributors put a lot of effort into this new release and we hope you will enjoy it. SimpleForm 2.0 + Bootstrap: from us, for you, with love.
Thoughts about SimpleForm 2.0? Please let us know in the comments.
Awesome. Love the project, think integrating with bootstrap is an excellent decision.
you’re amazing !!
I love simple form !!
Using SimpleForm 2.0 since it wasn’t even RC. Guys, you are awesome! For many people it is now MUCH easier to develop simple websites with Bootstrap and Simple Form.
The twitter bootstrap is pure awsomness!
Thanks for the great work !!
Love it, using it on
http://bpgraph.com/, thx!