2023-03-07 19:32:21 +00:00
|
|
|
import type { RouteLocationRaw } from 'vue-router'
|
|
|
|
import { useMagicSequence } from '~/composables/magickeys'
|
2024-02-24 19:28:56 +00:00
|
|
|
import { currentUser, getInstanceDomain } from '~/composables/users'
|
2023-03-07 19:32:21 +00:00
|
|
|
|
|
|
|
export default defineNuxtPlugin(({ $scrollToTop }) => {
|
|
|
|
const keys = useMagicKeys()
|
|
|
|
const router = useRouter()
|
2023-10-13 07:13:37 +00:00
|
|
|
const i18n = useNuxtApp().$i18n
|
2023-03-07 19:32:21 +00:00
|
|
|
|
|
|
|
// disable shortcuts when focused on inputs (https://vueuse.org/core/usemagickeys/#conditionally-disable)
|
|
|
|
const activeElement = useActiveElement()
|
|
|
|
|
|
|
|
const notUsingInput = computed(() =>
|
|
|
|
activeElement.value?.tagName !== 'INPUT'
|
|
|
|
&& activeElement.value?.tagName !== 'TEXTAREA'
|
|
|
|
&& !activeElement.value?.isContentEditable,
|
|
|
|
)
|
|
|
|
const isAuthenticated = currentUser.value !== undefined
|
|
|
|
|
|
|
|
const navigateTo = (to: string | RouteLocationRaw) => {
|
|
|
|
closeKeyboardShortcuts()
|
2023-03-21 04:20:36 +00:00
|
|
|
;($scrollToTop as () => void)() // is this really required?
|
2023-03-07 19:32:21 +00:00
|
|
|
router.push(to)
|
|
|
|
}
|
|
|
|
|
|
|
|
whenever(logicAnd(notUsingInput, keys['?']), toggleKeyboardShortcuts)
|
|
|
|
|
|
|
|
const defaultPublishDialog = () => {
|
|
|
|
const current = keys.current
|
|
|
|
// exclusive 'c' - not apply in combination
|
|
|
|
// TODO: bugfix -> create PR for vueuse, reset `current` ref on window focus|blur
|
|
|
|
if (!current.has('shift') && !current.has('meta') && !current.has('control') && !current.has('alt')) {
|
|
|
|
// TODO: is this the correct way of using openPublishDialog()?
|
|
|
|
openPublishDialog('dialog', getDefaultDraft())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, keys.c), defaultPublishDialog)
|
|
|
|
|
2024-02-24 19:28:56 +00:00
|
|
|
const instanceDomain = currentInstance.value ? getInstanceDomain(currentInstance.value) : 'm.webtoo.ls'
|
2023-03-07 19:32:21 +00:00
|
|
|
whenever(logicAnd(notUsingInput, useMagicSequence(['g', 'h'])), () => navigateTo('/home'))
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, useMagicSequence(['g', 'n'])), () => navigateTo('/notifications'))
|
2024-02-24 19:28:56 +00:00
|
|
|
// TODO: always overridden by 'c' (compose) shortcut
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, useMagicSequence(['g', 'c'])), () => navigateTo('/conversations'))
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, useMagicSequence(['g', 'f'])), () => navigateTo('/favourites'))
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, useMagicSequence(['g', 'b'])), () => navigateTo('/bookmarks'))
|
|
|
|
whenever(logicAnd(notUsingInput, useMagicSequence(['g', 'e'])), () => navigateTo(`/${instanceDomain}/explore`))
|
|
|
|
whenever(logicAnd(notUsingInput, useMagicSequence(['g', 'l'])), () => navigateTo(`/${instanceDomain}/public/local`))
|
|
|
|
whenever(logicAnd(notUsingInput, useMagicSequence(['g', 't'])), () => navigateTo(`/${instanceDomain}/public`))
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, useMagicSequence(['g', 'i'])), () => navigateTo('/lists'))
|
|
|
|
whenever(logicAnd(notUsingInput, useMagicSequence(['g', 's'])), () => navigateTo('/settings'))
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, useMagicSequence(['g', 'p'])), () => navigateTo(`/${instanceDomain}/@${currentUser.value?.account.username}`))
|
|
|
|
whenever(logicAnd(notUsingInput, keys['/']), () => navigateTo('/search'))
|
2023-03-07 19:32:21 +00:00
|
|
|
|
|
|
|
const toggleFavouriteActiveStatus = () => {
|
|
|
|
// TODO: find a better solution than clicking buttons...
|
|
|
|
document
|
|
|
|
.querySelector<HTMLElement>('[aria-roledescription=status-details]')
|
2023-10-13 07:13:37 +00:00
|
|
|
?.querySelector<HTMLElement>(`button[aria-label=${i18n.t('action.favourite')}]`)
|
2023-03-07 19:32:21 +00:00
|
|
|
?.click()
|
|
|
|
}
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, keys.f), toggleFavouriteActiveStatus)
|
|
|
|
|
|
|
|
const toggleBoostActiveStatus = () => {
|
|
|
|
// TODO: find a better solution than clicking buttons...
|
|
|
|
document
|
|
|
|
.querySelector<HTMLElement>('[aria-roledescription=status-details]')
|
2023-10-13 07:13:37 +00:00
|
|
|
?.querySelector<HTMLElement>(`button[aria-label=${i18n.t('action.boost')}]`)
|
2023-03-07 19:32:21 +00:00
|
|
|
?.click()
|
|
|
|
}
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, keys.b), toggleBoostActiveStatus)
|
2024-02-24 14:46:54 +00:00
|
|
|
|
|
|
|
const showNewItems = () => {
|
|
|
|
// TODO: find a better solution than clicking buttons...
|
|
|
|
document
|
|
|
|
?.querySelector<HTMLElement>('button#elk_show_new_items')
|
|
|
|
?.click()
|
|
|
|
}
|
|
|
|
whenever(logicAnd(isAuthenticated, notUsingInput, keys['.']), showNewItems)
|
2023-03-07 19:32:21 +00:00
|
|
|
})
|