123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <AppSlideOver :show="show" @close="close()">
- <template #content>
- <div
- class="
- bg-primary
- border-b border-dividerLight
- flex
- p-2
- top-0
- z-10
- items-center
- sticky
- justify-between
- "
- >
- <h3 class="ml-4 heading">{{ $t("app.shortcuts") }}</h3>
- <div class="flex">
- <ButtonSecondary svg="x" class="rounded" @click.native="close()" />
- </div>
- </div>
- <div class="bg-primary border-b border-dividerLight">
- <div class="flex flex-col my-4 mx-6">
- <input
- v-model="filterText"
- v-focus
- type="search"
- autocomplete="off"
- class="
- bg-primaryLight
- border border-dividerLight
- rounded
- flex
- w-full
- py-2
- px-4
- focus-visible:border-divider
- "
- :placeholder="$t('action.search')"
- />
- </div>
- </div>
- <div v-if="filterText">
- <div
- v-for="(map, mapIndex) in searchResults"
- :key="`map-${mapIndex}`"
- class="space-y-4 py-4 px-6"
- >
- <h1 class="font-semibold text-secondaryDark">
- {{ $t(map.item.section) }}
- </h1>
- <AppShortcutsEntry
- v-for="(shortcut, index) in map.item.shortcuts"
- :key="`shortcut-${index}`"
- :shortcut="shortcut"
- />
- </div>
- <div
- v-if="searchResults.length === 0"
- class="
- flex flex-col
- text-secondaryLight
- p-4
- items-center
- justify-center
- "
- >
- <i class="opacity-75 pb-2 material-icons">manage_search</i>
- <span class="text-center">
- {{ $t("state.nothing_found") }} "{{ filterText }}"
- </span>
- </div>
- </div>
- <div
- v-else
- class="
- divide-y divide-dividerLight
- flex flex-col flex-1
- overflow-auto
- hide-scrollbar
- "
- >
- <div
- v-for="(map, mapIndex) in mappings"
- :key="`map-${mapIndex}`"
- class="space-y-4 py-4 px-6"
- >
- <h1 class="font-semibold text-secondaryDark">
- {{ $t(map.section) }}
- </h1>
- <AppShortcutsEntry
- v-for="(shortcut, shortcutIndex) in map.shortcuts"
- :key="`map-${mapIndex}-shortcut-${shortcutIndex}`"
- :shortcut="shortcut"
- />
- </div>
- </div>
- </template>
- </AppSlideOver>
- </template>
- <script setup lang="ts">
- import { computed, ref } from "@nuxtjs/composition-api"
- import Fuse from "fuse.js"
- import mappings from "~/helpers/shortcuts"
- 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>
- <style lang="scss" scoped>
- .shortcut-key {
- @apply bg-dividerLight;
- @apply rounded;
- @apply ml-2;
- @apply py-1;
- @apply px-2;
- @apply inline-flex;
- }
- </style>
|