Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created May 22, 2025 07:50
Show Gist options
  • Save Kcko/df3116ff24055cf4b03556634c80dc9d to your computer and use it in GitHub Desktop.
Save Kcko/df3116ff24055cf4b03556634c80dc9d to your computer and use it in GitHub Desktop.
const eventHandler = e => {
const keyActions = {
Escape: closeGallery,
ArrowLeft: prevMedia,
ArrowRight: nextMedia
}
if (e.key === 'ArrowLeft') {
prevMedia()
}
if (e.key === 'ArrowRight') {
nextMedia()
}
}
const eventHandler = e => {
const keyActions = {
Escape: closeGallery,
ArrowLeft: prevMedia,
ArrowRight: nextMedia
}
keyActions[e.key]?.()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment