-
Notifications
You must be signed in to change notification settings - Fork 71
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
Q&A個別ページに同プラクティス関連Q&A一覧を追加する #6135
Conversation
@machida こちらのPR、見た目以外の機能ができたのでデザインの追加をお願いします!! |
@futa4095 デザイン了解ですー |
6cbbf04
to
3555bc9
Compare
@futa4095 デザイン入れました!最新の main を取り込んだので手元で、 git pull --rebase origin feature/add-category-listing-to-question-page をお願いしますー |
@peno022 レビューお願いしたいです!! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
レビュー依頼ありがとうございます!
動作は問題なかったです🙋♀️
2点コメントしましたので、確認お願いします〜!
footer.page-nav__footer | ||
= link_to questions_path(practice_id: @question.practice), | ||
class: 'page-nav__footer-link' do | ||
| 全て見る |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issueの町田さんとの確認内容の中で記載されていた「もっと見る」の文言から、「全て見る」の文言に変更した理由はありますか?
一般的には「もっと見る」の文言のほうが見る機会が多いかな?と思ったのと、遷移先ページでページネーションがあり必ず全件見られるわけではないので、気になりました。
(必ず修正すべきという意味ではなく、意図があればまずお聞きしたいなという感じです! もし特に意図がなければ「もっと見る」でいいのかなとは思いました。)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
町田さんにデザインを入れてもらった中で変更されてました。
Docsが「全て見る」になっていて、Q&Aもそれと合わせたのだと思っています。
app/views/questions/show.html.slim
Outdated
- @practice_questions.each do |question| | ||
li.page-nav__item(class="#{@question == question ? 'is-current' : ''}") | ||
= link_to question_path(question), class: 'page-nav__item-link has-metas' do | ||
.page-nav__item-link-inner | ||
.page-nav__item-header | ||
- unless question.correct_answer | ||
.a-badge.is-danger.is-xs | ||
| 未解決 | ||
.page-nav__item-title | ||
= question.title | ||
.page-nav-metas | ||
.page-nav-metas__item | ||
= "公開:#{l question.published_at}" | ||
.page-nav-metas__item | ||
= "回答・コメント(#{question.answers.count})" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issueの会話にて、表示項目は
ユーザー名
作成日時
解決済みであるか
回答コメント数
とのことなので、ユーザー名の表示追加が必要かと思いました!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
デザイン依頼する前はあったんですが、戻ってきたらなくなっていました。
不要だったので消したのかと思いましたが、問い合わせた方が良いのでしょうか。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@futa4095
ご回答ありがとうございます!
町田さんのコミットのdiffだけ別途確認というふうにしなかったので、色々背景分からず質問しておりました🙏
意図したものであれば問題ないと思いますので、Approveします!
@peno022 Approveありがとうございます!!!!
背景がわかるようになっておらず申し訳ありませんでした! |
@komagata Approveいただきましたのでレビューお願いします!! |
app/views/questions/show.html.slim
Outdated
|
||
ul.page-nav__items | ||
- @practice_questions.each do |question| | ||
li.page-nav__item(class="#{@question == question ? 'is-current' : ''}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この辺り、他でも使いそうなのでpartialにしておくと良いかもです〜
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@komagata
すいません、確認させてください
ulタグのリスト部分を丸ごとpartialにするのでしょうか?
それともliタグの行の部分をpartialにするべきでしょうか?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@futa4095 ul(Q&A全体)がいいかな〜と思います
8d6da63
to
9a84752
Compare
@komagata 一覧部分をpartialにしました!再度レビューお願いします! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認させて頂きました。OKです〜🙆♂️
Issue
概要
Q&A個別ページに表示している質問と同じプラクティスの質問一覧を追加しました。
変更確認方法
feature/add-category-listing-to-question-page
をローカルに取り込むrails s
でローカル環境を立ち上げるhttp://localhost:3000/questions
にアクセステストの質問40
など)をクリックしQ&A個別ページを表示Screenshot
変更前
変更後