mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
48 lines
1.7 KiB
Ruby
48 lines
1.7 KiB
Ruby
class AngularFormBuilder < ActionView::Helpers::FormBuilder
|
|
def ng_fields_for(record_name, *_args)
|
|
raise "Nested ng_fields_for is not yet supported" if @fields_for_record_name.present?
|
|
@fields_for_record_name = record_name
|
|
yield self
|
|
@fields_for_record_name = nil
|
|
end
|
|
|
|
def ng_text_field(method, options = {})
|
|
value = "{{ #{angular_model(method)} }}"
|
|
options.reverse_merge!('id' => angular_id(method))
|
|
|
|
@template.text_field_tag angular_name(method), value, options
|
|
end
|
|
|
|
def ng_hidden_field(method, _options = {})
|
|
value = "{{ #{angular_model(method)} }}"
|
|
|
|
@template.hidden_field_tag angular_name(method), value, id: angular_id(method)
|
|
end
|
|
|
|
def ng_select(method, choices, angular_field, options = {})
|
|
options.reverse_merge!('id' => angular_id(method), 'ng-model' => angular_model(method).to_s)
|
|
|
|
@template.select_tag angular_name(method), @template.ng_options_for_select(choices, angular_field), options
|
|
end
|
|
|
|
def ng_collection_select(method, collection, value_method, text_method, angular_field, options = {})
|
|
options.reverse_merge!('id' => angular_id(method), 'ng-model' => angular_model(method).to_s)
|
|
|
|
@template.select_tag angular_name(method), @template.ng_options_from_collection_for_select(collection, value_method, text_method, angular_field), options
|
|
end
|
|
|
|
private
|
|
|
|
def angular_name(method)
|
|
"#{@object_name}[#{@fields_for_record_name}_attributes][{{ $index }}][#{method}]"
|
|
end
|
|
|
|
def angular_id(method)
|
|
"#{@object_name}_#{@fields_for_record_name}_attributes_{{ $index }}_#{method}"
|
|
end
|
|
|
|
def angular_model(method)
|
|
"#{@object.public_send(@fields_for_record_name).first.class.to_s.underscore}.#{method}"
|
|
end
|
|
end
|