-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix(frontend): 連合一覧等のページネーションが壊れていたのを修正 #14439
fix(frontend): 連合一覧等のページネーションが壊れていたのを修正 #14439
Conversation
scrollRemove.value = (props.pagination.reversed ? onScrollBottom : onScrollTop)(contentEl.value, executeQueue, TOLERANCE); | ||
scrollRemove.value = props.pagination.reversed | ||
? onScrollBottom(contentEl.value, executeQueue, TOLERANCE) | ||
: onScrollTop(contentEl.value, (topVisible) => { if (topVisible) executeQueue(); }, TOLERANCE); |
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.
上から下に向かってスクロールするときは発動させず、下から上に向かってスクロールしたときに発動するようにしています。
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #14439 +/- ##
============================================
- Coverage 41.47% 19.48% -22.00%
============================================
Files 1545 714 -831
Lines 197945 100663 -97282
Branches 3568 998 -2570
============================================
- Hits 82104 19612 -62492
+ Misses 115247 80506 -34741
+ Partials 594 545 -49 ☔ View full report in Codecov by Sentry. |
scroll.tsがfrontend-sharedに移動したので書き直す必要あり |
やるか |
コンフリクト解消 |
🙏🏻 |
* fix * fix * fix CHANGELOG.md * 開発環境以外でログが出ないように --------- Co-authored-by: kakkokari-gtyih <[email protected]>
What
MkPaginationを用いて複数の項目を横に並べるような画面にて、無限スクロールが上手く働かないケースがある現象を修正しました。
→連続でコールバックしないように処置を施した
→offsetとして分けておく必要はなさそうなのでitems.value.sizeを使うようにした
Why
fix #12766
fix #11449
Additional info (optional)
実際にローカルと自鯖にて動作確認
Checklist