Ocelot-Social/webapp/components/Registration/RegistrationItemEnterInvite.vue
2021-01-27 17:14:36 +01:00

79 lines
1.8 KiB
Vue

<template>
<ds-form
class="enter-nonce"
v-model="formData"
:schema="formSchema"
@submit="handleSubmitVerify"
@input="handleInput"
@input-valid="handleInputValid"
>
<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: 'RegistrationItemEnterInvite',
props: {
email: { type: String, required: true },
},
data() {
return {
formData: {
nonce: '',
},
formSchema: {
nonce: {
type: 'string',
min: 6,
max: 6,
required: true,
message: this.$t('components.enter-nonce.form.validations.length'),
},
},
disabled: true,
}
},
methods: {
async handleInput() {
this.disabled = true
},
async handleInputValid() {
console.log('handleInputValid !!!')
// Wolle this.disabled = false
const { nonce } = this.formData
const email = this.email
// Wolle this.$emit('nonceEntered', { email, nonce })
this.$emit('validation', { email, nonce })
},
handleSubmitVerify() {
// const { nonce } = this.formData
// const email = this.email
// Wolle this.$emit('nonceEntered', { email, nonce })
// this.$emit('validation', { email, nonce })
},
},
}
</script>
<style lang="scss">
.enter-nonce {
display: flex;
flex-direction: column;
margin: $space-large 0 $space-xxx-small 0;
}
</style>