|
|
|
@ -2,17 +2,20 @@
|
|
|
|
|
import type { TableType } from 'nocodb-sdk' |
|
|
|
|
import type { Ref } from 'vue' |
|
|
|
|
import { inject, onMounted, ref } from '#imports' |
|
|
|
|
import { MetaInj } from '~/components' |
|
|
|
|
import { ActiveViewInj, MetaInj } from '~/components' |
|
|
|
|
import useViews from '~/composables/useViews' |
|
|
|
|
import { viewIcons } from '~/utils/viewUtils' |
|
|
|
|
|
|
|
|
|
const meta = inject(MetaInj) |
|
|
|
|
const activeView = inject(ActiveViewInj) |
|
|
|
|
|
|
|
|
|
const { views, loadViews } = useViews(meta as Ref<TableType>) |
|
|
|
|
const _isUIAllowed = (view: string) => {} |
|
|
|
|
|
|
|
|
|
onMounted(loadViews) |
|
|
|
|
loadViews().then(() => { |
|
|
|
|
activeView.value = views.value?.[0] |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
const selectedViewIdLocal = ref('') |
|
|
|
|
const toggleDrawer = ref(false) |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
@ -31,8 +34,9 @@ const toggleDrawer = ref(false)
|
|
|
|
|
<!-- Views --> |
|
|
|
|
<span class="body-2 font-weight-medium">{{ $t('objects.views') }}</span> |
|
|
|
|
</v-list-item> |
|
|
|
|
<v-list-group v-model="selectedViewIdLocal" mandatory color="primary"> |
|
|
|
|
<!-- |
|
|
|
|
|
|
|
|
|
<!-- <v-list-group v-model="selectedViewIdLocal" mandatory color="primary"> --> |
|
|
|
|
<!-- |
|
|
|
|
todo: add sortable |
|
|
|
|
<draggable |
|
|
|
|
:is="_isUIAllowed('viewlist-drag-n-drop') ? 'draggable' : 'div'" |
|
|
|
@ -41,45 +45,48 @@ const toggleDrawer = ref(false)
|
|
|
|
|
v-bind="dragOptions" |
|
|
|
|
@change="onMove($event)" |
|
|
|
|
> --> |
|
|
|
|
<!-- <transition-group |
|
|
|
|
<!-- <transition-group |
|
|
|
|
type="transition" |
|
|
|
|
:name="!drag ? 'flip-list' : null" |
|
|
|
|
> --> |
|
|
|
|
<v-list-item |
|
|
|
|
v-for="(view, i) in views" |
|
|
|
|
:key="view.id" |
|
|
|
|
v-t="['a:view:open', { view: view.type }]" |
|
|
|
|
dense |
|
|
|
|
:value="view.id" |
|
|
|
|
active-class="x-active--text" |
|
|
|
|
> |
|
|
|
|
<!-- :class="`body-2 view nc-view-item nc-draggable-child nc-${ |
|
|
|
|
<v-list-item |
|
|
|
|
v-for="view in views" |
|
|
|
|
:key="view.id" |
|
|
|
|
v-t="['a:view:open', { view: view.type }]" |
|
|
|
|
dense |
|
|
|
|
:value="view.id" |
|
|
|
|
active-class="x-active--text" |
|
|
|
|
@click="activeView = view" |
|
|
|
|
> |
|
|
|
|
<!-- :class="`body-2 view nc-view-item nc-draggable-child nc-${ |
|
|
|
|
viewTypeAlias[view.type] |
|
|
|
|
}-view-item`" |
|
|
|
|
@click="$emit('rerender')" --> |
|
|
|
|
<v-icon |
|
|
|
|
<!-- <v-icon |
|
|
|
|
v-if="_isUIAllowed('viewlist-drag-n-drop')" |
|
|
|
|
small |
|
|
|
|
:class="`nc-child-draggable-icon nc-child-draggable-icon-${view.title}`" |
|
|
|
|
@click.stop |
|
|
|
|
> |
|
|
|
|
mdi-drag-vertical |
|
|
|
|
</v-icon> |
|
|
|
|
<v-list-item-icon class="mr-n1"> |
|
|
|
|
</v-icon> --> |
|
|
|
|
<!-- <v-list-item-icon class="mr-n1"> |
|
|
|
|
<v-icon v-if="viewIcons[view.type]" x-small :color="viewIcons[view.type].color"> |
|
|
|
|
{{ viewIcons[view.type].icon }} |
|
|
|
|
</v-icon> |
|
|
|
|
<v-icon v-else color="primary" small> mdi-table </v-icon> |
|
|
|
|
</v-list-item-icon> |
|
|
|
|
<v-list-item-title> |
|
|
|
|
</v-list-item-icon> --> |
|
|
|
|
<span>{{ view.alias || view.title }}</span> |
|
|
|
|
|
|
|
|
|
<!-- <v-list-item-title> |
|
|
|
|
<v-tooltip bottom> |
|
|
|
|
<template #activator="{ on }"> |
|
|
|
|
<div class="font-weight-regular" style="overflow: hidden; text-overflow: ellipsis"> |
|
|
|
|
<input v-if="view.edit" :ref="`input${i}`" v-model="view.title_temp" /> |
|
|
|
|
|
|
|
|
|
<!-- @click.stop |
|
|
|
|
<!– @click.stop |
|
|
|
|
@keydown.enter.stop="updateViewName(view, i)" |
|
|
|
|
@blur="updateViewName(view, i)" --> |
|
|
|
|
@blur="updateViewName(view, i)" –> |
|
|
|
|
<template v-else> |
|
|
|
|
<span v-on="on">{{ view.alias || view.title }}</span> |
|
|
|
|
</template> |
|
|
|
@ -87,9 +94,9 @@ const toggleDrawer = ref(false)
|
|
|
|
|
</template> |
|
|
|
|
{{ view.alias || view.title }} |
|
|
|
|
</v-tooltip> |
|
|
|
|
</v-list-item-title> |
|
|
|
|
<v-spacer /> |
|
|
|
|
<!-- <template v-if="_isUIAllowed('virtualViewsCreateOrEdit')"> |
|
|
|
|
</v-list-item-title> --> |
|
|
|
|
<v-spacer /> |
|
|
|
|
<!-- <template v-if="_isUIAllowed('virtualViewsCreateOrEdit')"> |
|
|
|
|
<!– Copy view –> |
|
|
|
|
<x-icon |
|
|
|
|
v-if="!view.edit" |
|
|
|
@ -131,10 +138,10 @@ const toggleDrawer = ref(false)
|
|
|
|
|
> |
|
|
|
|
mdi-check-bold |
|
|
|
|
</v-icon> --> |
|
|
|
|
</v-list-item> |
|
|
|
|
<!-- </transition-group> --> |
|
|
|
|
<!-- </draggable> --> |
|
|
|
|
</v-list-group> |
|
|
|
|
</v-list-item> |
|
|
|
|
<!-- </transition-group> --> |
|
|
|
|
<!-- </draggable> --> |
|
|
|
|
<!-- </v-list-group> --> |
|
|
|
|
</v-list> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|