This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/navigation/command-palettes/with_images_and_descriptions.vue

114 lines
4.2 KiB
Vue
Raw Normal View History

2024-01-24 19:02:44 +08:00
<!--
This example requires some changes to your config:
```
// tailwind.config.js
module.exports = {
// ...
plugins: [
// ...
require('@tailwindcss/forms'),
],
}
```
-->
<template>
<TransitionRoot :show="open" as="template" @after-leave="query = ''" appear>
<Dialog as="div" class="relative z-10" @close="open = false">
<TransitionChild as="template" enter="ease-out duration-300" enter-from="opacity-0" enter-to="opacity-100" leave="ease-in duration-200" leave-from="opacity-100" leave-to="opacity-0">
<div class="fixed inset-0 bg-gray-500 bg-opacity-25 transition-opacity" />
</TransitionChild>
<div class="fixed inset-0 z-10 overflow-y-auto p-4 sm:p-6 md:p-20">
<TransitionChild as="template" enter="ease-out duration-300" enter-from="opacity-0 scale-95" enter-to="opacity-100 scale-100" leave="ease-in duration-200" leave-from="opacity-100 scale-100" leave-to="opacity-0 scale-95">
<DialogPanel class="mx-auto max-w-xl transform divide-y divide-gray-100 overflow-hidden rounded-xl bg-white shadow-2xl ring-1 ring-black ring-opacity-5 transition-all">
<Combobox @update:modelValue="onSelect">
<div class="relative">
<MagnifyingGlassIcon class="pointer-events-none absolute left-4 top-3.5 h-5 w-5 text-gray-400" aria-hidden="true" />
<ComboboxInput class="h-12 w-full border-0 bg-transparent pl-11 pr-4 text-gray-900 placeholder:text-gray-400 focus:ring-0 sm:text-sm" placeholder="Search..." @change="query = $event.target.value" />
</div>
<ComboboxOptions v-if="filteredItems.length > 0" static class="max-h-96 scroll-py-3 overflow-y-auto p-3">
<ComboboxOption v-for="item in filteredItems" :key="item.id" :value="item" as="template" v-slot="{ active }">
<li :class="['flex cursor-default select-none rounded-xl p-3', active && 'bg-gray-100']">
<div :class="['flex h-10 w-10 flex-none items-center justify-center rounded-lg', item.color]">
<component :is="item.icon" class="h-6 w-6 text-white" aria-hidden="true" />
</div>
<div class="ml-4 flex-auto">
<p :class="['text-sm font-medium', active ? 'text-gray-900' : 'text-gray-700']">
{{ item.name }}
</p>
<p :class="['text-sm', active ? 'text-gray-700' : 'text-gray-500']">
{{ item.description }}
</p>
</div>
</li>
</ComboboxOption>
</ComboboxOptions>
<div v-if="query !== '' && filteredItems.length === 0" class="px-6 py-14 text-center text-sm sm:px-14">
<ExclamationCircleIcon type="outline" name="exclamation-circle" class="mx-auto h-6 w-6 text-gray-400" />
<p class="mt-4 font-semibold text-gray-900">No results found</p>
<p class="mt-2 text-gray-500">No components found for this search term. Please try again.</p>
</div>
</Combobox>
</DialogPanel>
</TransitionChild>
</div>
</Dialog>
</TransitionRoot>
</template>
<script setup>
import { computed, ref } from 'vue'
import { MagnifyingGlassIcon } from '@heroicons/vue/20/solid'
import {
CalendarIcon,
CodeBracketIcon,
DocumentIcon,
ExclamationCircleIcon,
LinkIcon,
PencilSquareIcon,
PhotoIcon,
TableCellsIcon,
VideoCameraIcon,
ViewColumnsIcon,
Bars4Icon,
} from '@heroicons/vue/24/outline'
import {
Combobox,
ComboboxInput,
ComboboxOptions,
ComboboxOption,
Dialog,
DialogPanel,
TransitionChild,
TransitionRoot,
} from '@headlessui/vue'
const items = [
{
id: 1,
name: 'Text',
description: 'Add freeform text with basic formatting options.',
url: '#',
color: 'bg-indigo-500',
icon: PencilSquareIcon,
},
// More items...
]
const open = ref(true)
const query = ref('')
const filteredItems = computed(() =>
query.value === ''
? []
: items.filter((item) => {
return item.name.toLowerCase().includes(query.value.toLowerCase())
})
)
function onSelect(item) {
window.location = item.url
}
</script>