2024-10-21 14:45:53 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs"> </DocSectionText>
|
|
|
|
<div class="card flex justify-center">
|
2024-10-22 09:14:17 +00:00
|
|
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex flex-col gap-4 w-full sm:w-56">
|
2024-10-21 14:45:53 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
2024-10-22 07:31:29 +00:00
|
|
|
<Select name="city" :options="cities" optionLabel="name" placeholder="Select a City" fluid />
|
2024-10-21 14:45:53 +00:00
|
|
|
<Message v-if="$form.city?.invalid" severity="error">{{ $form.city.errors[0]?.message }}</Message>
|
|
|
|
</div>
|
2024-10-22 07:31:29 +00:00
|
|
|
<Button type="submit" severity="secondary" label="Submit" />
|
2024-10-21 14:45:53 +00:00
|
|
|
</Form>
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { CountryService } from '@/service/CountryService';
|
|
|
|
import { zodResolver } from '@primevue/form/resolvers';
|
|
|
|
import { z } from 'zod';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2024-10-22 09:14:17 +00:00
|
|
|
initialValues: {
|
2024-10-21 14:45:53 +00:00
|
|
|
city: { name: '' }
|
|
|
|
},
|
|
|
|
cities: [
|
|
|
|
{ name: 'New York', code: 'NY' },
|
|
|
|
{ name: 'Rome', code: 'RM' },
|
|
|
|
{ name: 'London', code: 'LDN' },
|
|
|
|
{ name: 'Istanbul', code: 'IST' },
|
|
|
|
{ name: 'Paris', code: 'PRS' }
|
|
|
|
],
|
|
|
|
resolver: null,
|
|
|
|
schema: z.object({
|
|
|
|
city: z.object({
|
2024-10-22 07:31:29 +00:00
|
|
|
name: z.string().min(1, 'City is required.')
|
2024-10-21 14:45:53 +00:00
|
|
|
})
|
|
|
|
}),
|
|
|
|
code: {
|
|
|
|
basic: `
|
2024-10-22 09:14:17 +00:00
|
|
|
<Form v-slot="$form" :resolver="resolver" :initialValues="initialValues" @submit="onFormSubmit" class="flex justify-center flex-col gap-4">
|
2024-10-21 14:45:53 +00:00
|
|
|
<div class="flex flex-col gap-2">
|
2024-10-22 06:31:43 +00:00
|
|
|
<Select name="city" :options="cities" optionLabel="name" placeholder="Select a City" class="w-full md:w-56" />
|
|
|
|
<Message v-if="$form.city?.invalid" severity="error">{{ $form.city.errors[0]?.message }}</Message>
|
2024-10-21 14:45:53 +00:00
|
|
|
</div>
|
|
|
|
<Button type="submit" severity="secondary" class="self-center p-2">Submit</Button>
|
|
|
|
</Form>
|
|
|
|
`,
|
|
|
|
options: `
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
|
|
|
<InputText type="text" v-model="value" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
value: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<\/script>
|
|
|
|
|
|
|
|
`,
|
|
|
|
composition: `
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
|
|
|
<InputText type="text" v-model="value" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
const value = ref(null);
|
|
|
|
<\/script>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
CountryService.getCountries().then((data) => (this.countries = data));
|
|
|
|
this.resolver = zodResolver(this.schema);
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
search(event) {
|
|
|
|
setTimeout(() => {
|
|
|
|
if (!event.query.trim().length) {
|
|
|
|
this.filteredCountries = [...this.countries];
|
|
|
|
} else {
|
|
|
|
this.filteredCountries = this.countries.filter((country) => {
|
|
|
|
return country.name.toLowerCase().startsWith(event.query.toLowerCase());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 250);
|
|
|
|
},
|
|
|
|
onFormSubmit({ valid }) {
|
|
|
|
if (valid) {
|
|
|
|
this.$toast.add({ severity: 'success', summary: 'Form is submitted.', life: 3000 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|