mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
114 lines
2.9 KiB
Vue
114 lines
2.9 KiB
Vue
<template>
|
|
<ds-form
|
|
class="enter-nonce"
|
|
v-model="formData"
|
|
:schema="formSchema"
|
|
@submit="handleSubmitVerify"
|
|
@input="handleInput"
|
|
@input-valid="handleInputValid"
|
|
>
|
|
<ds-text>
|
|
<!-- Wolle {{ $t('components.enter-nonce.form.description') }} -->
|
|
Your e-mail address:
|
|
<b>{{ this.sliderData.collectedInputData.email }}</b>
|
|
</ds-text>
|
|
<ds-input
|
|
:placeholder="$t('components.enter-nonce.form.nonce')"
|
|
model="nonce"
|
|
name="nonce"
|
|
id="nonce"
|
|
icon="question-circle"
|
|
/>
|
|
<ds-text>
|
|
{{ $t('components.enter-nonce.form.description') }}
|
|
</ds-text>
|
|
<!-- Wolle <base-button :disabled="disabled" filled name="submit" type="submit">
|
|
{{ $t('components.enter-nonce.form.next') }}
|
|
</base-button> -->
|
|
<slot></slot>
|
|
</ds-form>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'RegistrationItemEnterNonce',
|
|
props: {
|
|
sliderData: { type: Object, required: true },
|
|
},
|
|
data() {
|
|
return {
|
|
formData: {
|
|
nonce: '',
|
|
},
|
|
formSchema: {
|
|
nonce: {
|
|
type: 'string',
|
|
// Wolle min: 6,
|
|
// max: 6,
|
|
required: true,
|
|
message: this.$t('components.enter-nonce.form.validations.length'),
|
|
},
|
|
},
|
|
// Wolle disabled: true,
|
|
}
|
|
},
|
|
mounted: function () {
|
|
this.$nextTick(function () {
|
|
// Code that will run only after the entire view has been rendered
|
|
// console.log('mounted !!! ')
|
|
this.formData.nonce = this.sliderData.collectedInputData.nonce
|
|
? this.sliderData.collectedInputData.nonce
|
|
: ''
|
|
this.sendValidation()
|
|
|
|
// Wolle this.sliderData.setSliderValuesCallback(this.validInput, {}, {}, this.onNextClick)
|
|
this.sliderData.setSliderValuesCallback(this.valid, {}, this.onNextClick)
|
|
})
|
|
},
|
|
computed: {
|
|
valid() {
|
|
return this.formData.nonce.length === 6
|
|
},
|
|
},
|
|
methods: {
|
|
sendValidation() {
|
|
const { nonce } = this.formData
|
|
const values = {
|
|
nonce,
|
|
}
|
|
// console.log('sendValidation !!! value: ', value)
|
|
this.sliderData.setSliderValuesCallback(this.valid, { collectedInputData: values })
|
|
},
|
|
async handleInput() {
|
|
// this.disabled = true
|
|
// this.sliderData.setSliderValuesCallback(false)
|
|
this.sendValidation()
|
|
},
|
|
async handleInputValid() {
|
|
// this.disabled = false
|
|
// const { nonce } = this.formData
|
|
// validate in backend?
|
|
// toaster?
|
|
// this.sliderData.setSliderValuesCallback(true, { nonce })
|
|
this.sendValidation()
|
|
},
|
|
handleSubmitVerify() {
|
|
// const { nonce } = this.formData
|
|
// const email = this.email
|
|
// this.$emit('nonceEntered', { email, nonce })
|
|
},
|
|
onNextClick() {
|
|
return true
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.enter-nonce {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: $space-large 0 $space-xxx-small 0;
|
|
}
|
|
</style>
|