1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-24 21:14:05 +00:00
bramw_baserow/web-frontend/modules/database/components/field/CreateFieldContext.vue
2020-08-28 09:48:37 +00:00

60 lines
1.2 KiB
Vue

<template>
<Context ref="context">
<FieldForm ref="form" :table="table" @submitted="submit">
<div class="context__form-actions">
<button
class="button"
:class="{ 'button--loading': loading }"
:disabled="loading"
>
Create
</button>
</div>
</FieldForm>
</Context>
</template>
<script>
import context from '@baserow/modules/core/mixins/context'
import FieldForm from '@baserow/modules/database/components/field/FieldForm'
import { notifyIf } from '@baserow/modules/core/utils/error'
export default {
name: 'CreateFieldContext',
components: { FieldForm },
mixins: [context],
props: {
table: {
type: Object,
required: true,
},
},
data() {
return {
loading: false,
}
},
methods: {
async submit(values) {
this.loading = true
const type = values.type
delete values.type
try {
await this.$store.dispatch('field/create', {
type,
values,
table: this.table,
})
this.loading = false
this.$refs.form.reset()
this.hide()
} catch (error) {
this.loading = false
notifyIf(error, 'field')
}
},
},
}
</script>