119 lines
3.5 KiB
Vue
119 lines
3.5 KiB
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import {
|
|
Command,
|
|
CommandEmpty,
|
|
CommandGroup,
|
|
CommandInput,
|
|
CommandItem,
|
|
CommandList,
|
|
} from '@/lib/registry/default/ui/command'
|
|
import {
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/lib/registry/default/ui/form'
|
|
import {
|
|
Popover,
|
|
PopoverContent,
|
|
PopoverTrigger,
|
|
} from '@/lib/registry/default/ui/popover'
|
|
|
|
import { toast } from '@/lib/registry/default/ui/toast'
|
|
import { cn } from '@/lib/utils'
|
|
import { toTypedSchema } from '@vee-validate/zod'
|
|
import { Check, ChevronsUpDown } from 'lucide-vue-next'
|
|
import { useForm } from 'vee-validate'
|
|
import { h } from 'vue'
|
|
import * as z from 'zod'
|
|
|
|
const languages = [
|
|
{ label: 'English', value: 'en' },
|
|
{ label: 'French', value: 'fr' },
|
|
{ label: 'German', value: 'de' },
|
|
{ label: 'Spanish', value: 'es' },
|
|
{ label: 'Portuguese', value: 'pt' },
|
|
{ label: 'Russian', value: 'ru' },
|
|
{ label: 'Japanese', value: 'ja' },
|
|
{ label: 'Korean', value: 'ko' },
|
|
{ label: 'Chinese', value: 'zh' },
|
|
]
|
|
|
|
const formSchema = toTypedSchema(z.object({
|
|
language: z.string({
|
|
required_error: 'Please select a language.',
|
|
}),
|
|
}))
|
|
|
|
const { handleSubmit, setFieldValue, values } = useForm({
|
|
validationSchema: formSchema,
|
|
})
|
|
|
|
const onSubmit = handleSubmit((values) => {
|
|
toast({
|
|
title: 'You submitted the following values:',
|
|
description: h('pre', { class: 'mt-2 w-[340px] rounded-md bg-slate-950 p-4' }, h('code', { class: 'text-white' }, JSON.stringify(values, null, 2))),
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<form class="space-y-6" @submit="onSubmit">
|
|
<FormField name="language">
|
|
<FormItem class="flex flex-col">
|
|
<FormLabel>Language</FormLabel>
|
|
<Popover>
|
|
<PopoverTrigger as-child>
|
|
<FormControl>
|
|
<Button
|
|
variant="outline"
|
|
role="combobox"
|
|
:class="cn('w-[200px] justify-between', !values.language && 'text-muted-foreground')"
|
|
>
|
|
{{ values.language ? languages.find(
|
|
(language) => language.value === values.language,
|
|
)?.label : 'Select language...' }}
|
|
<ChevronsUpDown class="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
|
</Button>
|
|
</FormControl>
|
|
</PopoverTrigger>
|
|
<PopoverContent class="w-[200px] p-0">
|
|
<Command>
|
|
<CommandInput placeholder="Search language..." />
|
|
<CommandEmpty>Nothing found.</CommandEmpty>
|
|
<CommandList>
|
|
<CommandGroup>
|
|
<CommandItem
|
|
v-for="language in languages"
|
|
:key="language.value"
|
|
:value="language.label"
|
|
@select="() => {
|
|
setFieldValue('language', language.value)
|
|
}"
|
|
>
|
|
<Check
|
|
:class="cn('mr-2 h-4 w-4', language.value === values.language ? 'opacity-100' : 'opacity-0')"
|
|
/>
|
|
{{ language.label }}
|
|
</CommandItem>
|
|
</CommandGroup>
|
|
</CommandList>
|
|
</Command>
|
|
</PopoverContent>
|
|
</Popover>
|
|
<FormDescription>
|
|
This is the language that will be used in the dashboard.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
</FormField>
|
|
|
|
<Button type="submit">
|
|
Submit
|
|
</Button>
|
|
</form>
|
|
</template>
|