mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-25 08:47:54 +00:00
126 lines
3.2 KiB
Vue
126 lines
3.2 KiB
Vue
<template>
|
|
<div>
|
|
<SidebarApplication
|
|
ref="sidebarApplication"
|
|
:workspace="workspace"
|
|
:application="application"
|
|
@selected="selected"
|
|
>
|
|
<template v-if="isAppSelected(application)" #body>
|
|
<ul class="tree__subs">
|
|
<SidebarItemBuilder
|
|
v-for="page in orderedPages"
|
|
:key="page.id"
|
|
v-sortable="{
|
|
id: page.id,
|
|
update: orderPages,
|
|
marginTop: -1.5,
|
|
enabled: $hasPermission(
|
|
'builder.order_pages',
|
|
application,
|
|
application.workspace.id
|
|
),
|
|
}"
|
|
:builder="application"
|
|
:page="page"
|
|
></SidebarItemBuilder>
|
|
</ul>
|
|
<ul v-if="pendingJobs.length" class="tree__subs">
|
|
<component
|
|
:is="getPendingJobComponent(job)"
|
|
v-for="job in pendingJobs"
|
|
:key="job.id"
|
|
:job="job"
|
|
>
|
|
</component>
|
|
</ul>
|
|
<a
|
|
v-if="
|
|
$hasPermission(
|
|
'builder.create_page',
|
|
application,
|
|
application.workspace.id
|
|
)
|
|
"
|
|
class="tree__sub-add"
|
|
@click="$refs.createPageModal.show()"
|
|
>
|
|
<i class="tree__sub-add-icon iconoir-plus"></i>
|
|
{{ $t('sidebarComponentBuilder.createPage') }}
|
|
</a>
|
|
<CreatePageModal
|
|
ref="createPageModal"
|
|
:builder="application"
|
|
:workspace="application.workspace"
|
|
></CreatePageModal>
|
|
</template>
|
|
</SidebarApplication>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import SidebarApplication from '@baserow/modules/core/components/sidebar/SidebarApplication'
|
|
import { mapGetters } from 'vuex'
|
|
import { notifyIf } from '@baserow/modules/core/utils/error'
|
|
import SidebarItemBuilder from '@baserow/modules/builder/components/sidebar/SidebarItemBuilder'
|
|
import CreatePageModal from '@baserow/modules/builder/components/page/CreatePageModal'
|
|
|
|
export default {
|
|
name: 'TemplateSidebar',
|
|
components: {
|
|
CreatePageModal,
|
|
SidebarItemBuilder,
|
|
SidebarApplication,
|
|
},
|
|
props: {
|
|
application: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
workspace: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
...mapGetters({
|
|
isAppSelected: 'application/isSelected',
|
|
getVisiblePages: 'page/getVisiblePages',
|
|
}),
|
|
orderedPages() {
|
|
return this.getVisiblePages(this.application)
|
|
},
|
|
pendingJobs() {
|
|
return this.$store.getters['job/getAll'].filter((job) =>
|
|
this.$registry
|
|
.get('job', job.type)
|
|
.isJobPartOfApplication(job, this.application)
|
|
)
|
|
},
|
|
},
|
|
methods: {
|
|
selected(application) {
|
|
try {
|
|
this.$store.dispatch('application/select', application)
|
|
} catch (error) {
|
|
notifyIf(error, 'workspace')
|
|
}
|
|
},
|
|
orderPages(order, oldOrder) {
|
|
try {
|
|
this.$store.dispatch('page/order', {
|
|
builder: this.application,
|
|
order,
|
|
oldOrder,
|
|
})
|
|
} catch (error) {
|
|
notifyIf(error, 'page')
|
|
}
|
|
},
|
|
getPendingJobComponent(job) {
|
|
return this.$registry.get('job', job.type).getSidebarComponent()
|
|
},
|
|
},
|
|
}
|
|
</script>
|