Created
February 10, 2011 01:08
-
-
Save reu/819726 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 FormHelper | |
def nested_form_for(object, *args, &block) | |
concat form_for(object, *(args << { :builder => NestedFormBuilder }), &block) | |
execute_after_nested_form_callbacks | |
end | |
def execute_after_nested_form_callbacks | |
@after_nested_form_callbacks ||= [] | |
@after_nested_form_callbacks.inject(String.new.html_safe) do |output, callback| | |
output << callback.call | |
end | |
end | |
def after_nested_form(association, &block) | |
@associations ||= [] | |
@after_nested_form_callbacks ||= [] | |
unless @associations.include? association | |
@associations << association | |
@after_nested_form_callbacks << block | |
end | |
end | |
class NestedFormBuilder < ActionView::Helpers::FormBuilder | |
def fields_for(record_or_name_or_array, *args, &block) | |
options = args.extract_options! | |
options[:builder] = NestedFormBuilder | |
super(record_or_name_or_array, *(args << options), &block) | |
end | |
alias :nested_fields_for :fields_for | |
def link_to_add(association, name = nil) | |
name ||= I18n.t 'helpers.nesting.add', :model => association.to_s.classify.constantize.model_name.human | |
@fields ||= {} | |
@template.after_nested_form(association) do | |
model_object = object.class.reflect_on_association(association).klass.new | |
@template.content_tag :div, :id => "#{association}_fields_blueprint", :style => 'display: none' do | |
fields_for(association, model_object, :child_index => "new_#{association}", :builder => NestedFormBuilder, &@fields[association]) | |
end | |
end | |
@template.link_to(name, 'javascript:void(0)', :class => 'add_nested_fields', :'data-association' => association) | |
end | |
def link_to_remove(name = nil) | |
name ||= I18n.t('helpers.nesting.remove', :model => object.class.model_name.human) | |
hidden_field(:_destroy) + @template.link_to(name, 'javascript:void(0)', :class => 'remove_nested_fields') | |
end | |
def fields_for_with_nested_attributes(association, args, block) | |
@fields ||= {} | |
@fields[association] = block | |
super | |
end | |
def fields_for_nested_model(name, association, args, block) | |
@template.content_tag :div, :class => 'fields' do | |
super | |
end | |
end | |
end | |
end |
This file contains hidden or 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
jQuery(function($) { | |
$('form a.add_nested_fields').live('click', function() { | |
var assoc = $(this).attr('data-association'); | |
var content = $('#' + assoc + '_fields_blueprint').html(); | |
var context = ($(this).closest('.fields').find('input:first').attr('name') || '').replace(new RegExp('\[[a-z]+\]$'), ''); | |
if (context) { | |
var parent_names = context.match(/[a-z_]+_attributes/g) || []; | |
var parent_ids = context.match(/[0-9]+/g); | |
for(i = 0; i < parent_names.length; i++) { | |
if(parent_ids[i]) { | |
content = content.replace( | |
new RegExp('(\\[' + parent_names[i] + '\\])\\[.+?\\]', 'g'), | |
'$1[' + parent_ids[i] + ']' | |
) | |
} | |
} | |
} | |
var regexp = new RegExp('new_' + assoc, 'g'); | |
var new_id = new Date().getTime(); | |
content = content.replace(regexp, new_id); | |
$(this).before(content); | |
return false; | |
}); | |
$('form a.remove_nested_fields').live('click', function() { | |
var hidden_field = $(this).prev('input[type=hidden]')[0]; | |
if (hidden_field) { | |
hidden_field.value = '1'; | |
} | |
$(this).closest('.fields').hide(); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment