1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <SmartModal v-if="show" full-width @close="$emit('hide-modal')">
- <template #body>
- <input
- id="command"
- v-model="search"
- v-focus
- type="text"
- autocomplete="off"
- name="command"
- :placeholder="$t('app.type_a_command_search').toString()"
- class="
- bg-transparent
- border-b border-dividerLight
- flex flex-shrink-0
- text-secondaryDark text-base
- p-6
- "
- />
- <AppFuse
- v-if="search"
- :input="fuse"
- :search="search"
- @action="runAction"
- />
- <div
- v-else
- class="
- divide-y divide-dividerLight
- flex flex-col
- space-y-4
- flex-1
- overflow-auto
- hide-scrollbar
- "
- >
- <div v-for="(map, mapIndex) in mappings" :key="`map-${mapIndex}`">
- <h5 class="my-2 text-secondaryLight py-2 px-6">
- {{ $t(map.section) }}
- </h5>
- <AppPowerSearchEntry
- v-for="(shortcut, shortcutIndex) in map.shortcuts"
- :key="`map-${mapIndex}-shortcut-${shortcutIndex}`"
- :shortcut="shortcut"
- @action="runAction"
- />
- </div>
- </div>
- </template>
- </SmartModal>
- </template>
- <script setup lang="ts">
- import { ref } from "@nuxtjs/composition-api"
- import { HoppAction, invokeAction } from "~/helpers/actions"
- import { spotlight as mappings, fuse } from "~/helpers/shortcuts"
- defineProps<{
- show: boolean
- }>()
- const emit = defineEmits<{
- (e: "hide-modal"): void
- }>()
- const search = ref("")
- const hideModal = () => {
- search.value = ""
- emit("hide-modal")
- }
- const runAction = (command: HoppAction) => {
- invokeAction(command)
- hideModal()
- }
- </script>
|