Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

全てのタグを全てのタブで表示するため、コントローラーから全てのタグを渡すように変更 #5488

Merged
merged 2 commits into from
Sep 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/controllers/questions_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def index
Question.all
end
@tag = ActsAsTaggableOn::Tag.find_by(name: params[:tag])
@tags = questions.all_tags
@tags = Question.all.all_tags

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙏ご参考まで🙏

ビュー側でもQuestion.all.all_tagsが参照されてコントローラーと重複しているので
コントローラーで定義した@tagsをview側でも使ってあげるのはいかがでしょうか✨

👇app/views/questions/index.html.slim

  • 現在
    image

  • ご提案
    image

Copy link
Contributor Author

@yuki-snow1823 yuki-snow1823 Sep 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@pachikuriii
お疲れ様です。

スマートに変更されてますね〜✨🙌!わたしの環境でも動作確認ばっちりできました。

こういった一言、非常に嬉しかったです。色々考えてから一番最小限に変更可能で、影響の少なさを考えた結果ここだけ変えれば良さそうかなと思った次第です。自分もこういう一言心がけようと思いました!

何かの意図があってslimに直接Question.allのように記載した可能性もありますが、自分が見た限りは動作確認して問題なさそうだったので、再レビューお願いします。

こちらのコミットで修正しました。
#5488

questions = params[:practice_id].present? ? questions.where(practice_id: params[:practice_id]) : questions
questions = questions.tagged_with(params[:tag]) if params[:tag]
@questions = questions
Expand Down
2 changes: 1 addition & 1 deletion app/views/questions/index.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ header.page-header
| タグ一覧
.page-tags-nav__body
ul.page-tags-nav__items
- Question.all.all_tags.each do |tag|
- @tags.each do |tag|
- if tag.present?
li.page-tags-nav__item
= link_to tag.name, questions_tag_path(tag.name), class: 'page-tags-nav__item-link'