. (period) keyboard shortcut = load new posts

This commit is contained in:
Lim Chee Aun 2024-01-07 14:47:17 +08:00
parent 96387c8abb
commit ecd5c7b91e
2 changed files with 28 additions and 18 deletions

View file

@ -71,6 +71,10 @@ export default memo(function KeyboardShortcutsHelp() {
</> </>
), ),
}, },
{
action: 'Load new posts',
keys: <kbd>.</kbd>,
},
{ {
action: 'Open post details', action: 'Open post details',
keys: ( keys: (

View file

@ -204,6 +204,21 @@ function Timeline({
} }
}); });
const showNewPostsIndicator =
items.length > 0 && uiState !== 'loading' && showNew;
const handleLoadNewPosts = useCallback(() => {
loadItems(true);
scrollableRef.current?.scrollTo({
top: 0,
behavior: 'smooth',
});
}, [loadItems]);
const dotRef = useHotkeys('.', () => {
if (showNewPostsIndicator) {
handleLoadNewPosts();
}
});
// const { // const {
// scrollDirection, // scrollDirection,
// nearReachStart, // nearReachStart,
@ -387,24 +402,15 @@ function Timeline({
{!!headerEnd && headerEnd} {!!headerEnd && headerEnd}
</div> </div>
</div> </div>
{items.length > 0 && {showNewPostsIndicator && (
uiState !== 'loading' && <button
// !hiddenUI && class="updates-button shiny-pill"
showNew && ( type="button"
<button onClick={handleLoadNewPosts}
class="updates-button shiny-pill" >
type="button" <Icon icon="arrow-up" /> New posts
onClick={() => { </button>
loadItems(true); )}
scrollableRef.current?.scrollTo({
top: 0,
behavior: 'smooth',
});
}}
>
<Icon icon="arrow-up" /> New posts
</button>
)}
</header> </header>
{!!timelineStart && ( {!!timelineStart && (
<div <div