* docs: fix checkbox and radio form examples add type="checkbox|radio" and name in FormField * docs: add `vee-validate` documentation link for checkbox and radio inputs * chore: update `vee-validate` deps
82 lines
2.4 KiB
Vue
82 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
import { h } from 'vue'
|
|
import { useForm } from 'vee-validate'
|
|
import { toTypedSchema } from '@vee-validate/zod'
|
|
import * as z from 'zod'
|
|
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/lib/registry/default/ui/form'
|
|
import { RadioGroup, RadioGroupItem } from '@/lib/registry/default/ui/radio-group'
|
|
import { toast } from '@/lib/registry/default/ui/toast'
|
|
|
|
const formSchema = toTypedSchema(z.object({
|
|
type: z.enum(['all', 'mentions', 'none'], {
|
|
required_error: 'You need to select a notification type.',
|
|
}),
|
|
}))
|
|
|
|
const { handleSubmit } = 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="w-2/3 space-y-6" @submit="onSubmit">
|
|
<FormField v-slot="{ componentField }" type="radio" name="type">
|
|
<FormItem class="space-y-3">
|
|
<FormLabel>Notify me about...</FormLabel>
|
|
|
|
<FormControl>
|
|
<RadioGroup
|
|
class="flex flex-col space-y-1"
|
|
v-bind="componentField"
|
|
>
|
|
<FormItem class="flex items-center space-y-0 gap-x-3">
|
|
<FormControl>
|
|
<RadioGroupItem value="all" />
|
|
</FormControl>
|
|
<FormLabel class="font-normal">
|
|
All new messages
|
|
</FormLabel>
|
|
</FormItem>
|
|
<FormItem class="flex items-center space-y-0 gap-x-3">
|
|
<FormControl>
|
|
<RadioGroupItem value="mentions" />
|
|
</FormControl>
|
|
<FormLabel class="font-normal">
|
|
Direct messages and mentions
|
|
</FormLabel>
|
|
</FormItem>
|
|
<FormItem class="flex items-center space-y-0 gap-x-3">
|
|
<FormControl>
|
|
<RadioGroupItem value="none" />
|
|
</FormControl>
|
|
<FormLabel class="font-normal">
|
|
Nothing
|
|
</FormLabel>
|
|
</FormItem>
|
|
</RadioGroup>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
</FormField>
|
|
|
|
<Button type="submit">
|
|
Submit
|
|
</Button>
|
|
</form>
|
|
</template>
|