私の見解では、次のコードがあります。
# panel.html.erb
<% if content.content_type == "image" && content.content_image_url =~ URI::ABS_URI %>
<%= image_tag content.content_image.pinboard_thumb %>
<% elsif content.content_image? == false && content.content_value =~ URI::ABS_URI %>
<%= image_tag content.content_value %>
<% else %>
<%= auto_link content.content_value %>
<% end %>
このロジックをifelseブロックからどこに移動すればよいかを考えています。そのRailsWayを行う方法。それをヘルパーに移動しますか?
またはより良い方法ですか?以下のコードは機能していません。