mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-12 00:51:33 -04:00
73 lines
1.6 KiB
Vue
73 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import { useEventListener } from '@vueuse/core';
|
|
|
|
import InputCopyable from '../../components/InputCopyable.vue';
|
|
|
|
const event = ref<KeyboardEvent>();
|
|
|
|
useEventListener(document, 'keydown', (e) => {
|
|
event.value = e;
|
|
});
|
|
|
|
const fields = computed(() => {
|
|
if (!event.value) {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
{
|
|
label: 'Key :',
|
|
value: event.value.key,
|
|
placeholder: 'Key name...',
|
|
},
|
|
{
|
|
label: 'Keycode :',
|
|
value: String(event.value.keyCode),
|
|
placeholder: 'Keycode...',
|
|
},
|
|
{
|
|
label: 'Code :',
|
|
value: event.value.code,
|
|
placeholder: 'Code...',
|
|
},
|
|
{
|
|
label: 'Location :',
|
|
value: String(event.value.location),
|
|
placeholder: 'Code...',
|
|
},
|
|
|
|
{
|
|
label: 'Modifiers :',
|
|
value: [
|
|
event.value.metaKey && 'Meta',
|
|
event.value.shiftKey && 'Shift',
|
|
event.value.ctrlKey && 'Ctrl',
|
|
event.value.altKey && 'Alt',
|
|
]
|
|
.filter(Boolean)
|
|
.join(' + '),
|
|
placeholder: 'None',
|
|
},
|
|
];
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<c-card mb-5 text-center important:py-12>
|
|
<div v-if="event" mb-2 text-3xl>
|
|
{{ event.key }}
|
|
</div>
|
|
<span lh-1 op-70>
|
|
Press the key on your keyboard you want to get info about this key
|
|
</span>
|
|
</c-card>
|
|
|
|
<n-input-group v-for="({ label, value, placeholder }, i) of fields" :key="i" style="margin-bottom: 5px">
|
|
<n-input-group-label style="flex: 0 0 150px">
|
|
{{ label }}
|
|
</n-input-group-label>
|
|
<InputCopyable :value="value" readonly :placeholder="placeholder" />
|
|
</n-input-group>
|
|
</div>
|
|
</template>
|