mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-06 21:16:47 +02:00
78 lines
2.3 KiB
Vue
78 lines
2.3 KiB
Vue
<script setup>
|
|
const keyword = defineModel('keyword')
|
|
const props = defineProps({
|
|
hasNoBackground: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
placeholder: String,
|
|
})
|
|
const searchInput = ref(null)
|
|
|
|
onMounted(() => {
|
|
document.addEventListener('keydown', ctrlFHandler)
|
|
document.addEventListener('keypress', anyPrintableKeyHandler)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
document.removeEventListener('keydown', ctrlFHandler)
|
|
document.removeEventListener('keypress', anyPrintableKeyHandler)
|
|
})
|
|
|
|
/**
|
|
* Attach an event listen for ctrl+F
|
|
*/
|
|
function ctrlFHandler(e) {
|
|
if (e.key === "f" && (e.ctrlKey || e.metaKey)) {
|
|
e.preventDefault()
|
|
searchInput.value?.focus()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Clear the search field
|
|
*/
|
|
function clearSearch() {
|
|
keyword.value = ''
|
|
}
|
|
|
|
/**
|
|
* Attach an event listen for any key press to automatically focus on search
|
|
* without having to ctrl+F
|
|
*/
|
|
function anyPrintableKeyHandler(e) {
|
|
if (e.key === 'Enter') {
|
|
return
|
|
}
|
|
|
|
keyword.value = e.key
|
|
searchInput.value?.setSelectionRange(1, 1)
|
|
searchInput.value?.focus()
|
|
e.preventDefault()
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div role="search" class="field">
|
|
<div class="control has-icons-right">
|
|
<input
|
|
v-model="keyword"
|
|
@keyup.esc.prevent="(event) => { clearSearch(); event.target.blur() }"
|
|
@keyup.enter.prevent="(event) => event.target.blur()"
|
|
@keypress.stop
|
|
ref="searchInput"
|
|
id="txtSearch"
|
|
type="search"
|
|
tabindex="1"
|
|
:aria-label="$t('commons.search')"
|
|
:title="$t('commons.search')"
|
|
:placeholder="placeholder"
|
|
class="input is-rounded is-search"
|
|
:class="{ 'has-no-background': hasNoBackground }">
|
|
<span class="icon is-small is-right">
|
|
<button type="button" v-if="keyword != ''" id="btnClearSearch" tabindex="1" :title="$t('commons.clear_search')" class="clear-selection delete" @click="clearSearch"></button>
|
|
<FontAwesomeIcon v-else :icon="['fas', 'search']" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template> |