これは、以下の私のオリジナルよりも優れたソリューションです。
コードから:
# form_for @user do |f|
# f.collection_radio_buttons(
# :options, [[true, 'Yes'] ,[false, 'No']], :first, :last
# ) do |b|
# b.label { b.radio_button + b.text }
# end
# end
これがあなたが探しているものだと思います:
<%= f.collection_radio_buttons(
:gender, [['Male', 'Male'], ['Male', 'Male']], :first, :last
) do |b|
b.label { b.text + b.radio_button }
end
%>
そこにあるような他のヘルパーを追加することもできimage_tag
ます:
<%= f.collection_radio_buttons(
:gender, [['Male', 'Male'], ['Male', 'Male']], :first, :last
) do |b|
b.label { image_tag("#{b.text}.png") + b.radio_button }
end
%>
このソリューションは、通常のカスタム コンポーネントではありません。このカスタム コンポーネントは、通常の CollectionInput クラスではなく、CollectRadioButtonsInput から継承します。関連する2つの方法を変更しました。
中身app/inputs/radio_buttons_left_label_input.rb
class RadioButtonsLeftLabelInput < SimpleForm::Inputs::CollectionRadioButtonsInput
def input
label_method, value_method = detect_collection_methods
@builder.send("collection_radio_buttons",
attribute_name, collection, value_method, label_method,
input_options, input_html_options, &collection_block_for_nested_boolean_style
)
end
protected
def build_nested_boolean_style_item_tag(collection_builder)
collection_builder.text.html_safe + collection_builder.radio_button.html_safe
end
end
こんな感じで使えます
<%= form.input :gender,
:as => :radio_buttons_left_label,
:collection => %w[Female Male]
%>