primevue-mirror/apps/showcase/doc/forms/SubmitDoc.vue

231 lines
9.4 KiB
Vue
Raw Normal View History

2024-10-23 04:05:27 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>The <i>submit</i> callback provides an object containing the form's validity, all errors, and current states. This offers access to the form values as well as validation status and any existing errors during submission.</p>
</DocSectionText>
<div class="card flex justify-center">
<Form v-slot="$form" :initialValues :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
<div class="flex flex-col gap-2">
<InputText name="username" type="text" placeholder="Username" fluid />
2024-10-23 11:59:52 +00:00
<Message v-if="$form.username?.invalid" severity="error">{{ $form.username.error.message }}</Message>
2024-10-23 04:05:27 +00:00
</div>
<div class="flex flex-col gap-2">
<Password name="password" placeholder="Password" :feedback="false" fluid />
<Message v-if="$form.password?.invalid" severity="error">
<ul class="mx-1 px-3">
<li v-for="(error, index) of $form.password.errors" :key="index" class="py-1">{{ error.message }}</li>
</ul>
</Message>
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
2024-10-23 11:06:59 +00:00
<DocSectionCode :code="code" :dependencies="{ zod: '3.23.8' }" />
2024-10-23 04:05:27 +00:00
</template>
<script>
import { zodResolver } from '@primevue/form/resolvers';
import { z } from 'zod';
export default {
data() {
return {
initialValues: {
username: '',
password: ''
},
resolver: zodResolver(
z.object({
2024-10-23 04:11:19 +00:00
username: z.string().min(1, { message: 'Username is required.' }),
2024-10-23 04:05:27 +00:00
password: z
.string()
2024-10-23 12:22:53 +00:00
.min(3, { message: 'Minimum 3 characters.' })
.max(8, { message: 'Maximum 8 characters.' })
2024-10-23 04:05:27 +00:00
.refine((value) => /[a-z]/.test(value), {
2024-10-23 12:22:53 +00:00
message: 'Must have a lowercase letter.'
2024-10-23 04:05:27 +00:00
})
.refine((value) => /[A-Z]/.test(value), {
2024-10-23 12:22:53 +00:00
message: 'Must have a uppercase letter.'
2024-10-23 04:05:27 +00:00
})
.refine((value) => /\d/.test(value), {
2024-10-23 12:22:53 +00:00
message: 'Must have a number.'
2024-10-23 04:05:27 +00:00
})
})
),
code: {
basic: `
<Form v-slot="$form" :initialValues :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
<div class="flex flex-col gap-2">
<InputText name="username" type="text" placeholder="Username" fluid />
2024-10-23 11:59:52 +00:00
<Message v-if="$form.username?.invalid" severity="error">{{ $form.username.error.message }}</Message>
2024-10-23 04:05:27 +00:00
</div>
<div class="flex flex-col gap-2">
<Password name="password" placeholder="Password" :feedback="false" fluid />
<Message v-if="$form.password?.invalid" severity="error">
<ul class="mx-1 px-3">
<li v-for="(error, index) of $form.password.errors" :key="index" class="py-1">{{ error.message }}</li>
</ul>
</Message>
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
`,
options: `
<template>
2024-10-23 14:02:51 +00:00
<div class="card flex justify-center">
<Toast />
<Form v-slot="$form" :initialValues :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
<div class="flex flex-col gap-2">
<InputText name="username" type="text" placeholder="Username" fluid />
<Message v-if="$form.username?.invalid" severity="error">{{ $form.username.error.message }}</Message>
</div>
<div class="flex flex-col gap-2">
<Password name="password" placeholder="Password" :feedback="false" fluid />
<Message v-if="$form.password?.invalid" severity="error">
<ul class="mx-1 px-3">
<li v-for="(error, index) of $form.password.errors" :key="index" class="py-1">{{ error.message }}</li>
</ul>
</Message>
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
2024-10-23 04:05:27 +00:00
</template>
<script>
import { zodResolver } from '@primevue/form/resolvers';
import { z } from 'zod';
export default {
data() {
return {
initialValues: {
username: '',
password: ''
},
resolver: zodResolver(
z.object({
2024-10-23 04:11:19 +00:00
username: z.string().min(1, { message: 'Username is required.' }),
2024-10-23 04:05:27 +00:00
password: z
.string()
2024-10-23 12:22:53 +00:00
.min(3, { message: 'Minimum 3 characters.' })
.max(8, { message: 'Maximum 8 characters.' })
2024-10-23 04:05:27 +00:00
.refine((value) => /[a-z]/.test(value), {
2024-10-23 12:22:53 +00:00
message: 'Must have a lowercase letter.'
2024-10-23 04:05:27 +00:00
})
.refine((value) => /[A-Z]/.test(value), {
2024-10-23 12:22:53 +00:00
message: 'Must have a uppercase letter.'
2024-10-23 04:05:27 +00:00
})
.refine((value) => /\d/.test(value), {
2024-10-23 12:22:53 +00:00
message: 'Must have a number.'
2024-10-23 04:05:27 +00:00
})
})
)
};
},
methods: {
onFormSubmit(e) {
// e.originalEvent: Represents the native form submit event.
// e.valid: A boolean that indicates whether the form is valid or not.
// e.states: Contains the current state of each form field, including validity status.
// e.errors: An object that holds any validation errors for the invalid fields in the form.
// e.values: An object containing the current values of all form fields.
2024-10-23 14:02:51 +00:00
// e.reset: A function that resets the form to its initial state.
2024-10-23 04:05:27 +00:00
if (e.valid) {
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
}
}
}
};
<\/script>
`,
composition: `
<template>
2024-10-23 14:02:51 +00:00
<div class="card flex justify-center">
<Toast />
<Form v-slot="$form" :initialValues :resolver @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
<div class="flex flex-col gap-2">
<InputText name="username" type="text" placeholder="Username" fluid />
<Message v-if="$form.username?.invalid" severity="error">{{ $form.username.error.message }}</Message>
</div>
<div class="flex flex-col gap-2">
<Password name="password" placeholder="Password" :feedback="false" fluid />
<Message v-if="$form.password?.invalid" severity="error">
<ul class="mx-1 px-3">
<li v-for="(error, index) of $form.password.errors" :key="index" class="py-1">{{ error.message }}</li>
</ul>
</Message>
</div>
<Button type="submit" severity="secondary" label="Submit" />
</Form>
</div>
2024-10-23 04:05:27 +00:00
</template>
<script setup>
2024-10-23 14:02:51 +00:00
import { ref } from 'vue';
import { zodResolver } from '@primevue/form/resolvers';
import { z } from 'zod';
import { useToast } from 'primevue/usetoast';
const toast = useToast();
const initialValues = ref({
username: '',
password: ''
});
const resolver = zodResolver(
z.object({
username: z.string().min(1, { message: 'Username is required.' }),
password: z
.string()
.min(3, { message: 'Minimum 3 characters.' })
.max(8, { message: 'Maximum 8 characters.' })
.refine((value) => /[a-z]/.test(value), {
message: 'Must have a lowercase letter.'
})
.refine((value) => /[A-Z]/.test(value), {
message: 'Must have an uppercase letter.'
})
.refine((value) => /\d/.test(value), {
message: 'Must have a number.'
})
})
);
const onFormSubmit = (e) => {
// e.originalEvent: Represents the native form submit event.
// e.valid: A boolean that indicates whether the form is valid or not.
// e.states: Contains the current state of each form field, including validity status.
// e.errors: An object that holds any validation errors for the invalid fields in the form.
// e.values: An object containing the current values of all form fields.
// e.reset: A function that resets the form to its initial state.
if (e.valid) {
toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
}
};
2024-10-23 04:05:27 +00:00
<\/script>
`
}
};
},
methods: {
onFormSubmit(e) {
// e.originalEvent: Represents the native form submit event.
// e.valid: A boolean that indicates whether the form is valid or not.
// e.states: Contains the current state of each form field, including validity status.
// e.errors: An object that holds any validation errors for the invalid fields in the form.
// e.values: An object containing the current values of all form fields.
2024-10-23 10:44:10 +00:00
// e.reset: A function that resets the form to its initial state.
2024-10-23 14:02:51 +00:00
2024-10-23 04:05:27 +00:00
if (e.valid) {
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
}
}
}
};
</script>