feat: implement global context-aware keyboard shortcuts and modal keyboard support (Enter/Esc)

This commit is contained in:
Tiberiu Ichim 2026-02-20 18:28:37 +02:00
parent 696961ea4c
commit 791d78884d
7 changed files with 36 additions and 5 deletions

View file

@ -115,6 +115,25 @@ export default {
this.$eventBus.$emit('showing-prompt', false)
this.content.style.transform = 'scale(0)'
this.el.remove()
},
handleKeyDown(e) {
if (!this.show) return
if (e.key === 'Enter') {
const activeElement = document.activeElement
// If an input is focused, let it handle the enter key if it wants,
// but ui-checkbox is okay to override if needed.
// Actually for a simple confirm prompt, Enter should usually confirm.
if (activeElement && ['INPUT', 'TEXTAREA'].includes(activeElement.tagName) && activeElement.type !== 'checkbox') {
return
}
e.preventDefault()
e.stopPropagation()
this.confirm()
} else if (e.key === 'Escape') {
e.preventDefault()
e.stopPropagation()
this.nevermind()
}
}
},
mounted() {
@ -124,11 +143,14 @@ export default {
this.content.style.transition = 'transform 0.25s cubic-bezier(0.16, 1, 0.3, 1)'
this.el.style.opacity = 1
this.el.remove()
window.addEventListener('keydown', this.handleKeyDown)
},
beforeDestroy() {
if (this.show) {
this.$eventBus.$emit('showing-prompt', false)
}
window.removeEventListener('keydown', this.handleKeyDown)
}
}
</script>