Create global keyboard shortcut handler (#10145)
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
import React from 'react'
|
||||
import {useLingui} from '@lingui/react/macro'
|
||||
import {
|
||||
HotkeysProvider,
|
||||
useHotkeys,
|
||||
useHotkeysContext,
|
||||
} from 'react-hotkeys-hook'
|
||||
|
||||
import {useOpenComposer} from '#/lib/hooks/useOpenComposer'
|
||||
import {emitFocusSearch} from '#/state/events'
|
||||
import {useSession} from '#/state/session'
|
||||
|
||||
enum Hotkeys {
|
||||
OPEN_COMPOSER = 'n',
|
||||
FOCUS_SEARCH = 'slash',
|
||||
}
|
||||
|
||||
export function Provider({children}: React.PropsWithChildren<unknown>) {
|
||||
return (
|
||||
<HotkeysProvider initiallyActiveScopes={['global']}>
|
||||
<KeyboardShortcuts>{children}</KeyboardShortcuts>
|
||||
</HotkeysProvider>
|
||||
)
|
||||
}
|
||||
|
||||
export {useHotkeysContext}
|
||||
|
||||
function KeyboardShortcuts({children}: React.PropsWithChildren<unknown>) {
|
||||
useKeyboardShortcuts()
|
||||
return children
|
||||
}
|
||||
|
||||
function useKeyboardShortcuts() {
|
||||
const {openComposer} = useOpenComposer()
|
||||
const {hasSession} = useSession()
|
||||
const {t: l} = useLingui()
|
||||
|
||||
const shouldIgnore = (requiresSession: boolean = false) => {
|
||||
if (requiresSession && !hasSession) {
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
const handleKey = (
|
||||
callback: () => void,
|
||||
options?: {requiresSession?: boolean},
|
||||
) => {
|
||||
if (shouldIgnore(options?.requiresSession)) {
|
||||
return
|
||||
}
|
||||
callback()
|
||||
}
|
||||
|
||||
useHotkeys(
|
||||
Hotkeys.OPEN_COMPOSER,
|
||||
() =>
|
||||
handleKey(
|
||||
() => {
|
||||
openComposer({logContext: 'Other'})
|
||||
},
|
||||
{
|
||||
requiresSession: true,
|
||||
},
|
||||
),
|
||||
{scopes: ['global'], description: l`Compose new post`},
|
||||
[openComposer],
|
||||
)
|
||||
|
||||
useHotkeys(Hotkeys.FOCUS_SEARCH, () => handleKey(emitFocusSearch), {
|
||||
scopes: ['global'],
|
||||
preventDefault: true,
|
||||
description: l`Focus the search field`,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user