mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-06 22:08:52 +00:00
88 lines
2.3 KiB
Vue
88 lines
2.3 KiB
Vue
<template>
|
|
<SidebarApplication :application="application" @selected="selected">
|
|
<template #context>
|
|
<li>
|
|
<nuxt-link
|
|
:to="{
|
|
name: 'database-api-docs-detail',
|
|
params: {
|
|
databaseId: application.id,
|
|
},
|
|
}"
|
|
>
|
|
<i class="context__menu-icon fas fa-fw fa-book"></i>
|
|
View API docs
|
|
</nuxt-link>
|
|
</li>
|
|
</template>
|
|
<template v-if="application._.selected" #body>
|
|
<ul class="tree__subs">
|
|
<SidebarItem
|
|
v-for="table in orderedTables"
|
|
:key="table.id"
|
|
v-sortable="{
|
|
id: table.id,
|
|
update: orderTables,
|
|
marginLeft: 34,
|
|
marginRight: 10,
|
|
}"
|
|
:database="application"
|
|
:table="table"
|
|
></SidebarItem>
|
|
</ul>
|
|
<a class="tree__sub-add" @click="$refs.createTableModal.show()">
|
|
<i class="fas fa-plus"></i>
|
|
Create table
|
|
</a>
|
|
<CreateTableModal
|
|
ref="createTableModal"
|
|
:application="application"
|
|
></CreateTableModal>
|
|
</template>
|
|
</SidebarApplication>
|
|
</template>
|
|
|
|
<script>
|
|
import { notifyIf } from '@baserow/modules/core/utils/error'
|
|
import SidebarItem from '@baserow/modules/database/components/sidebar/SidebarItem'
|
|
import CreateTableModal from '@baserow/modules/database/components/table/CreateTableModal'
|
|
import SidebarApplication from '@baserow/modules/core/components/sidebar/SidebarApplication'
|
|
|
|
export default {
|
|
name: 'Sidebar',
|
|
components: { SidebarApplication, SidebarItem, CreateTableModal },
|
|
props: {
|
|
application: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
orderedTables() {
|
|
return this.application.tables
|
|
.map((table) => table)
|
|
.sort((a, b) => a.order - b.order)
|
|
},
|
|
},
|
|
methods: {
|
|
async selected(application) {
|
|
try {
|
|
await this.$store.dispatch('application/select', application)
|
|
} catch (error) {
|
|
notifyIf(error, 'group')
|
|
}
|
|
},
|
|
async orderTables(order, oldOrder) {
|
|
try {
|
|
await this.$store.dispatch('table/order', {
|
|
database: this.application,
|
|
order,
|
|
oldOrder,
|
|
})
|
|
} catch (error) {
|
|
notifyIf(error, 'table')
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|