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

133 lines
4.4 KiB
Vue
Raw Normal View History

2024-10-23 09:51:26 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-10-30 10:26:41 +00:00
<p>SelectButton integrates seamlessly with the <NuxtLink to="/forms">PrimeVue Forms</NuxtLink> library.</p>
2024-10-23 09:51:26 +00:00
</DocSectionText>
<div class="card flex justify-center">
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
2024-10-30 10:26:41 +00:00
<div class="flex items-center flex-col gap-1">
<SelectButton name="selection" :options="options" />
<Message v-if="$form.selection?.invalid" severity="error" size="small" variant="simple">{{ $form.selection.error?.message }}</Message>
2024-10-23 09:51:26 +00:00
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
</template>
<script>
import { zodResolver } from '@primevue/forms/resolvers';
2024-10-23 09:51:26 +00:00
import { z } from 'zod';
export default {
data() {
return {
initialValues: {
2024-10-30 10:26:41 +00:00
selection: ''
2024-10-23 09:51:26 +00:00
},
resolver: zodResolver(
z.object({
2024-10-30 10:26:41 +00:00
selection: z.preprocess((val) => (val === null ? '' : val), z.string().min(1, { message: 'Selection is required' }))
2024-10-23 09:51:26 +00:00
})
),
options: ['One-Way', 'Return'],
code: {
basic: `
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4">
2024-10-30 10:26:41 +00:00
<div class="flex flex-col gap-1">
<SelectButton name="selection" :options="options" />
<Message v-if="$form.selection?.invalid" severity="error">{{ $form.selection.error?.message }}</Message>
2024-10-23 09:51:26 +00:00
</div>
<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">
2024-10-30 10:26:41 +00:00
<div class="flex flex-col gap-1">
<SelectButton name="selection" :options="options" />
<Message v-if="$form.selection?.invalid" severity="error">{{ $form.selection.error?.message }}</Message>
2024-10-23 09:51:26 +00:00
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
</template>
<script>
import { zodResolver } from '@primevue/forms/resolvers';
2024-10-23 09:51:26 +00:00
import { z } from 'zod';
export default {
data() {
return {
initialValues: {
2024-10-30 10:26:41 +00:00
selection: ''
2024-10-23 09:51:26 +00:00
},
resolver: zodResolver(
z.object({
2024-10-30 10:26:41 +00:00
selection: z.preprocess((val) => (val === null ? '' : val), z.string().min(1, { message: 'Selection is required' }))
2024-10-23 09:51:26 +00:00
})
),
options: ['One-Way', 'Return'],
}
},
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">
2024-10-30 10:26:41 +00:00
<div class="flex flex-col gap-1">
<SelectButton name="selection" :options="options" />
<Message v-if="$form.selection?.invalid" severity="error">{{ $form.selection.error?.message }}</Message>
2024-10-23 09:51:26 +00:00
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { zodResolver } from '@primevue/forms/resolvers';
2024-10-23 09:51:26 +00:00
import { useToast } from "primevue/usetoast";
import { z } from 'zod';
const toast = useToast();
const initialValues = ref({
2024-10-30 10:26:41 +00:00
selection: ''
2024-10-23 09:51:26 +00:00
});
const resolver = ref(zodResolver(
z.object({
2024-10-30 10:26:41 +00:00
selection: z.preprocess((val) => (val === null ? '' : val), z.string().min(1, { message: 'Selection is required' }))
2024-10-23 09:51:26 +00:00
})
));
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>