1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-03 04:35:31 +00:00

Fix duplicating table and page in left sidebar

This commit is contained in:
Bram Wiepjes 2024-08-01 17:16:30 +02:00
parent 9015beef03
commit 7c7e693978
2 changed files with 38 additions and 0 deletions
web-frontend/modules
builder/components/sidebar
database/components/sidebar

View file

@ -25,6 +25,15 @@
: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(
@ -82,6 +91,13 @@ export default {
.map((page) => page)
.sort((a, b) => a.order - b.order)
},
pendingJobs() {
return this.$store.getters['job/getAll'].filter((job) =>
this.$registry
.get('job', job.type)
.isJobPartOfApplication(job, this.application)
)
},
},
methods: {
selected(application) {
@ -102,6 +118,9 @@ export default {
notifyIf(error, 'page')
}
},
getPendingJobComponent(job) {
return this.$registry.get('job', job.type).getSidebarComponent()
},
},
}
</script>

View file

@ -39,6 +39,15 @@
:table="table"
></SidebarItem>
</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(
@ -88,6 +97,13 @@ export default {
.map((table) => table)
.sort((a, b) => a.order - b.order)
},
pendingJobs() {
return this.$store.getters['job/getAll'].filter((job) =>
this.$registry
.get('job', job.type)
.isJobPartOfApplication(job, this.application)
)
},
...mapGetters({ isAppSelected: 'application/isSelected' }),
},
methods: {
@ -109,6 +125,9 @@ export default {
notifyIf(error, 'table')
}
},
getPendingJobComponent(job) {
return this.$registry.get('job', job.type).getSidebarComponent()
},
},
}
</script>