TMP: feat: scroll to top after loading new items by `.` shortcut key but this is not working when `showNewItems()` takes time

shuuji3/feat/scroll-to-top-after-dot-key
TAKAHASHI Shuuji 2024-04-23 23:49:14 +09:00
rodzic 8ad05dfd47
commit da3b134d18
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F15C887632129F5E
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -75,5 +75,8 @@ export default defineNuxtPlugin(({ $scrollToTop }) => {
?.querySelector<HTMLElement>('button#elk_show_new_items')
?.click()
}
whenever(logicAnd(isAuthenticated, notUsingInput, keys['.']), showNewItems)
whenever(logicAnd(isAuthenticated, notUsingInput, keys['.']), () => {
showNewItems()
;($scrollToTop as () => void)()
})
})