mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-23 04:40:15 +00:00
67 lines
1.5 KiB
Vue
67 lines
1.5 KiB
Vue
<template>
|
|
<Modal>
|
|
<h2 class="box__title">
|
|
{{ $t('createPageModal.header') }}
|
|
</h2>
|
|
<PageForm
|
|
ref="pageForm"
|
|
:creation="true"
|
|
:builder="builder"
|
|
@submitted="addPage"
|
|
>
|
|
<div class="actions actions--right">
|
|
<button
|
|
:class="{ 'button--loading': loading }"
|
|
class="button button--large"
|
|
type="submit"
|
|
>
|
|
{{ $t('createPageModal.submit') }}
|
|
</button>
|
|
</div>
|
|
</PageForm>
|
|
</Modal>
|
|
</template>
|
|
|
|
<script>
|
|
import modal from '@baserow/modules/core/mixins/modal'
|
|
import { notifyIf } from '@baserow/modules/core/utils/error'
|
|
import PageForm from '@baserow/modules/builder/components/page/PageForm'
|
|
|
|
export default {
|
|
name: 'CreatePageModal',
|
|
components: { PageForm },
|
|
mixins: [modal],
|
|
props: {
|
|
builder: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
}
|
|
},
|
|
methods: {
|
|
async addPage({ name, path }) {
|
|
this.loading = true
|
|
try {
|
|
const page = await this.$store.dispatch('page/create', {
|
|
builder: this.builder,
|
|
name,
|
|
path,
|
|
})
|
|
this.$refs.pageForm.$v.$reset()
|
|
this.hide()
|
|
await this.$router.push({
|
|
name: 'builder-page',
|
|
params: { builderId: this.builder.id, pageId: page.id },
|
|
})
|
|
} catch (error) {
|
|
notifyIf(error, 'application')
|
|
}
|
|
this.loading = false
|
|
},
|
|
},
|
|
}
|
|
</script>
|