Extract method in translatable builder

This way we fix the rubocop warning for line too long and make the code
a bit easier to read.
This commit is contained in:
Javi Martín
2018-10-15 17:25:24 +02:00
parent f1ccdb87b1
commit 0505028d77

View File

@@ -9,7 +9,7 @@ module TranslatableFormHelper
def translatable_fields(&block)
@object.globalize_locales.map do |locale|
Globalize.with_locale(locale) do
fields_for(:translations, translation_for(locale), builder: TranslationsFieldsBuilder) do |translations_form|
fields_for_translation(translation_for(locale)) do |translations_form|
@template.content_tag :div, translations_options(translations_form.object, locale) do
@template.concat translations_form.hidden_field(
:_destroy,
@@ -27,6 +27,12 @@ module TranslatableFormHelper
private
def fields_for_translation(translation, &block)
fields_for(:translations, translation, builder: TranslationsFieldsBuilder) do |f|
yield f
end
end
def translation_for(locale)
existing_translation_for(locale) || new_translation_for(locale)
end