|
|
@ -1,13 +1,33 @@ |
|
|
|
<script lang="ts" setup> |
|
|
|
<script lang="ts" setup> |
|
|
|
|
|
|
|
import { useClipboard } from '@vueuse/core' |
|
|
|
|
|
|
|
import { ViewTypes } from 'nocodb-sdk' |
|
|
|
|
|
|
|
import { useToast } from 'vue-toastification' |
|
|
|
import { onMounted } from '#imports' |
|
|
|
import { onMounted } from '#imports' |
|
|
|
|
|
|
|
import { extractSdkResponseErrorMsg } from '~/utils/errorUtils' |
|
|
|
import MdiVisibilityOnIcon from '~icons/mdi/visibility' |
|
|
|
import MdiVisibilityOnIcon from '~icons/mdi/visibility' |
|
|
|
import MdiVisibilityOffIcon from '~icons/mdi/visibility-off' |
|
|
|
import MdiVisibilityOffIcon from '~icons/mdi/visibility-off' |
|
|
|
|
|
|
|
import MdiCopyIcon from '~icons/mdi/content-copy' |
|
|
|
|
|
|
|
import MdiDeleteIcon from '~icons/mdi/delete-outline' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface SharedViewType { |
|
|
|
|
|
|
|
password: string |
|
|
|
|
|
|
|
title: string |
|
|
|
|
|
|
|
uuid: string |
|
|
|
|
|
|
|
type: ViewTypes |
|
|
|
|
|
|
|
meta: string | Record<string, any> |
|
|
|
|
|
|
|
showPassword?: boolean |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const { view, $api, meta } = useSmartsheetStoreOrThrow() |
|
|
|
const { view, $api, meta } = useSmartsheetStoreOrThrow() |
|
|
|
|
|
|
|
const { copy } = useClipboard() |
|
|
|
|
|
|
|
const toast = useToast() |
|
|
|
|
|
|
|
|
|
|
|
let isLoading = $ref(false) |
|
|
|
let isLoading = $ref(false) |
|
|
|
// let activeSharedView = $ref(null) |
|
|
|
// let activeSharedView = $ref(null) |
|
|
|
const sharedViewList = ref() |
|
|
|
const sharedViewList = ref<SharedViewType[]>() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// todo: replace with inject/composable |
|
|
|
|
|
|
|
const dashboardUrl = '' |
|
|
|
|
|
|
|
|
|
|
|
const loadSharedViewsList = async () => { |
|
|
|
const loadSharedViewsList = async () => { |
|
|
|
isLoading = true |
|
|
|
isLoading = true |
|
|
@ -33,7 +53,45 @@ const loadSharedViewsList = async () => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
onMounted(loadSharedViewsList) |
|
|
|
onMounted(loadSharedViewsList) |
|
|
|
const test = (t) => console.log(t) |
|
|
|
|
|
|
|
|
|
|
|
const sharedViewUrl = (view: SharedViewType) => { |
|
|
|
|
|
|
|
let viewType |
|
|
|
|
|
|
|
switch (view.type) { |
|
|
|
|
|
|
|
case ViewTypes.FORM: |
|
|
|
|
|
|
|
viewType = 'form' |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
case ViewTypes.KANBAN: |
|
|
|
|
|
|
|
viewType = 'kanban' |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
viewType = 'view' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return `/nc/${viewType}/${view.uuid}` |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const renderAllowCSVDownload = (view: SharedViewType) => { |
|
|
|
|
|
|
|
if (view.type === ViewTypes.GRID) { |
|
|
|
|
|
|
|
view.meta = (view.meta && typeof view.meta === 'string' ? JSON.parse(view.meta) : view.meta) as Record<string, any> |
|
|
|
|
|
|
|
return view.meta.allowCSVDownload ? '✔️' : '❌' |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
return 'N/A' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const copyLink = (view: SharedViewType) => { |
|
|
|
|
|
|
|
copy(`${dashboardUrl}/${sharedViewUrl(view)}`) |
|
|
|
|
|
|
|
toast.info('Copied to clipboard') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const deleteLink = async (id: string) => { |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
await $api.dbViewShare.delete(id) |
|
|
|
|
|
|
|
toast.success('Deleted shared view successfully') |
|
|
|
|
|
|
|
await loadSharedViewsList() |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
toast.error(await extractSdkResponseErrorMsg(e)) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
<template> |
|
|
@ -50,9 +108,9 @@ const test = (t) => console.log(t) |
|
|
|
<!-- View Link --> |
|
|
|
<!-- View Link --> |
|
|
|
<a-table-column key="title" :title="$t('labels.viewLink')" data-index="title"> |
|
|
|
<a-table-column key="title" :title="$t('labels.viewLink')" data-index="title"> |
|
|
|
<template #default="{ record }"> |
|
|
|
<template #default="{ record }"> |
|
|
|
<!-- <nuxt-link :to="sharedViewUrl(currentView)"> |
|
|
|
<nuxt-link :to="sharedViewUrl(record)"> |
|
|
|
{{ `${dashboardUrl}#${sharedViewUrl(currentView)}` }} |
|
|
|
{{ `${dashboardUrl}/${sharedViewUrl(record)}` }} |
|
|
|
</nuxt-link> --> |
|
|
|
</nuxt-link> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<!-- Password --> |
|
|
|
<!-- Password --> |
|
|
@ -69,19 +127,18 @@ const test = (t) => console.log(t) |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<!-- Todo: i18n --> |
|
|
|
<!-- Todo: i18n --> |
|
|
|
<a-table-column key="meta" title="Download allowed" data-index="title"> |
|
|
|
<a-table-column key="meta" title="Download allowed" data-index="title"> |
|
|
|
<template #default="{ text }"> |
|
|
|
<template #default="{ record }"> |
|
|
|
{{ text }} |
|
|
|
<template v-if="'meta' in record"> |
|
|
|
<!-- <template v-if="'meta' in currentView"> --> |
|
|
|
<span>{{ renderAllowCSVDownload(record) }}</span> |
|
|
|
<!-- <span>{{ renderAllowCSVDownload(currentView) }}</span> --> |
|
|
|
</template> |
|
|
|
<!-- </template> --> |
|
|
|
|
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|
<!-- Actions --> |
|
|
|
<!-- Actions --> |
|
|
|
<a-table-column key="id" :title="$t('labels.actions')" data-index="title"> |
|
|
|
<a-table-column key="id" :title="$t('labels.actions')" data-index="title"> |
|
|
|
<template #default="{ record }"> |
|
|
|
<template #default="{ record }"> |
|
|
|
<div class="text-xs" :title="text"> |
|
|
|
<div class="text-sm flex gap-2" :title="text"> |
|
|
|
<!-- <v-icon small @click="copyLink(currentView)"> mdi-content-copy </v-icon> --> |
|
|
|
<MdiCopyIcon @click="copyLink(record)" /> |
|
|
|
<!-- <v-icon small @click="deleteLink(currentView.id)"> mdi-delete-outline </v-icon> --> |
|
|
|
<MdiDeleteIcon @click="deleteLink(record.id)" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</a-table-column> |
|
|
|
</a-table-column> |
|
|
|