. (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,20 +402,11 @@ function Timeline({
{!!headerEnd && headerEnd} {!!headerEnd && headerEnd}
</div> </div>
</div> </div>
{items.length > 0 && {showNewPostsIndicator && (
uiState !== 'loading' &&
// !hiddenUI &&
showNew && (
<button <button
class="updates-button shiny-pill" class="updates-button shiny-pill"
type="button" type="button"
onClick={() => { onClick={handleLoadNewPosts}
loadItems(true);
scrollableRef.current?.scrollTo({
top: 0,
behavior: 'smooth',
});
}}
> >
<Icon icon="arrow-up" /> New posts <Icon icon="arrow-up" /> New posts
</button> </button>