|
|
|
<script setup lang="ts">
|
|
|
|
import type { FormType, GalleryType, GridType, KanbanType, ViewTypes } from 'nocodb-sdk'
|
|
|
|
import MenuTop from './MenuTop.vue'
|
|
|
|
import MenuBottom from './MenuBottom.vue'
|
|
|
|
import Toolbar from './Toolbar.vue'
|
|
|
|
import { inject, provide, ref, useApi, useViews, watch } from '#imports'
|
|
|
|
import { ActiveViewInj, MetaInj, ViewListInj } from '~/context'
|
|
|
|
import MdiXml from '~icons/mdi/xml'
|
|
|
|
import MdiHook from '~icons/mdi/hook'
|
|
|
|
|
|
|
|
const meta = inject(MetaInj, ref())
|
|
|
|
|
|
|
|
const activeView = inject(ActiveViewInj, ref())
|
|
|
|
|
|
|
|
const { views, loadViews } = useViews(meta)
|
|
|
|
|
|
|
|
const { api } = useApi()
|
|
|
|
|
|
|
|
provide(ViewListInj, views)
|
|
|
|
|
|
|
|
/** Sidebar visible */
|
|
|
|
const drawerOpen = inject('navDrawerOpen', ref(true))
|
|
|
|
|
|
|
|
const sidebarCollapsed = computed(() => !drawerOpen.value)
|
|
|
|
|
|
|
|
/** View type to create from modal */
|
|
|
|
let viewCreateType = $ref<ViewTypes>()
|
|
|
|
|
|
|
|
/** View title to create from modal (when duplicating) */
|
|
|
|
let viewCreateTitle = $ref('')
|
|
|
|
|
|
|
|
/** is view creation modal open */
|
|
|
|
let modalOpen = $ref(false)
|
|
|
|
|
|
|
|
/** Watch current views and on change set the next active view */
|
|
|
|
watch(
|
|
|
|
views,
|
|
|
|
(nextViews) => {
|
|
|
|
if (nextViews.length) {
|
|
|
|
activeView.value = nextViews[0]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ immediate: true },
|
|
|
|
)
|
|
|
|
|
|
|
|
/** Open view creation modal */
|
|
|
|
function openModal({ type, title = '' }: { type: ViewTypes; title: string }) {
|
|
|
|
modalOpen = true
|
|
|
|
viewCreateType = type
|
|
|
|
viewCreateTitle = title
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Handle view creation */
|
|
|
|
function onCreate(view: GridType | FormType | KanbanType | GalleryType) {
|
|
|
|
views.value.push(view)
|
|
|
|
activeView.value = view
|
|
|
|
modalOpen = false
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<a-layout-sider
|
|
|
|
:collapsed="sidebarCollapsed"
|
|
|
|
collapsiple
|
|
|
|
collapsed-width="50"
|
|
|
|
width="250"
|
|
|
|
class="shadow !mt-[-9px]"
|
|
|
|
style="height: calc(100% + 9px)"
|
|
|
|
theme="light"
|
|
|
|
>
|
|
|
|
<Toolbar v-if="drawerOpen" class="flex items-center py-3 px-3 justify-between border-b-1" />
|
|
|
|
|
|
|
|
<Toolbar v-else class="py-3 px-2 max-w-[50px] flex !flex-col-reverse gap-4 items-center mt-[-1px]">
|
|
|
|
<template #start>
|
|
|
|
<MdiHook class="rounded text-xl p-1 text-gray-500 hover:(text-white bg-pink-500 shadow)" />
|
|
|
|
|
|
|
|
<div class="dot" />
|
|
|
|
|
|
|
|
<MdiXml class="rounded text-xl p-1 text-gray-500 hover:(text-white bg-pink-500 shadow)" />
|
|
|
|
|
|
|
|
<div class="dot" />
|
|
|
|
</template>
|
|
|
|
</Toolbar>
|
|
|
|
|
|
|
|
<div v-if="drawerOpen" class="flex-1 flex flex-col">
|
|
|
|
<MenuTop @open-modal="openModal" @deleted="loadViews" @sorted="loadViews" />
|
|
|
|
|
|
|
|
<a-divider class="my-2" />
|
|
|
|
|
|
|
|
<MenuBottom @open-modal="openModal" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<dlg-view-create v-if="views" v-model="modalOpen" :title="viewCreateTitle" :type="viewCreateType" @created="onCreate" />
|
|
|
|
</a-layout-sider>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
:deep(.ant-menu-title-content) {
|
|
|
|
@apply w-full;
|
|
|
|
}
|
|
|
|
|
|
|
|
:deep(.ant-layout-sider-children) {
|
|
|
|
@apply flex flex-col;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dot {
|
|
|
|
@apply w-[3px] h-[3px] bg-gray-300 rounded-full;
|
|
|
|
}
|
|
|
|
</style>
|