mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
335 lines
9.1 KiB
335 lines
9.1 KiB
<template>
|
|
<div>
|
|
<label
|
|
v-if="showFieldNames"
|
|
:for="isCodeSent ? 'one_time_code' : field.uuid"
|
|
class="label text-xl sm:text-2xl py-0 mb-2 sm:mb-3.5 field-name-label"
|
|
:class="{ 'mb-2': !field.description }"
|
|
>
|
|
<MarkdownContent
|
|
v-if="field.title"
|
|
:string="field.title"
|
|
/>
|
|
<template v-else>
|
|
{{ field.name || t('verified_phone_number') }}
|
|
</template>
|
|
</label>
|
|
<div
|
|
v-if="field.description"
|
|
dir="auto"
|
|
class="mb-3 px-1 field-description-text"
|
|
>
|
|
<MarkdownContent :string="field.description" />
|
|
</div>
|
|
<div>
|
|
<input
|
|
type="hidden"
|
|
name="normalize_phone"
|
|
value="true"
|
|
>
|
|
<div v-if="isCodeSent">
|
|
<input
|
|
id="one_time_code"
|
|
class="base-input !text-2xl w-full text-center"
|
|
name="one_time_code"
|
|
type="text"
|
|
autocomplete="one-time-code"
|
|
:placeholder="t('six_digits_code')"
|
|
required
|
|
maxlength="6"
|
|
autofocus
|
|
inputmode="decimal"
|
|
@input="onInputCode"
|
|
>
|
|
<div class="flex justify-between mt-2 -mb-2 md:-mb-4">
|
|
<a
|
|
v-if="!defaultValue"
|
|
href="#"
|
|
class="link change-phone-number-link"
|
|
@click.prevent="isCodeSent = false"
|
|
>
|
|
{{ t('change_phone_number') }}
|
|
</a>
|
|
<span
|
|
v-if="resendCodeCountdown > 0"
|
|
class="link"
|
|
>
|
|
{{ t('wait_countdown_seconds').replace('{countdown}', resendCodeCountdown) }}
|
|
</span>
|
|
<a
|
|
v-else
|
|
href="#"
|
|
class="link resend-code-link"
|
|
@click.prevent="resendCode"
|
|
>
|
|
{{ isResendLoading ? t('sending') : t('resend_code') }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-show="!isCodeSent"
|
|
class="flex w-full rounded-full outline-neutral-content outline-2 outline-offset-2 focus-within:outline phone-number-input-container"
|
|
>
|
|
<div
|
|
id="country_code"
|
|
class="relative inline-block"
|
|
>
|
|
<div class="btn bg-base-200 border border-neutral-300 text-2xl whitespace-nowrap font-normal rounded-l-full country-code-select-label">
|
|
{{ selectedCountry.flag }} +{{ selectedCountry.dial }}
|
|
</div>
|
|
<select
|
|
id="country_code_select"
|
|
class="absolute top-0 bottom-0 right-0 left-0 opacity-0 w-full h-full cursor-pointer"
|
|
:disabled="!!defaultValue"
|
|
@change="onCountrySelect(countries.find((country) => country.flag === $event.target.value))"
|
|
>
|
|
<option
|
|
v-for="(country, index) in countries"
|
|
:key="index"
|
|
:value="country.flag"
|
|
>
|
|
{{ country.flag }} {{ country.name }}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<input
|
|
:name="`values[${field.uuid}]`"
|
|
:value="fullInternationalPhoneValue"
|
|
hidden
|
|
>
|
|
<input
|
|
:id="field.uuid"
|
|
ref="phone"
|
|
:value="phoneValue"
|
|
:readonly="!!defaultValue"
|
|
class="base-input !text-2xl !rounded-l-none !border-l-0 !outline-none w-full"
|
|
autocomplete="tel"
|
|
type="tel"
|
|
inputmode="tel"
|
|
:required="field.required"
|
|
placeholder="234 567-8900"
|
|
@input="onPhoneInput"
|
|
@focus="$emit('focus')"
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import MarkdownContent from './markdown_content'
|
|
import phoneData from './phone_data'
|
|
|
|
function throttle (func, delay) {
|
|
let lastCallTime = 0
|
|
|
|
return function (...args) {
|
|
const now = Date.now()
|
|
|
|
if (now - lastCallTime >= delay) {
|
|
func.apply(this, args)
|
|
lastCallTime = now
|
|
}
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'PhoneStep',
|
|
components: {
|
|
MarkdownContent
|
|
},
|
|
inject: ['t', 'baseUrl'],
|
|
props: {
|
|
field: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
verifiedValue: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
},
|
|
submitterSlug: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
locale: {
|
|
type: String,
|
|
required: false,
|
|
default: 'en'
|
|
},
|
|
showFieldNames: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: true
|
|
},
|
|
modelValue: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
},
|
|
defaultValue: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
}
|
|
},
|
|
emits: ['update:model-value', 'focus', 'submit'],
|
|
data () {
|
|
return {
|
|
isCodeSent: false,
|
|
codeSentAt: null,
|
|
resendCodeCountdown: 0,
|
|
isResendLoading: false,
|
|
phoneValue: this.modelValue || this.defaultValue || '',
|
|
selectedCountry: {}
|
|
}
|
|
},
|
|
computed: {
|
|
countries () {
|
|
return phoneData.map(([iso, name, dial, flag, tz]) => {
|
|
return { iso, name, dial, flag, tz }
|
|
})
|
|
},
|
|
countriesDialIndex () {
|
|
return this.countries.reduce((acc, item) => {
|
|
acc[item.dial] ||= item
|
|
|
|
return acc
|
|
}, {})
|
|
},
|
|
dialCodesRegexp () {
|
|
const dialCodes = this.countries.map((country) => country.dial).sort((a, b) => b.length - a.length)
|
|
|
|
return new RegExp(`^\\+(${dialCodes.join('|')})`)
|
|
},
|
|
detectedPhoneValueDialCode () {
|
|
return (this.phoneValue || '').replace(/[^\d+]/g, '').match(this.dialCodesRegexp)?.[1]
|
|
},
|
|
fullInternationalPhoneValue () {
|
|
if (this.detectedPhoneValueDialCode) {
|
|
return this.phoneValue
|
|
} else if (this.phoneValue) {
|
|
return ['+', this.selectedCountry.dial, this.phoneValue].filter(Boolean).join('')
|
|
} else {
|
|
return ''
|
|
}
|
|
}
|
|
},
|
|
mounted () {
|
|
const browserTimeZone = Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
|
|
if (this.detectedPhoneValueDialCode) {
|
|
this.selectedCountry = this.countriesDialIndex[this.detectedPhoneValueDialCode]
|
|
} else if (browserTimeZone) {
|
|
const tz = browserTimeZone.split('/')[1]
|
|
|
|
this.selectedCountry = this.countries.find((country) => country.tz.includes(tz)) || this.countries[0]
|
|
}
|
|
},
|
|
beforeUnmount () {
|
|
if (this.interval) {
|
|
clearInterval(this.interval)
|
|
}
|
|
},
|
|
methods: {
|
|
emitSubmit: throttle(function (e) {
|
|
this.$emit('submit')
|
|
}, 1000),
|
|
onCountrySelect (country) {
|
|
if (this.selectedCountry.flag !== country.flag) {
|
|
this.phoneValue = this.phoneValue.replace(`+${this.selectedCountry.dial}`, `+${country.dial}`)
|
|
}
|
|
|
|
this.selectedCountry = country
|
|
|
|
this.$refs.phone.focus()
|
|
},
|
|
onPhoneInput (e) {
|
|
this.phoneValue = e.target.value
|
|
|
|
if (this.detectedPhoneValueDialCode) {
|
|
this.selectedCountry = this.countriesDialIndex[this.detectedPhoneValueDialCode]
|
|
}
|
|
},
|
|
onInputCode (e) {
|
|
if (e.target.value.length === 6) {
|
|
this.emitSubmit()
|
|
}
|
|
},
|
|
resendCode () {
|
|
if (this.codeSentAt && Date.now() - this.codeSentAt < 15000) {
|
|
this.startResendCodeCountdown()
|
|
} else {
|
|
this.isResendLoading = true
|
|
|
|
this.sendVerificationCode().then(() => {
|
|
alert(this.t('verification_code_has_been_resent'))
|
|
}).finally(() => {
|
|
this.isResendLoading = false
|
|
})
|
|
}
|
|
},
|
|
startResendCodeCountdown () {
|
|
this.resendCodeCountdown = 15 - parseInt((Date.now() - this.codeSentAt) / 1000)
|
|
|
|
this.interval = setInterval(() => {
|
|
this.resendCodeCountdown--
|
|
|
|
if (this.resendCodeCountdown <= 0) {
|
|
clearInterval(this.interval)
|
|
}
|
|
}, 1000)
|
|
},
|
|
sendVerificationCode () {
|
|
return fetch(this.baseUrl + '/api/send_phone_verification_code', {
|
|
method: 'POST',
|
|
body: JSON.stringify({
|
|
submitter_slug: this.submitterSlug,
|
|
locale: this.locale,
|
|
phone: this.fullInternationalPhoneValue
|
|
}),
|
|
headers: { 'Content-Type': 'application/json' }
|
|
}).then(async (resp) => {
|
|
if ([422, 429].includes(resp.status)) {
|
|
const data = await resp.json()
|
|
|
|
if (resp.status === 422) {
|
|
alert(data.error || this.t('number_phone_is_invalid').replace('{number}', this.fullInternationalPhoneValue))
|
|
} else if (resp.status === 429) {
|
|
alert(data.error)
|
|
}
|
|
|
|
return Promise.reject(new Error(data.error))
|
|
} else if (resp.ok) {
|
|
this.codeSentAt = Date.now()
|
|
|
|
return resp
|
|
}
|
|
})
|
|
},
|
|
async submit () {
|
|
if (this.verifiedValue && this.verifiedValue === this.modelValue) {
|
|
return Promise.resolve({})
|
|
}
|
|
|
|
if (!this.fullInternationalPhoneValue.toString().startsWith('+')) {
|
|
alert(this.t('use_international_format'))
|
|
|
|
return Promise.reject(new Error('phone invalid'))
|
|
} else if (!this.isCodeSent) {
|
|
return this.sendVerificationCode().then(() => {
|
|
this.$emit('update:model-value', this.fullInternationalPhoneValue)
|
|
|
|
this.isCodeSent = true
|
|
|
|
return Promise.reject(new Error('verify with code'))
|
|
})
|
|
} else {
|
|
return Promise.resolve({})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|