Ever wondered when to use a partial vs a component? As usual, it depends but I generally fall into one of two camps on this topic:
Button
, Panel
, and Modal
components which would be used in a posts/_post.html.erb
partial.<!-- app/views/posts/index.html.erb -->
<%= render partial: "posts/post", collection: @posts %>
<!-- app/views/posts/_post.html.erb -->
<%= render Posts::CardComponent.new(post) %>
I haven’t yet decided which option is the silver bullet. How about yourself? How do you organize your views?