You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Ref } from 'vue'
|
|
|
|
import type { TableType } from 'nocodb-sdk'
|
|
|
|
|
|
|
|
import { ActiveViewInj, FieldsInj, IsPublicInj, MetaInj, ReadonlyInj, ReloadViewDataHookInj } from '~/context'
|
|
|
|
|
|
|
|
const { sharedView, meta, columns } = useSharedView()
|
|
|
|
|
|
|
|
const reloadEventHook = createEventHook<void>()
|
|
|
|
provide(ReloadViewDataHookInj, reloadEventHook)
|
|
|
|
provide(ReadonlyInj, ref(true))
|
|
|
|
provide(MetaInj, meta)
|
|
|
|
provide(ActiveViewInj, sharedView)
|
|
|
|
provide(FieldsInj, columns)
|
|
|
|
provide(IsPublicInj, ref(true))
|
|
|
|
|
|
|
|
useProvideSmartsheetStore(sharedView as Ref<TableType>, meta)
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="nc-container flex flex-col h-full mt-2 px-6">
|
|
|
|
<SmartsheetToolbar />
|
|
|
|
<SmartsheetGrid />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.nc-container {
|
|
|
|
height: calc(100% - var(--header-height));
|
|
|
|
flex: 1 1 100%;
|
|
|
|
}
|
|
|
|
</style>
|