-
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
プラクティスの進捗を % でなく、完了プラクティスの個数 / プラクティス全体の個数 として表示する #3191
Conversation
d1cd8f3
to
49870b8
Compare
@konaga-k お時間ある際にレビューお願いいたします🙏 |
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です
- NITSの箇所は修正お願いします
- MAYの箇所はこのPRで直すべきか迷うので対応おまかせします。対応していいか分からなかったら、お手数ですが駒形さんに確認してください
app/decorators/user_decorator.rb
Outdated
def cached_completed_fraction | ||
Rails.cache.fetch "/model/user/#{id}/completed_fraction" do | ||
completed_fraction | ||
end | ||
end |
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.
[感想] 進捗度ってキャッシュを使ったほうが良いんですね
文脈はわからないですが、過去に専用のPRを出して対応しているくらいなので必要な処理なんだなあという理解です
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.
自分もキャッシュを使うべきかはわからなくて申し訳ないんですが、パーセントの進捗度はキャッシュしていたことを考えると、分数の進捗度もキャッシュしたほうが良い可能性はありますね
後に @komagata さんにレビューしてもらうと思うんですが、パーセントの進捗度キャッシュを実装していたみたいなので、どういう背景でキャッシュしていたのか含めて、分数でもキャッシュが必要か確認してみるといいと思います
(レビュータイミングでコメントしてもらえることを期待して駒形さんにメンションを付けてみる)
あとdescriptionに貼ってある変更前/変更後の画像なのですが、差分が明確になるように同じ進捗率で揃えてもらいたいです🙏 |
レビューありがとうございました🙇♂️ 修正していきます! |
49870b8
to
86aef64
Compare
@konaga-k 修正しましたので、お時間ある際に再度レビューお願いいたします🙏 |
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.
@rjtt17
コメント返しました〜
SHOULDは対応お願いします
MAYは引き続き対応するかお任せします(既存のテストの変更になるため)
app/decorators/user_decorator.rb
Outdated
def cached_completed_fraction | ||
Rails.cache.fetch "/model/user/#{id}/completed_fraction" do | ||
completed_fraction | ||
end | ||
end |
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 さんにレビューしてもらうと思うんですが、パーセントの進捗度キャッシュを実装していたみたいなので、どういう背景でキャッシュしていたのか含めて、分数でもキャッシュが必要か確認してみるといいと思います
(レビュータイミングでコメントしてもらえることを期待して駒形さんにメンションを付けてみる)
86aef64
to
9272fd0
Compare
@konaga-k ■修正内容の詳細は以下です。
|
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.
@@ -339,15 +339,13 @@ def away? | |||
end | |||
|
|||
def completed_percentage |
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.
ピンク色のプログレスバーを表示する計算でまだ必要になると思ってたんですがどうでしょう
@rjtt17
実はいらなかったりします?
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
CC: @konaga-k
ご確認ありがとうございました🙇♂️
プログレスバーを表示している、app/views/users/practices/_completed_practices_progress.html.slim やapp/javascript/user-practice-progress.vue 等でパーセント使っているので、残しておいたのですが、不要でしょうか?
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.
@rjtt17 そちらを見逃していました。それだったら問題ございません〜
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 ご確認ありがとうございました🙇♂️
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: 3150
概要:プラクティスの進捗について、
%
でなく、完了プラクティスの個数 / プラクティス全体の個数
として表示するように変更しました変更前
変更後