hashrocket-formtastic 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Justin French
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,499 @@
1
+ h1. Formtastic
2
+
3
+ Formtastic is a Rails FormBuilder DSL (with some other goodies) to make it far easier to create beautiful, semantically rich, syntactically awesome, readily stylable and wonderfully accessible HTML forms in your Rails applications.
4
+
5
+ h2. The Story
6
+
7
+ One day, I finally had enough, so I opened up my text editor, and wrote a DSL for how I'd like to author forms:
8
+
9
+ <pre>
10
+ <% semantic_form_for @article do |form| %>
11
+
12
+ <% form.inputs :name => "Basic" do %>
13
+ <%= form.input :title %>
14
+ <%= form.input :body %>
15
+ <%= form.input :section %>
16
+ <%= form.input :publication_state, :as => :radio %>
17
+ <%= form.input :category %>
18
+ <%= form.input :allow_comments, :label => "Allow commenting on this article" %>
19
+ <% end %>
20
+
21
+ <% form.inputs :name => "Advanced" do %>
22
+ <%= form.input :keywords, :required => false, :hint => "Example: ruby, rails, forms" %>
23
+ <%= form.input :extract, :required => false %>
24
+ <%= form.input :description, :required => false %>
25
+ <%= form.input :url_title, :required => false %>
26
+ <% end %>
27
+
28
+ <% form.inputs :name => "Author", :for => :author do |author_form| %>
29
+ <%= author_form.input :first_name %>
30
+ <%= author_form.input :last_name %>
31
+ <% end %>
32
+
33
+ <% form.buttons do %>
34
+ <%= form.commit_button %>
35
+ <% end %>
36
+
37
+ <% end %>
38
+ </pre>
39
+
40
+ I also wrote the accompanying HTML output I expected, favoring something very similar to the fieldsets, lists and other semantic elements Aaron Gustafson presented in "Learning to Love Forms":http://www.slideshare.net/AaronGustafson/learning-to-love-forms-web-directions-south-07, hacking together enough Ruby to prove it could be done.
41
+
42
+
43
+ h2. It's better than _SomeOtherFormBuilder_ because...
44
+
45
+ * it can handle @belongs_to@ associations (like Post belongs_to :author), rendering a select or set of radio inputs with choices from the parent model
46
+ * it can handle @has_many@ and @has_and_belongs_to_many@ associations (like Post has_many :tags), rendering a multi-select with choices from the child models
47
+ * it's Rails 2.3-ready (including nested forms)
48
+ * it has internationalization (I18n)!
49
+ * it's _really_ quick to get started with a basic form in place (4 lines), then go back to add in more detail if you need it
50
+ * there's heaps of elements, id and class attributes for you to hook in your CSS and JS
51
+ * it handles real world stuff like inline hints, inline error messages & help text
52
+ * it doesn't hijack or change any of the standard Rails form inputs, so you can still use them as expected (even mix and match)
53
+ * it's got absolutely awesome spec coverage
54
+ * there's a bunch of people using and working on it (it's not just one developer building half a solution)
55
+
56
+
57
+ h2. Why?
58
+
59
+ * web apps = lots of forms
60
+ * forms are so friggin' boring to code
61
+ * semantically rich & accessible forms really are possible
62
+ * the "V" is way behind the "M" and "C" in Rails' MVC – it's the ugly sibling
63
+ * best practices and common patterns have to start somewhere
64
+ * i need a challenge
65
+
66
+
67
+ h2. Opinions
68
+
69
+ * it should be easier to do things the right way than the wrong way
70
+ * sometimes _more mark-up_ is better
71
+ * elements and attribute hooks are _gold_ for stylesheet authors
72
+ * make the common things we do easy, yet still ensure uncommon things are still possible
73
+
74
+
75
+ h2. Documentation
76
+
77
+ RDoc documentation _should_ be automatically generated after each commit and made available on the "rdoc.info website":http://rdoc.info/projects/justinfrench/formtastic.
78
+
79
+
80
+ h2. Installation
81
+
82
+ You can (and should) get it as a gem:
83
+
84
+ <pre>
85
+ gem install justinfrench-formtastic
86
+ </pre>
87
+
88
+ And then add it as a dependency in your environment.rb file:
89
+
90
+ <pre>
91
+ config.gem "justinfrench-formtastic",
92
+ :lib => 'formtastic',
93
+ :source => 'http://gems.github.com'
94
+ </pre>
95
+
96
+ If you're a little more old school, install it as a plugin:
97
+
98
+ <pre>
99
+ ./script/plugin install git://github.com/justinfrench/formtastic.git
100
+ </pre>
101
+
102
+
103
+ h2. Usage
104
+
105
+ Forms are really boring to code... you want to get onto the good stuff as fast as possible.
106
+
107
+ This renders a set of inputs (one for _most_ columns in the database table, and one for each ActiveRecord belongs_to association), followed by a submit button:
108
+
109
+ <pre>
110
+ <% semantic_form_for @user do |form| %>
111
+ <%= form.inputs %>
112
+ <%= form.buttons %>
113
+ <% end %>
114
+ </pre>
115
+
116
+ If you want to specify the order of the fields, skip some of the fields or even add in fields that Formtastic couldn't detect, you can pass in a list of field names to @inputs@ and list of button names to @buttons@:
117
+
118
+ <pre>
119
+ <% semantic_form_for @user do |form| %>
120
+ <%= form.inputs :title, :body, :section, :categories, :created_at %>
121
+ <%= form.buttons :commit %>
122
+ <% end %>
123
+ </pre>
124
+
125
+ If you want control over the input type Formtastic uses for each field, you can expand the @inputs@ and @buttons@ blocks. This specifies the :section input should be a set of radio buttons (rather than the default select box), and that the :created_at field should be a string (rather than the default datetime selects):
126
+
127
+ <pre>
128
+ <% semantic_form_for @post do |form| %>
129
+ <% form.inputs do %>
130
+ <%= form.input :title %>
131
+ <%= form.input :body %>
132
+ <%= form.input :section, :as => :radio %>
133
+ <%= form.input :categories %>
134
+ <%= form.input :created_at, :as => :string %>
135
+ <% end %>
136
+ <% form.buttons do %>
137
+ <%= form.commit_button %>
138
+ <% end %>
139
+ <% end %>
140
+ </pre>
141
+
142
+ If you want to customize the label text, or render some hint text below the field, specify which fields are required/optional, or break the form into two fieldsets, the DSL is pretty comprehensive:
143
+
144
+ <pre>
145
+ <% semantic_form_for @post do |form| %>
146
+ <% form.inputs :name => "Basic", :id => "basic" do %>
147
+ <%= form.input :title %>
148
+ <%= form.input :body %>
149
+ <% end %>
150
+ <% form.inputs :name => "Advanced Options", :id => "advanced" do %>
151
+ <%= form.input :slug, :label => "URL Title", :hint => "Created automatically if left blank", :required => false %>
152
+ <%= form.input :section, :as => :radio %>
153
+ <%= form.input :user, :label => "Author", :label_method => :full_name, %>
154
+ <%= form.input :categories, :required => false %>
155
+ <%= form.input :created_at, :as => :string, :label => "Publication Date", :required => false %>
156
+ <% end %>
157
+ <% form.buttons do %>
158
+ <%= form.commit_button %>
159
+ <% end %>
160
+ <% end %>
161
+ </pre>
162
+
163
+
164
+ Nested forms (Rails 2.3) are also supported. You can do it in the Rails way:
165
+
166
+ <pre>
167
+ <% semantic_form_for @post do |form| %>
168
+ <%= form.inputs :title, :body, :created_at %>
169
+ <% form.semantic_fields_for :author do |author| %>
170
+ <%= author.inputs :first_name, :last_name, :name => 'Author' %>
171
+ <% end %>
172
+ <%= form.buttons %>
173
+ <% end %>
174
+ </pre>
175
+
176
+ Or the Formtastic way with the @:for@ option:
177
+
178
+ <pre>
179
+ <% semantic_form_for @post do |form| %>
180
+ <%= form.inputs :title, :body, :created_at %>
181
+ <%= form.inputs :first_name, :last_name, :for => :author, :name => "Author" %>
182
+ <%= form.buttons %>
183
+ <% end %>
184
+ </pre>
185
+
186
+ When working in has many association, you can even supply "%i" in your fieldset name that it will be properly interpolated with the child index. For example:
187
+
188
+ <pre>
189
+ <% semantic_form_for @post do |form| %>
190
+ <%= form.inputs %>
191
+ <%= form.inputs :name => 'Category #%i', :for => :categories %>
192
+ <%= form.buttons %>
193
+ <% end %>
194
+ </pre>
195
+
196
+
197
+ Customize HTML attributes for any input using the @:input_html@ option. Typically his is used to disable the input, change the size of a text field, change the rows in a textarea, or even to add a special class to an input to attach special behavior like "autogrow":http://plugins.jquery.com/project/autogrow textareas:
198
+
199
+ <pre>
200
+ <% semantic_form_for @post do |form| %>
201
+ <%= form.input :title, :input_html => { :size => 60 } %>
202
+ <%= form.input :body, :input_html => { :class => 'autogrow' } %>
203
+ <%= form.input :created_at, :input_html => { :disabled => true } %>
204
+ <%= form.buttons %>
205
+ <% end %>
206
+ </pre>
207
+
208
+ The same can be done for buttons with the @:button_html@ option:
209
+
210
+ <pre>
211
+ <% semantic_form_for @post do |form| %>
212
+ ...
213
+ <% form.buttons do %>
214
+ <%= form.commit_button :button_html => { :class => "primary" } %>
215
+ <% end %>
216
+ <% end %>
217
+ </pre>
218
+
219
+ Customize the HTML attributes for the @<li>@ wrapper around every input with the @:wrapper_html@ option hash. There's one special key in the hash (:class), which will actually _append_ your string of classes to the existing classes provided by Formtastic (like "required string error")
220
+
221
+ <pre>
222
+ <% semantic_form_for @post do |form| %>
223
+ <%= form.input :title, :wrapper_html => { :class => "important" } %>
224
+ <%= form.input :body %>
225
+ <%= form.input :description, :wrapper_html => { :style => "display:none;" } %>
226
+ ...
227
+ <% end %>
228
+ </pre>
229
+
230
+
231
+
232
+ h2. The Available Inputs
233
+
234
+ * :select (a select menu) - default for ActiveRecord associations (belongs_to, has_many, has_and_belongs_to_many)
235
+ * :check_boxes (a set of check_box inputs) - alternative to :select has_many and has_and_belongs_to_many associations
236
+ * :radio (a set of radio inputs) - alternative to :select for ActiveRecord belongs_to associations
237
+ * :time_zone (a select input) - default for :string column types with 'time_zone' in the method name
238
+ * :password (a password input) - default for :string column types with 'password' in the method name
239
+ * :text (a textarea) - default for :text column types
240
+ * :date (a date select) - default for :date column types
241
+ * :datetime (a date and time select) - default for :datetime and :timestamp column types
242
+ * :time (a time select) - default for :time column types
243
+ * :boolean (a checkbox) - default for :boolean column types
244
+ * :string (a text field) - default for :string column types
245
+ * :numeric (a text field, like string) - default for :integer, :float and :decimal column types
246
+ * :file (a file field) - default for paperclip or attachment_fu attributes
247
+ * :country (a select menu of country names) - default for :string columns named "country", requires a country_select plugin to be installed
248
+ * :hidden (a hidden field) - creates a hidden field (added for compatibility)
249
+
250
+
251
+ The documentation is pretty good for each of these (what it does, what the output is, what the options are, etc) so go check it out.
252
+
253
+ h2. Internationalization (I18n)
254
+
255
+ Formtastic got some neat I18n-features. ActiveRecord object names and attributes are, by default, taken from calling @object.human_name and @object.human_attribute_name(attr) respectively. There are a few words specific to Formtastic that can be translated. See lib/locale/en.yml for more information.
256
+
257
+ h3. Label/Hint-localization
258
+
259
+ Formtastic supports localized *labels* and *hints* using the I18n API for more advanced usage. Your forms can now be DRYer and more flexible than ever, and still fully localized. This is how:
260
+
261
+ Basic localization (labels only):
262
+
263
+ <pre>
264
+ <% semantic_form_for @post do |form| %>
265
+ <%= form.input :title %> # => :label => I18n.t('activerecord.attributes.user.title') or 'Title'
266
+ <%= form.input :body %> # => :label => I18n.t('activerecord.attributes.user.body') or 'Body'
267
+ <%= form.input :section %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
268
+ <% end %>
269
+ </pre>
270
+
271
+ *Note:* This is perfectly fine if you just want your labels to be translated using *ActiveRecord I18n attribute translations*, and you don't use input hints. But what if you do? And what if you don't want same labels in all forms?
272
+
273
+ Enhanced localization (labels and hints):
274
+
275
+ 1. Enable I18n lookups by default (@config/initializers/formtastic.rb@):
276
+
277
+ <pre>
278
+ Formtastic::SemanticFormBuilder.i18n_lookups_by_default = true
279
+ </pre>
280
+
281
+ 2. Add some cool label-translations/variants (@config/locale/en.yml@):
282
+
283
+ <pre>
284
+ en:
285
+ formtastic:
286
+ labels:
287
+ post:
288
+ title: "Choose a title..."
289
+ body: "Write something..."
290
+ hints:
291
+ post:
292
+ title: "Choose a good title for you post."
293
+ body: "Write something inspiring here."
294
+ </pre>
295
+
296
+ *Note:* We are using English here still, but you get the point.
297
+
298
+ 3. ...and now you'll get:
299
+
300
+ <pre>
301
+ <% semantic_form_for @post do |form| %>
302
+ <%= form.input :title %> # => :label => "Choose a title...", :hint => "Choose a good title for you post."
303
+ <%= form.input :body %> # => :label => "Write something...", :hint => "Write something inspiring here."
304
+ <%= form.input :section %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
305
+ <% end %>
306
+ </pre>
307
+
308
+ 4. Override I18n settings:
309
+
310
+ <pre>
311
+ <% semantic_form_for @post do |form| %>
312
+ <%= form.input :title %> # => :label => "Choose a title...", :hint => "Choose a good title for you post."
313
+ <%= form.input :body, :hint => false %> # => :label => "Write something..."
314
+ <%= form.input :section %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
315
+ <% end %>
316
+ </pre>
317
+
318
+ If I18n-lookups is disabled, i.e.:
319
+
320
+ <pre>
321
+ Formtastic::SemanticFormBuilder.i18n_lookups_by_default = false
322
+ </pre>
323
+
324
+ ...then you can enable I18n within the forms instead:
325
+
326
+ <pre>
327
+ <% semantic_form_for @post do |form| %>
328
+ <%= form.input :title, :label => true %> # => :label => "Choose a title..."
329
+ <%= form.input :body, :label => true %> # => :label => "Write something..."
330
+ <%= form.input :section, :label => true %> # => :label => I18n.t('activerecord.attributes.user.section') or 'Section'
331
+ <% end %>
332
+ </pre>
333
+
334
+ 5. Advanced I18n lookups
335
+
336
+ For more flexible forms; Formtastic find translations using a bottom-up approach taking the following variables in account:
337
+
338
+ * @model@, e.g. "post"
339
+ * @action@, e.g. "edit"
340
+ * @attribute@, e.g. "title"
341
+
342
+ ...in the following order:
343
+
344
+ 1. @formtastic.{labels,hints}.MODEL.ACTION.ATTRIBUTE@ # By model and action
345
+ 2. @formtastic.{labels,hints}.MODEL.ATTRIBUTE@ # By model
346
+ 3. @formtastic.{labels,hints}.ATTRIBUTE@ # Global default
347
+
348
+ ...which means that you can define translations like this:
349
+
350
+ <pre>
351
+ en:
352
+ formtastic:
353
+ labels:
354
+ title: "Title" # Default global value
355
+ article:
356
+ body: "Article content"
357
+ post:
358
+ new:
359
+ title: "Choose a title..."
360
+ body: "Write something..."
361
+ edit:
362
+ title: "Edit title"
363
+ body: "Edit body"
364
+ ...
365
+ </pre>
366
+
367
+ h2. ValidationReflection plugin
368
+
369
+ If you have the "ValidationReflection":http://github.com/redinger/validation_reflection plugin installed, you won't have to specify the :required option (it checks the validations on the model instead).
370
+
371
+ h2. Configuration
372
+
373
+ If you wish, put something like this in config/initializers/formtastic_config.rb:
374
+
375
+ <pre>
376
+ # Set the default text field size when input is a string. Default is 50
377
+ Formtastic::SemanticFormBuilder.default_text_field_size = 30
378
+
379
+ # Should all fields be considered "required" by default
380
+ # Defaults to true, see ValidationReflection notes below
381
+ Formtastic::SemanticFormBuilder.all_fields_required_by_default = false
382
+
383
+ # Set the string that will be appended to the labels/fieldsets which are required
384
+ # It accepts string or procs and the default is a localized version of
385
+ # '<abbr title="required">*</abbr>'. In other words, if you configure formtastic.required
386
+ # in your locale, it will replace the abbr title properly. But if you don't want to use
387
+ # abbr tag, you can simply give a string as below
388
+ Formtastic::SemanticFormBuilder.required_string = "(required)"
389
+
390
+ # Set the string that will be appended to the labels/fieldsets which are optional
391
+ # Defaults to an empty string ("") and also accepts procs (see required_string above)
392
+ Formtastic::SemanticFormBuilder.optional_string = "(optional)"
393
+
394
+ # Set the way inline errors will be displayed.
395
+ # Defaults to :sentence, valid options are :sentence, :list and :none
396
+ Formtastic::SemanticFormBuilder.inline_errors = :list
397
+
398
+ # Set the method to call on label text to transform or format it for human-friendly
399
+ # reading when formtastic is user without object. Defaults to :humanize.
400
+ Formtastic::SemanticFormBuilder.label_str_method = :titleize
401
+
402
+ # Set the array of methods to try calling on parent objects in :select and :radio inputs
403
+ # for the text inside each @<option>@ tag or alongside each radio @<input>@. The first method
404
+ # that is found on the object will be used.
405
+ # Defaults to ["to_label", "display_name", "full_name", "name", "title", "username", "login", "value", "to_s"]
406
+ Formtastic::SemanticFormBuilder.collection_label_methods = ["title_and_author", "display_name", "login", "to_s"]
407
+
408
+ # Formtastic by default renders inside li tags the input, hints and then
409
+ # errors messages. Sometimes you want the hints to be rendered first than
410
+ # the input, in the following order: hints, input and errors. You can
411
+ # customize it doing just as below:
412
+ Formtastic::SemanticFormBuilder.inline_order = [:hints, :input, :errors]
413
+
414
+ # Set the default "priority countries" to suit your user base when using :as => :country
415
+ Formtastic::SemanticFormBuilder.priority_countries = ["Australia", "New Zealand"]
416
+
417
+ # Specifies if labels/hints for input fields automatically be looked up using I18n.
418
+ # Default value: false. Overridden for specific fields by setting value to true,
419
+ # i.e. :label => true, or :hint => true (or opposite depending on initialized value)
420
+ # Formtastic::SemanticFormBuilder.i18n_lookups_by_default = false
421
+ </pre>
422
+
423
+ h2. Status
424
+
425
+ *THINGS ARE GOING TO CHANGE A BIT BEFORE WE HIT 1.0.*
426
+
427
+ It's a work in progress and a bit rough around the edges still, but I hope you try it and offer some suggestions and improvements anyway.
428
+
429
+ On the plus side, it has a comprehensive spec suite and contributions from at least ten independent developers.
430
+
431
+ "Wishlist":http://wiki.github.com/justinfrench/formtastic/wishlist on the wiki is serving as pretty good documentation for the roadmap to 1.0 and beyond right now, but I'll work on getting a real tracking system or something happening soon.
432
+
433
+
434
+ h2. Dependencies
435
+
436
+ There are none, but...
437
+
438
+ * if you have the "ValidationReflection":http://github.com/redinger/validation_reflection plugin is installed, you won't have to specify the :required option (it checks the validations on the model instead)
439
+ * if you want to use the :country input, you'll need to install the "iso-3166-country-select plugin":http://github.com/rails/iso-3166-country-select (or any other country_select plugin with the same API)
440
+ * rspec, rspec_hpricot_matchers and rcov gems (plus any of their own dependencies) are required for the test suite
441
+
442
+
443
+ h2. Compatibility
444
+
445
+ I'm only testing Formtastic with the latest Rails 2.2.x stable release, and it should be fine under Rails 2.3 as well (including nested forms). Patches are welcome to allow backwards compatibility, but I don't have the energy!
446
+
447
+
448
+
449
+ h2. What about Stylesheets?
450
+
451
+ A proof-of-concept (very much a work-in-progress) stylesheet is provided which you can include in your layout. Customization is best achieved by overriding these styles in an additional stylesheet so that the Formtastic styles can be updated without clobbering your changes.
452
+
453
+ 1. Use the generator to copy the formtastic.css and formtastic_changes.css into your public directory
454
+
455
+ <pre>
456
+ ./script/generate formtastic_stylesheets
457
+ </pre>
458
+
459
+ 2. Add both formtastic.css and formtastic_changes.css to your layout:
460
+
461
+ <pre>
462
+ <%= stylesheet_link_tag "formtastic" %>
463
+ <%= stylesheet_link_tag "formtastic_changes" %>
464
+ </pre>
465
+
466
+
467
+ h2. Contributors
468
+
469
+ Formtastic is maintained by "Justin French":http://justinfrench.com and "José Valim":http://github.com/josevalim, but it wouldn't be as awesome as it is today if it weren't for the wonderful contributions of these fine, fine coders.
470
+
471
+ * "Jeff Smick":http://github.com/sprsquish
472
+ * "Tien Dung":http://github.com/tiendung
473
+ * "Mark Mansour":http://stateofflux.com
474
+ * "Andy Pearson":http://github.com/andypearson
475
+ * "negonicrac":http://github.com/negonicrac
476
+ * "Xavier Shay":http://rhnh.net
477
+ * "Pat Allan":http://github.com/freelancing-god
478
+ * "Gareth Townsend":http://github.com/quamen
479
+ * "Sascha Hoellger":http://github.com/mitnal
480
+ * "Andrew Carpenter":http://github.com/andrewcarpenter
481
+ * "Jack Dempsey":http://github.com/jackdempsey/
482
+ * "Greg Fitzgerald":http://github.com/gregf/
483
+ * "Hector E. Gomez Morales":http://github.com/hectoregm
484
+ * "Ben Hamill":http://blog.benhamill.com/
485
+ * "Simon Chiu":http://github.com/tolatomeow
486
+ * "Bin Dong":http://github.com/dongbin
487
+
488
+
489
+ h2. Hey, join the Google group!
490
+
491
+ Please join the "Formtastic Google Group":http://groups.google.com.au/group/formtastic, especially if you'd like to talk about a new feature, or report a bug.
492
+
493
+
494
+ h2. Project Info
495
+
496
+ Formtastic is hosted on Github: http://github.com/justinfrench/formtastic/, where your contributions, forkings, comments and feedback are greatly welcomed.
497
+
498
+
499
+ Copyright (c) 2007-2008 Justin French, released under the MIT license.