1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-21 16:06:56 +00:00
bramw_baserow/web-frontend/modules/builder/components/domain/CustomDomainForm.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.8 KiB
Vue
Raw Normal View History

<template>
<form @submit.prevent="submit">
<FormGroup
small-label
required
:label="$t('customDomainForm.domainNameLabel')"
2025-02-17 13:17:35 +00:00
:error-message="getFirstErrorMessage('domain_name') || serverErrorMessage"
>
<FormInput
ref="domainName"
2025-02-17 13:17:35 +00:00
v-model="v$.values.domain_name.$model"
size="large"
2025-02-17 13:17:35 +00:00
@input="handleInput"
@blur="v$.values.domain_name.$touch"
/>
</FormGroup>
</form>
</template>
<script>
2025-02-17 13:17:35 +00:00
import { useVuelidate } from '@vuelidate/core'
import { required, maxLength, helpers } from '@vuelidate/validators'
2023-09-18 08:29:09 +00:00
import domainForm from '@baserow/modules/builder/mixins/domainForm'
export default {
2023-09-18 08:29:09 +00:00
name: 'CustomDomainForm',
mixins: [domainForm],
2025-02-17 13:17:35 +00:00
setup() {
return { v$: useVuelidate() }
},
data() {
return {
values: {
domain_name: '',
},
}
},
2025-02-17 13:17:35 +00:00
computed: {
serverErrorMessage() {
return this.serverErrors.domain_name
? this.serverErrors.domain_name.code === 'invalid'
? this.$t('domainForm.invalidDomain')
: this.serverErrors.domain_name.code === 'unique'
? this.$t('domainForm.notUniqueDomain')
: ''
: ''
},
},
mounted() {
this.$refs.domainName.focus()
},
2025-02-17 13:17:35 +00:00
methods: {
handleInput() {
this.serverErrors.domain_name = null
this.v$.values.domain_name.$touch()
this.$emit('error', this.v$.$error)
},
},
validations() {
return {
values: {
domain_name: {
2025-02-17 13:17:35 +00:00
required: helpers.withMessage(
this.$t('error.requiredField'),
required
),
maxLength: helpers.withMessage(
this.$t('error.maxLength', { max: 255 }),
maxLength(255)
),
},
},
}
},
}
</script>