primevue-mirror/apps/showcase/doc/radiobutton/FormsDoc.vue

191 lines
7.2 KiB
Vue
Raw Normal View History

2024-10-23 08:17:54 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>RadioButton can be used with the <NuxtLink to="/forms">PrimeVue Forms</NuxtLink> library.</p>
</DocSectionText>
<div class="card flex justify-center">
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
<RadioButtonGroup name="radiobutton" class="flex flex-wrap gap-4">
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="cheese" value="Cheese" />
<label for="cheese">Cheese</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="mushroom" value="Mushroom" />
<label for="mushroom">Mushroom</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="pepper" value="Pepper" />
<label for="pepper">Pepper</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="onion" value="Onion" />
<label for="onion">Onion</label>
2024-10-23 08:17:54 +00:00
</div>
</RadioButtonGroup>
2024-10-23 11:17:49 +00:00
<Message v-if="$form.radiobutton?.invalid" severity="error" icon="pi pi-times-circle">{{ $form.radiobutton.error?.message }}</Message>
2024-10-23 08:17:54 +00:00
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
</template>
<script>
import { zodResolver } from '@primevue/form/resolvers';
import { z } from 'zod';
export default {
data() {
return {
initialValues: {
radiobutton: ''
},
resolver: zodResolver(
z.object({
radiobutton: z.string().min(1, { message: 'Selection is required.' })
})
),
code: {
basic: `
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
<RadioButtonGroup name="radiobutton" class="flex flex-wrap gap-4">
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="cheese" value="Cheese" />
<label for="cheese">Cheese</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="mushroom" value="Mushroom" />
<label for="mushroom">Mushroom</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="pepper" value="Pepper" />
<label for="pepper">Pepper</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="onion" value="Onion" />
<label for="onion">Onion</label>
2024-10-23 08:17:54 +00:00
</div>
</RadioButtonGroup>
2024-10-23 11:17:49 +00:00
<Message v-if="$form.radiobutton?.invalid" severity="error" icon="pi pi-times-circle">{{ $form.radiobutton.error?.message }}</Message>
2024-10-23 08:17:54 +00:00
<Button type="submit" severity="secondary" label="Submit" />
</Form>
`,
options: `
<template>
<div class="card flex justify-center">
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
<RadioButtonGroup name="radiobutton" class="flex flex-wrap gap-4">
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="cheese" value="Cheese" />
<label for="cheese">Cheese</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="mushroom" value="Mushroom" />
<label for="mushroom">Mushroom</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="pepper" value="Pepper" />
<label for="pepper">Pepper</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="onion" value="Onion" />
<label for="onion">Onion</label>
2024-10-23 08:17:54 +00:00
</div>
</RadioButtonGroup>
2024-10-23 11:17:49 +00:00
<Message v-if="$form.radiobutton?.invalid" severity="error" icon="pi pi-times-circle">{{ $form.radiobutton.error?.message }}</Message>
2024-10-23 08:17:54 +00:00
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
</template>
<script>
import { zodResolver } from '@primevue/form/resolvers';
import { z } from 'zod';
export default {
data() {
return {
initialValues: {
radiobutton: ''
},
resolver: zodResolver(
z.object({
radiobutton: z.string().min(1, { message: 'Selection is required.' })
})
)
}
},
methods: {
onFormSubmit({ valid }) {
if (valid) {
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
}
}
}
}
<\/script>
`,
composition: `
<template>
<div class="card flex justify-center">
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
<RadioButtonGroup name="radiobutton" class="flex flex-wrap gap-4">
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="cheese" value="Cheese" />
<label for="cheese">Cheese</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="mushroom" value="Mushroom" />
<label for="mushroom">Mushroom</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="pepper" value="Pepper" />
<label for="pepper">Pepper</label>
2024-10-23 08:17:54 +00:00
</div>
2024-10-24 14:25:44 +00:00
<div class="flex items-center gap-2">
2024-10-24 14:41:45 +00:00
<RadioButton inputId="onion" value="Onion" />
<label for="onion">Onion</label>
2024-10-23 08:17:54 +00:00
</div>
</RadioButtonGroup>
2024-10-23 11:17:49 +00:00
<Message v-if="$form.radiobutton?.invalid" severity="error" icon="pi pi-times-circle">{{ $form.radiobutton.error?.message }}</Message>
2024-10-23 08:17:54 +00:00
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { zodResolver } from '@primevue/form/resolvers';
import { useToast } from "primevue/usetoast";
import { z } from 'zod';
const toast = useToast();
const initialValues = ref({
radiobutton: ''
});
const resolver = ref(zodResolver(
z.object({
radiobutton: z.string().min(1, { message: 'Selection is required.' })
})
));
const onFormSubmit = ({ valid }) => {
if (valid) {
toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
}
};
<\/script>
`
}
};
},
methods: {
onFormSubmit({ valid }) {
if (valid) {
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
}
}
}
};
</script>