Autocomplete validation demo added
parent
abb4d27756
commit
23c2210493
|
@ -0,0 +1,162 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p><a href="https://vee-validate.logaretm.com/v4/">VeeValidate</a> is a popular library for handling forms in Vue.</p>
|
||||
</DocSectionText>
|
||||
<div class="card flex justify-content-center">
|
||||
<form @submit="onSubmit" class="flex flex-column gap-2">
|
||||
<label for="ac">Value</label>
|
||||
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" />
|
||||
<small class="p-error">{{ errorMessage || ' ' }}</small>
|
||||
<Button type="submit" label="Submit" @click="onSubmit" />
|
||||
</form>
|
||||
</div>
|
||||
<DocSectionCode :code="code" :dependencies="{ 'vee-validate': '4.8.2' }" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { useToast } from 'primevue/usetoast';
|
||||
import { useField, useForm } from 'vee-validate';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const { handleSubmit, resetForm } = useForm();
|
||||
const { value, errorMessage } = useField('value', validateField);
|
||||
const toast = useToast();
|
||||
|
||||
function validateField(value) {
|
||||
if (!value) {
|
||||
return 'Value is required.';
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
const onSubmit = handleSubmit((values) => {
|
||||
if (values.value && values.value.length > 0) {
|
||||
toast.add({ severity: 'info', summary: 'Form Submitted', detail: values.value, life: 3000 });
|
||||
resetForm();
|
||||
}
|
||||
});
|
||||
|
||||
return { value, handleSubmit, onSubmit, errorMessage };
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
items: [],
|
||||
code: {
|
||||
basic: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<form @submit="onSubmit" class="flex flex-column gap-2">
|
||||
<label for="ac">Value</label>
|
||||
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" />
|
||||
<small class="p-error">{{ errorMessage || ' ' }}</small>
|
||||
<Button type="submit" label="Submit" @click="onSubmit" />
|
||||
</form>
|
||||
</div>
|
||||
</template>`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<form @submit="onSubmit" class="flex flex-column gap-2">
|
||||
<label for="ac">Value</label>
|
||||
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" />
|
||||
<small class="p-error">{{ errorMessage || ' ' }}</small>
|
||||
<Button type="submit" label="Submit" @click="onSubmit" />
|
||||
</form>
|
||||
<Toast />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { useToast } from 'primevue/usetoast';
|
||||
import { useField, useForm } from 'vee-validate';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const { handleSubmit, resetForm } = useForm();
|
||||
const { value, errorMessage } = useField('value', validateField);
|
||||
const toast = useToast();
|
||||
|
||||
function validateField(value) {
|
||||
if (!value) {
|
||||
return 'Value is required.';
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
const onSubmit = handleSubmit((values) => {
|
||||
if (values.value && values.value.length > 0) {
|
||||
toast.add({ severity: 'info', summary: 'Form Submitted', detail: values.value, life: 3000 });
|
||||
resetForm();
|
||||
}
|
||||
});
|
||||
|
||||
return { value, handleSubmit, onSubmit, errorMessage };
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
items: []
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
search(event) {
|
||||
this.items = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
||||
}
|
||||
}
|
||||
};
|
||||
<\/script>`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<form @submit="onSubmit" class="flex flex-column gap-2">
|
||||
<label for="ac">Value</label>
|
||||
<AutoComplete v-model="value" :inputClass="{ 'p-invalid': errorMessage }" inputId="ac" :suggestions="items" @complete="search" />
|
||||
<small class="p-error">{{ errorMessage || ' ' }}</small>
|
||||
<Button type="submit" label="Submit" @click="onSubmit" />
|
||||
</form>
|
||||
<Toast />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { useToast } from 'primevue/usetoast';
|
||||
import { useField, useForm } from 'vee-validate';
|
||||
|
||||
const { handleSubmit, resetForm } = useForm();
|
||||
const { value, errorMessage } = useField('value', validateField);
|
||||
const toast = useToast();
|
||||
const items = ref([]);
|
||||
|
||||
function validateField(value) {
|
||||
if (!value) {
|
||||
return 'Value is required.';
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
const onSubmit = handleSubmit((values) => {
|
||||
if (values.value && values.value.length > 0) {
|
||||
toast.add({ severity: 'info', summary: 'Form Submitted', detail: values.value, life: 3000 });
|
||||
resetForm();
|
||||
}
|
||||
});
|
||||
|
||||
const search = (event) => {
|
||||
items.value = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
||||
};
|
||||
<\/script>
|
||||
`
|
||||
}
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
search(event) {
|
||||
this.items = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
|
@ -9,6 +9,7 @@ import DisabledDoc from '@/doc/autocomplete/DisabledDoc';
|
|||
import DropdownDoc from '@/doc/autocomplete/DropdownDoc';
|
||||
import FloatLabelDoc from '@/doc/autocomplete/FloatLabelDoc';
|
||||
import ForceSelectionDoc from '@/doc/autocomplete/ForceSelectionDoc';
|
||||
import VeeValidateDoc from '@/doc/autocomplete/form/VeeValidateDoc.vue';
|
||||
import GroupDoc from '@/doc/autocomplete/GroupDoc';
|
||||
import ImportDoc from '@/doc/autocomplete/ImportDoc';
|
||||
import InvalidDoc from '@/doc/autocomplete/InvalidDoc';
|
||||
|
@ -82,6 +83,18 @@ export default {
|
|||
label: 'Disabled',
|
||||
component: DisabledDoc
|
||||
},
|
||||
{
|
||||
id: 'form',
|
||||
label: 'Form',
|
||||
description: 'Compatibility with popular Vue form libraries.',
|
||||
children: [
|
||||
{
|
||||
id: 'veevalidate',
|
||||
label: 'VeeValidate',
|
||||
component: VeeValidateDoc
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'style',
|
||||
label: 'Style',
|
||||
|
|
Loading…
Reference in New Issue