Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Anwarul Islam <anwaarulislaam@gmail.com>
113 lines
3.5 KiB
Vue
113 lines
3.5 KiB
Vue
<template>
|
|
<HoppSmartSlideOver :show="show" :title="t('app.shortcuts')" @close="close()">
|
|
<template #content>
|
|
<div
|
|
class="sticky top-0 z-10 flex flex-col flex-shrink-0 overflow-x-auto bg-primary"
|
|
>
|
|
<div class="flex flex-col px-6 py-4 border-b border-dividerLight">
|
|
<input
|
|
v-model="filterText"
|
|
type="search"
|
|
autocomplete="off"
|
|
class="flex px-4 py-2 border rounded bg-primaryContrast border-divider hover:border-dividerDark focus-visible:border-dividerDark"
|
|
:placeholder="`${t('action.search')}`"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div v-if="filterText" class="flex flex-col divide-y divide-dividerLight">
|
|
<details
|
|
v-for="(map, mapIndex) in searchResults"
|
|
:key="`map-${mapIndex}`"
|
|
class="flex flex-col"
|
|
open
|
|
>
|
|
<summary
|
|
class="flex items-center flex-1 min-w-0 px-6 py-4 font-semibold transition cursor-pointer focus:outline-none text-secondaryLight hover:text-secondaryDark"
|
|
>
|
|
<icon-lucide-chevron-right class="mr-2 indicator" />
|
|
<span
|
|
class="font-semibold truncate capitalize-first text-secondaryDark"
|
|
>
|
|
{{ t(map.item.section) }}
|
|
</span>
|
|
</summary>
|
|
<div class="flex flex-col px-6 pb-4 space-y-2">
|
|
<AppShortcutsEntry
|
|
v-for="(shortcut, index) in map.item.shortcuts"
|
|
:key="`shortcut-${index}`"
|
|
:shortcut="shortcut"
|
|
/>
|
|
</div>
|
|
</details>
|
|
<div
|
|
v-if="searchResults.length === 0"
|
|
class="flex flex-col items-center justify-center p-4 text-secondaryLight"
|
|
>
|
|
<icon-lucide-search class="pb-2 opacity-75 svg-icons" />
|
|
<span class="my-2 text-center">
|
|
{{ t("state.nothing_found") }} "{{ filterText }}"
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div v-else class="flex flex-col divide-y divide-dividerLight">
|
|
<details
|
|
v-for="(map, mapIndex) in mappings"
|
|
:key="`map-${mapIndex}`"
|
|
class="flex flex-col"
|
|
open
|
|
>
|
|
<summary
|
|
class="flex items-center flex-1 min-w-0 px-6 py-4 font-semibold transition cursor-pointer focus:outline-none text-secondaryLight hover:text-secondaryDark"
|
|
>
|
|
<icon-lucide-chevron-right class="mr-2 indicator" />
|
|
<span
|
|
class="font-semibold truncate capitalize-first text-secondaryDark"
|
|
>
|
|
{{ t(map.section) }}
|
|
</span>
|
|
</summary>
|
|
<div class="flex flex-col px-6 pb-4 space-y-2">
|
|
<AppShortcutsEntry
|
|
v-for="(shortcut, shortcutIndex) in map.shortcuts"
|
|
:key="`map-${mapIndex}-shortcut-${shortcutIndex}`"
|
|
:shortcut="shortcut"
|
|
/>
|
|
</div>
|
|
</details>
|
|
</div>
|
|
</template>
|
|
</HoppSmartSlideOver>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref } from "vue"
|
|
import Fuse from "fuse.js"
|
|
import mappings from "~/helpers/shortcuts"
|
|
import { useI18n } from "@composables/i18n"
|
|
|
|
const t = useI18n()
|
|
|
|
defineProps<{
|
|
show: boolean
|
|
}>()
|
|
|
|
const options = {
|
|
keys: ["shortcuts.label"],
|
|
}
|
|
|
|
const fuse = new Fuse(mappings, options)
|
|
|
|
const filterText = ref("")
|
|
|
|
const searchResults = computed(() => fuse.search(filterText.value))
|
|
|
|
const emit = defineEmits<{
|
|
(e: "close"): void
|
|
}>()
|
|
|
|
const close = () => {
|
|
filterText.value = ""
|
|
emit("close")
|
|
}
|
|
</script>
|