While I was doing this I thought that it would be useful to get this, and other bits of code in a place that I can easily refer to, instead of having to remember in which project I've used what. This is the reasoning behind this post.
Bare in mind that this is not a post about life changing bits of code, but rather bits of code that I need now and then and that are easier to just copy&paste&edit than to have to rewrite from scratch. Some of these bits can be easily found in different websites, but having them here will make my life easier than having to search again. I'll make sure I'll refer to the websites that I've used.
So these first bits of code are meant to build a form with nested attributes.
Imagine that you have a model named Content that has many Attachments and when you are adding or editing a content, you want to be able to manage that content's attachments. This allows you to easily do it.
This code uses Rails accepts_nested_attributes_for and then it manages the different attachments with javascript methods (using jQuery framework), allowing you to add, remove and edit them accordingly.
The Content model:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Content < ActiveRecord::Base | |
has_many :attachments | |
accepts_nested_attributes_for :attachments, :allow_destroy => true | |
end |
The Attachment model (notice the accepts_nested_attributes_for method):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Attachment < ActiveRecord::Base | |
belongs_to :content | |
end |
The ApplicationHelper, with the methods used in the views:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ApplicationHelper | |
def link_to_remove_fields(name, f) | |
f.hidden_field(:_destroy) + link_to_function(name, "remove_fields(this)", :class => "btn remove danger") | |
end | |
def link_to_add_fields(name, f, association) | |
new_object = f.object.class.reflect_on_association(association).klass.new | |
fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder| | |
render(association.to_s.singularize + "_fields", :f => builder) | |
end | |
link_to_function(name, "add_fields(this, '#{association}', '#{escape_javascript(fields)}')", :class => "btn") | |
end | |
end |
Part of the Content form view (notice the use of the method fields_for, and the helper method link_to_add_fields):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- other form code --> | |
<div class="attachments"> | |
<%= f.fields_for :attachments do |attachment_form| %> | |
<%= render 'attachment_fields', :f => attachment_form %> | |
<% end %> | |
</div> | |
<%= link_to_add_fields "Attach a file or an image", f, :attachments %><br /> | |
<!-- other form code --> |
The attachment_fields partial (notice the use of the helper method link_to_remove_field):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="attachment fields"> | |
<%= f.label :caption %> | |
<%= f.file_field :document %> | |
<%= link_to_remove_fields "remove", f %> | |
</div> |
And the javascript methods (notice that if the position of the elements in the attachment_fields partial changes this code might need to be updated):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function remove_fields(link) { | |
$(link).prev("input[type=hidden]").val("1"); | |
$(link).closest(".fields").hide(); | |
} | |
function add_fields(link, association, content) { | |
var new_id = new Date().getTime(); | |
var regexp = new RegExp("new_" + association, "g") | |
$("div.attachments").append(content.replace(regexp, new_id)); | |
} |
These bits of code are based on (or were copied from):
No comments:
Post a Comment