I'm a little stuck here with a conceptual issue. Assume following [abstracted] setup for Post, Tag, and User:
Post belongs_to Tag
Tag has_many Posts
User has_many Tags,
has_many Posts
A user can only tag a post with one of his associated tags.
In the new post form view, I now have following options for selecting a tag:
f.collection_select :tag_id, current_user.tags, ...f.collection_select :tag_id, @tags,and in the controller's new action:@tags = current_user.tags
Question: What is the conceptually correct option?
From an MVC perspective, I definitely tend towards using the second option. It does not seem right that the view knows that the tags it should render in the collection_select are associated to a user (even more specific, the current user!).
However, in the official api documentation for collection_select and some other tutorials around the web I see something like this:
collection_select(:post, :author_id, Author.all, ...)
which clearly favors the first option. On the pro-site of this approach, I do not need to redefine the @tags in the create action of the controller in case the post's save action fails and I want to render the new action again.
Thank you for your suggestions in advance.