73 lines
1.9 KiB
Vue
73 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
import { AutoForm } from '@/lib/registry/default/ui/auto-form'
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import { toast } from '@/lib/registry/default/ui/toast'
|
|
import { h } from 'vue'
|
|
import * as z from 'zod'
|
|
import { DependencyType } from '../ui/auto-form/interface'
|
|
|
|
const schema = z.object({
|
|
age: z.number(),
|
|
parentsAllowed: z.boolean().optional(),
|
|
vegetarian: z.boolean().optional(),
|
|
mealOptions: z.enum(['Pasta', 'Salad', 'Beef Wellington']).optional(),
|
|
})
|
|
|
|
function onSubmit(values: Record<string, any>) {
|
|
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>
|
|
<AutoForm
|
|
class="w-2/3 space-y-6"
|
|
:schema="schema"
|
|
:field-config="{
|
|
age: {
|
|
description:
|
|
'Setting this below 18 will require parents consent.',
|
|
},
|
|
parentsAllowed: {
|
|
label: 'Did your parents allow you to register?',
|
|
},
|
|
vegetarian: {
|
|
label: 'Are you a vegetarian?',
|
|
description:
|
|
'Setting this to true will remove non-vegetarian food options.',
|
|
},
|
|
mealOptions: {
|
|
component: 'radio',
|
|
},
|
|
}"
|
|
:dependencies="[
|
|
{
|
|
sourceField: 'age',
|
|
type: DependencyType.HIDES,
|
|
targetField: 'parentsAllowed',
|
|
when: (age) => age >= 18,
|
|
},
|
|
{
|
|
sourceField: 'age',
|
|
type: DependencyType.REQUIRES,
|
|
targetField: 'parentsAllowed',
|
|
when: (age) => age < 18,
|
|
},
|
|
{
|
|
sourceField: 'vegetarian',
|
|
type: DependencyType.SETS_OPTIONS,
|
|
targetField: 'mealOptions',
|
|
when: (vegetarian) => vegetarian,
|
|
options: ['Pasta', 'Salad'],
|
|
},
|
|
]"
|
|
@submit="onSubmit"
|
|
>
|
|
<Button type="submit">
|
|
Submit
|
|
</Button>
|
|
</AutoForm>
|
|
</template>
|