1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-24 16:36:46 +00:00
bramw_baserow/web-frontend/modules/database/components/form/BlankDatabaseForm.vue
2024-07-05 09:35:08 +00:00

81 lines
1.7 KiB
Vue

<template>
<form @submit.prevent="submit">
<FormGroup :error="fieldHasErrors('name')" required small-label>
<template #label>
<i class="iconoir-text"></i>
{{ $t('applicationForm.nameLabel') }}
</template>
<FormInput
ref="name"
v-model="values.name"
:error="fieldHasErrors('name')"
type="text"
size="large"
:placeholder="$t('applicationForm.namePlaceholder')"
@focus.once="$event.target.select()"
@blur="$v.values.name.$touch()"
></FormInput>
<template #error>
{{ $t('error.requiredField') }}
</template>
</FormGroup>
<div class="actions">
<div class="align-right">
<Button
type="primary"
size="large"
:loading="loading"
:disabled="loading"
>
{{ $t('action.add') }}
{{ databaseApplicationType.getName() | lowercase }}
</Button>
</div>
</div>
</form>
</template>
<script>
import form from '@baserow/modules/core/mixins/form'
import { required } from 'vuelidate/lib/validators'
export default {
name: 'BlankDatabaseForm',
mixins: [form],
props: {
defaultName: {
type: String,
required: false,
default: '',
},
loading: {
type: Boolean,
required: true,
},
},
data() {
return {
values: {
name: this.defaultName,
},
}
},
computed: {
databaseApplicationType() {
return this.$registry.get('application', 'database')
},
},
mounted() {
this.$refs.name.focus()
},
validations: {
values: {
name: { required },
},
},
}
</script>