-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Scroll to selected chapter #18497
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
Merged
ornicar
merged 10 commits into
lichess-org:master
from
johndoknjas:scroll-to-selected-chapter
Oct 30, 2025
Merged
Scroll to selected chapter #18497
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
c050eba
Scroll to a chapter after selecting it, if it is currently not in view.
johndoknjas d64afa8
Misc unimportant changes.
johndoknjas 31cad91
Scroll to the active chapter (if needed) on page load as well.
johndoknjas c5dc912
Fix existing code rather than writing new stuff.
johndoknjas f08d656
formatting
johndoknjas bb93703
Merge branch 'master' into scroll-to-selected-chapter
johndoknjas 65253ed
Undo changes to scrolling in `common.ts`, and instead just add `posit…
johndoknjas 9645e81
Merge remote-tracking branch 'origin/scroll-to-selected-chapter' into…
johndoknjas ef37f19
Merge branch 'master' into scroll-to-selected-chapter
ornicar eaf4cdc
Apply PR feedback.
johndoknjas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -167,14 +167,19 @@ export function view(ctrl: StudyCtrl): VNode { | |
| const canContribute = ctrl.members.canContribute(), | ||
| current = ctrl.currentChapter(); | ||
| function update(vnode: VNode) { | ||
| const isChapterObscured = (study_list: HTMLElement, chapter: HTMLElement): boolean => { | ||
|
||
| const c = chapter.getBoundingClientRect(), | ||
| l = study_list.getBoundingClientRect(); | ||
| return c.top < l.top || c.bottom > l.bottom; | ||
| }; | ||
| const newCount = ctrl.chapters.list.size(), | ||
| vData = vnode.data!.li!, | ||
| el = vnode.elm as HTMLElement; | ||
| if (vData.count !== newCount) { | ||
| if (current.id !== ctrl.chapters.list.first().id) scrollToInnerSelector(el, '.active'); | ||
| } else if (vData.currentId !== ctrl.data.chapter.id) { | ||
| vData.currentId = ctrl.data.chapter.id; | ||
| scrollToInnerSelector(el, '.active'); | ||
| if (isChapterObscured(el, el.querySelector('.active')!)) scrollToInnerSelector(el, '.active'); | ||
| } | ||
| vData.count = newCount; | ||
| if (canContribute && newCount > 1 && !vData.sortable) { | ||
|
|
@@ -207,11 +212,8 @@ export function view(ctrl: StudyCtrl): VNode { | |
| update(vnode); | ||
| }, | ||
| postpatch(old, vnode) { | ||
| const scrollTop = (old.elm as HTMLElement).scrollTop; | ||
| vnode.data!.li = old.data!.li; | ||
| update(vnode); | ||
| if (old.children?.length === vnode.children?.length) | ||
| (vnode.elm as HTMLElement).scrollTop = scrollTop; | ||
| }, | ||
| destroy: vnode => { | ||
| const sortable: Sortable = vnode.data!.li!.sortable; | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
naming conventions
studyListThere 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.
also it's a list of chapters