Phone input country restriction (#218)
* Phone input country restriction * Wording --------- Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
parent
a297f2db50
commit
7a4b6dbd79
|
@ -2,7 +2,8 @@
|
||||||
<div :class="wrapperClass" :style="inputStyle">
|
<div :class="wrapperClass" :style="inputStyle">
|
||||||
<slot name="label">
|
<slot name="label">
|
||||||
<label v-if="label" :for="id ? id : name"
|
<label v-if="label" :for="id ? id : name"
|
||||||
:class="[theme.default.label, { 'uppercase text-xs': uppercaseLabels, 'text-sm': !uppercaseLabels }]">
|
:class="[theme.default.label, { 'uppercase text-xs': uppercaseLabels, 'text-sm': !uppercaseLabels }]"
|
||||||
|
>
|
||||||
{{ label }}
|
{{ label }}
|
||||||
<span v-if="required" class="text-red-500 required-dot">*</span>
|
<span v-if="required" class="text-red-500 required-dot">*</span>
|
||||||
</label>
|
</label>
|
||||||
|
@ -13,11 +14,12 @@
|
||||||
</small>
|
</small>
|
||||||
</div>
|
</div>
|
||||||
<div :id="id ? id : name" :name="name" :style="inputStyle" class="flex items-center">
|
<div :id="id ? id : name" :name="name" :style="inputStyle" class="flex items-center">
|
||||||
<v-select class="w-[130px]" dropdown-class="w-[300px]" input-class="rounded-r-none" :data="countries"
|
<v-select v-model="selectedCountryCode" class="w-[130px]" dropdown-class="w-[300px]" input-class="rounded-r-none"
|
||||||
v-model="selectedCountryCode"
|
:data="countries"
|
||||||
|
:disabled="disabled || countries.length===1" :searchable="true" :search-keys="['name']" :option-key="'code'" :color="color"
|
||||||
:has-error="hasValidation && form.errors.has(name)"
|
:has-error="hasValidation && form.errors.has(name)"
|
||||||
:disabled="disabled" :searchable="true" :search-keys="['name']" :option-key="'code'" :color="color"
|
:placeholder="'Select a country'" :uppercase-labels="true" :theme="theme" @input="onChangeCountryCode"
|
||||||
:placeholder="'Select a country'" :uppercase-labels="true" :theme="theme" @input="onChangeCountryCode">
|
>
|
||||||
<template #option="props">
|
<template #option="props">
|
||||||
<div class="flex items-center space-x-2 hover:text-white">
|
<div class="flex items-center space-x-2 hover:text-white">
|
||||||
<country-flag size="normal" class="!-mt-[9px]" :country="props.option.code" />
|
<country-flag size="normal" class="!-mt-[9px]" :country="props.option.code" />
|
||||||
|
@ -34,7 +36,8 @@
|
||||||
</v-select>
|
</v-select>
|
||||||
<input v-model="inputVal" type="text" class="inline-flex-grow !border-l-0 !rounded-l-none" :disabled="disabled"
|
<input v-model="inputVal" type="text" class="inline-flex-grow !border-l-0 !rounded-l-none" :disabled="disabled"
|
||||||
:class="[theme.default.input, { '!ring-red-500 !ring-2': hasValidation && form.errors.has(name), '!cursor-not-allowed !bg-gray-200': disabled }]"
|
:class="[theme.default.input, { '!ring-red-500 !ring-2': hasValidation && form.errors.has(name), '!cursor-not-allowed !bg-gray-200': disabled }]"
|
||||||
:placeholder="placeholder" :style="inputStyle" @input="onInput">
|
:placeholder="placeholder" :style="inputStyle" @input="onInput"
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="help && helpPosition=='below_input'" class="flex">
|
<div v-if="help && helpPosition=='below_input'" class="flex">
|
||||||
<small :class="theme.default.help" class="grow">
|
<small :class="theme.default.help" class="grow">
|
||||||
|
@ -60,13 +63,13 @@ export default {
|
||||||
},
|
},
|
||||||
mixins: [inputMixin],
|
mixins: [inputMixin],
|
||||||
props: {
|
props: {
|
||||||
canOnlyCountry: { type: Boolean, default: false }
|
canOnlyCountry: { type: Boolean, default: false },
|
||||||
|
unavailableCountries: { type: Array, default: () => [] },
|
||||||
},
|
},
|
||||||
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
selectedCountryCode: null,
|
selectedCountryCode: null,
|
||||||
countries: countryCodes,
|
|
||||||
inputVal: null
|
inputVal: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -91,6 +94,14 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
countries () {
|
||||||
|
return countryCodes.filter((item) => {
|
||||||
|
return !this.unavailableCountries.includes(item.code)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
mounted () {
|
mounted () {
|
||||||
if (this.compVal) {
|
if (this.compVal) {
|
||||||
if (!this.compVal.startsWith('+')) {
|
if (!this.compVal.startsWith('+')) {
|
||||||
|
@ -108,18 +119,25 @@ export default {
|
||||||
if (!this.selectedCountryCode) {
|
if (!this.selectedCountryCode) {
|
||||||
this.selectedCountryCode = this.getCountryBy()
|
this.selectedCountryCode = this.getCountryBy()
|
||||||
}
|
}
|
||||||
|
if (!this.selectedCountryCode || this.countries.length === 1) {
|
||||||
|
this.selectedCountryCode = this.countries[0]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
getCountryBy (code = 'US', type = 'code') {
|
getCountryBy (code = 'US', type = 'code') {
|
||||||
if (!code) code = 'US' // Default US
|
if (!code) code = 'US' // Default US
|
||||||
return countryCodes.find((item) => {
|
return this.countries.find((item) => {
|
||||||
return item[type] === code
|
return item[type] === code
|
||||||
})
|
}) ?? null
|
||||||
},
|
},
|
||||||
onInput (event) {
|
onInput (event) {
|
||||||
this.inputVal = event.target.value.replace(/[^0-9]/g, '')
|
this.inputVal = event.target.value.replace(/[^0-9]/g, '')
|
||||||
},
|
},
|
||||||
onChangeCountryCode () {
|
onChangeCountryCode () {
|
||||||
|
if (!this.selectedCountryCode && this.countries.length > 0) {
|
||||||
|
this.selectedCountryCode = this.countries[0]
|
||||||
|
}
|
||||||
if (this.canOnlyCountry && (this.inputVal === null || this.inputVal === '' || !this.inputVal)) {
|
if (this.canOnlyCountry && (this.inputVal === null || this.inputVal === '' || !this.inputVal)) {
|
||||||
this.compVal = this.selectedCountryCode.code + this.selectedCountryCode.dial_code
|
this.compVal = this.selectedCountryCode.code + this.selectedCountryCode.dial_code
|
||||||
}
|
}
|
||||||
|
|
|
@ -302,8 +302,10 @@ export default {
|
||||||
inputProperties.accept = (this.form.is_pro && field.allowed_file_types) ? field.allowed_file_types : ""
|
inputProperties.accept = (this.form.is_pro && field.allowed_file_types) ? field.allowed_file_types : ""
|
||||||
} else if (field.type === 'number' && field.is_rating) {
|
} else if (field.type === 'number' && field.is_rating) {
|
||||||
inputProperties.numberOfStars = parseInt(field.rating_max_value)
|
inputProperties.numberOfStars = parseInt(field.rating_max_value)
|
||||||
} else if (['number', 'phone_number'].includes(field.type)) {
|
} else if (field.type === 'number' || (field.type === 'phone_number' && field.use_simple_text_input)) {
|
||||||
inputProperties.pattern = "/\d*"
|
inputProperties.pattern = '/\d*'
|
||||||
|
} else if (field.type === 'phone_number' && !field.use_simple_text_input) {
|
||||||
|
inputProperties.unavailableCountries = field.unavailable_countries ?? []
|
||||||
}
|
}
|
||||||
|
|
||||||
return inputProperties
|
return inputProperties
|
||||||
|
|
|
@ -204,6 +204,39 @@
|
||||||
>
|
>
|
||||||
Use simple text input
|
Use simple text input
|
||||||
</v-checkbox>
|
</v-checkbox>
|
||||||
|
<template v-if="field.type === 'phone_number' && !field.use_simple_text_input">
|
||||||
|
<v-select v-model="field.unavailable_countries" class="mt-4"
|
||||||
|
:data="allCountries" :multiple="true"
|
||||||
|
:searchable="true" :search-keys="['name']" :option-key="'code'" :emit-key="'code'"
|
||||||
|
label="Disabled countries" :placeholder="'Select a country'"
|
||||||
|
help="Remove countries from the phone input"
|
||||||
|
>
|
||||||
|
<template #selected="{option, selected}">
|
||||||
|
<div class="flex items-center space-x-2 justify-center overflow-hidden">
|
||||||
|
{{ option.length }} selected
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #option="{option, selected}">
|
||||||
|
<div class="flex items-center space-x-2 hover:text-white">
|
||||||
|
<country-flag size="normal" class="!-mt-[9px]" :country="option.code"/>
|
||||||
|
<span class="grow">{{ option.name }}</span>
|
||||||
|
<span>{{ option.dial_code }}</span>
|
||||||
|
</div>
|
||||||
|
<span v-if="selected" class="absolute inset-y-0 right-0 flex items-center pr-2 dark:text-white">
|
||||||
|
<svg class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
|
||||||
|
<path fill-rule="evenodd"
|
||||||
|
d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</v-select>
|
||||||
|
<small class="flex">
|
||||||
|
<a href="#" class="grow" @click.prevent="selectAllCountries">Select All</a>
|
||||||
|
<a href="#" @click.prevent="field.unavailable_countries=null">Un-select All</a>
|
||||||
|
</small>
|
||||||
|
</template>
|
||||||
|
|
||||||
<!-- Pre-fill depends on type -->
|
<!-- Pre-fill depends on type -->
|
||||||
<v-checkbox v-if="field.type=='checkbox'" v-model="field.prefill" class="mt-3"
|
<v-checkbox v-if="field.type=='checkbox'" v-model="field.prefill" class="mt-3"
|
||||||
|
@ -224,7 +257,7 @@
|
||||||
/>
|
/>
|
||||||
<phone-input v-else-if="field.type === 'phone_number' && !field.use_simple_text_input"
|
<phone-input v-else-if="field.type === 'phone_number' && !field.use_simple_text_input"
|
||||||
name="prefill" class="mt-3"
|
name="prefill" class="mt-3"
|
||||||
:form="field" :can-only-country="true"
|
:form="field" :can-only-country="true" :unavailable-countries="field.unavailable_countries ?? []"
|
||||||
label="Pre-filled value"
|
label="Pre-filled value"
|
||||||
/>
|
/>
|
||||||
<text-area-input v-else-if="field.type === 'text' && field.multi_lines"
|
<text-area-input v-else-if="field.type === 'text' && field.multi_lines"
|
||||||
|
@ -305,7 +338,8 @@
|
||||||
Generates a unique id
|
Generates a unique id
|
||||||
</v-checkbox>
|
</v-checkbox>
|
||||||
<p class="text-gray-400 mb-3 text-xs">
|
<p class="text-gray-400 mb-3 text-xs">
|
||||||
If you enable this, we will hide this field and fill it with a unique id (UUID format) on each new form submission
|
If you enable this, we will hide this field and fill it with a unique id (UUID format) on each new form
|
||||||
|
submission
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<v-checkbox v-model="field.generates_auto_increment_id"
|
<v-checkbox v-model="field.generates_auto_increment_id"
|
||||||
|
@ -327,10 +361,12 @@
|
||||||
<script>
|
<script>
|
||||||
const FormBlockLogicEditor = () => import('../../components/form-logic-components/FormBlockLogicEditor.vue')
|
const FormBlockLogicEditor = () => import('../../components/form-logic-components/FormBlockLogicEditor.vue')
|
||||||
import timezones from '../../../../../../data/timezones.json'
|
import timezones from '../../../../../../data/timezones.json'
|
||||||
|
import countryCodes from '../../../../../../data/country_codes.json'
|
||||||
|
import CountryFlag from 'vue-country-flag'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'FieldOptions',
|
name: 'FieldOptions',
|
||||||
components: {FormBlockLogicEditor},
|
components: {FormBlockLogicEditor, CountryFlag},
|
||||||
props: {
|
props: {
|
||||||
field: {
|
field: {
|
||||||
type: Object,
|
type: Object,
|
||||||
|
@ -346,7 +382,8 @@ export default {
|
||||||
typesWithoutPlaceholder: ['date', 'checkbox', 'files'],
|
typesWithoutPlaceholder: ['date', 'checkbox', 'files'],
|
||||||
editorToolbarCustom: [
|
editorToolbarCustom: [
|
||||||
['bold', 'italic', 'underline', 'link'],
|
['bold', 'italic', 'underline', 'link'],
|
||||||
]
|
],
|
||||||
|
allCountries: countryCodes,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -523,6 +560,11 @@ export default {
|
||||||
if (!val) {
|
if (!val) {
|
||||||
this.$set(this.field, 'help_position', 'below_input')
|
this.$set(this.field, 'help_position', 'below_input')
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
selectAllCountries() {
|
||||||
|
this.$set(this.field, 'unavailable_countries', this.allCountries.map(item => {
|
||||||
|
return item.code
|
||||||
|
}))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue