Browse Source

feat(nc-gui): add context menu for expanded form comments

pull/5341/head
Wing-Kam Wong 2 years ago
parent
commit
c6c2f04fb8
  1. 54
      packages/nc-gui/components/smartsheet/expanded-form/Comments.vue

54
packages/nc-gui/components/smartsheet/expanded-form/Comments.vue

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { enumColor, ref, timeAgo, useExpandedFormStoreOrThrow, watch } from '#imports' import { enumColor, ref, timeAgo, useCopy, useExpandedFormStoreOrThrow, useI18n, watch } from '#imports'
const { loadCommentsAndLogs, commentsAndLogs, isCommentsLoading, commentsOnly, saveComment, isYou, comment } = const { loadCommentsAndLogs, commentsAndLogs, isCommentsLoading, commentsOnly, saveComment, isYou, comment } =
useExpandedFormStoreOrThrow() useExpandedFormStoreOrThrow()
@ -10,6 +10,35 @@ await loadCommentsAndLogs()
const showBorder = ref(false) const showBorder = ref(false)
const { copy } = useCopy()
const { t } = useI18n()
const { isUIAllowed } = useUIPermission()
const hasEditPermission = $computed(() => isUIAllowed('commentEditable'))
const _contextMenu = ref(false)
const contextMenu = computed({
get: () => _contextMenu.value,
set: (val) => {
if (hasEditPermission) {
_contextMenu.value = val
}
},
})
async function copyComment(val: string) {
if (!val) return
try {
await copy(val)
message.success(t('msg.success.commentCopied'))
} catch (e: any) {
message.error(e.message)
}
}
watch( watch(
commentsAndLogs, commentsAndLogs,
() => { () => {
@ -26,9 +55,10 @@ watch(
<div class="h-full flex flex-col w-full bg-[#eceff1] p-2"> <div class="h-full flex flex-col w-full bg-[#eceff1] p-2">
<div ref="commentsWrapperEl" class="flex-1 min-h-[100px] overflow-y-auto scrollbar-thin-dull p-2 space-y-2"> <div ref="commentsWrapperEl" class="flex-1 min-h-[100px] overflow-y-auto scrollbar-thin-dull p-2 space-y-2">
<a-skeleton v-if="isCommentsLoading && !commentsAndLogs" type="list-item-avatar-two-line@8" /> <a-skeleton v-if="isCommentsLoading && !commentsAndLogs" type="list-item-avatar-two-line@8" />
<template v-else> <template v-else>
<div v-for="log of commentsAndLogs" :key="log.id" class="flex gap-1 text-xs"> <div v-for="(log, idx) of commentsAndLogs" :key="log.id">
<a-dropdown :trigger="['contextmenu']" :overlay-class-name="`nc-dropdown-comment-context-menu-${idx}`">
<div class="flex gap-1 text-xs">
<MdiAccountCircle class="row-span-2" :class="isYou(log.user) ? 'text-pink-300' : 'text-blue-300 '" /> <MdiAccountCircle class="row-span-2" :class="isYou(log.user) ? 'text-pink-300' : 'text-blue-300 '" />
<div class="flex-1"> <div class="flex-1">
@ -52,6 +82,23 @@ watch(
</p> </p>
</div> </div>
</div> </div>
<template #overlay>
<a-menu @click="contextMenu = false">
<a-menu-item key="copy-comment" @click="copyComment(log.description)">
<div v-e="['a:comment:copy']" class="nc-project-menu-item">
{{ t('activity.copyComment') }}
</div>
</a-menu-item>
<a-menu-item key="edit-comment">
<div v-e="['a:comment:edit']" class="nc-project-menu-item">
{{ t('activity.editComment') }}
</div>
</a-menu-item>
</a-menu>
</template>
</a-dropdown>
</div>
</template> </template>
</div> </div>
@ -62,7 +109,6 @@ watch(
<!-- Comments only --> <!-- Comments only -->
<a-checkbox v-model:checked="commentsOnly" v-e="['c:row-expand:comment-only']" @change="loadCommentsAndLogs"> <a-checkbox v-model:checked="commentsOnly" v-e="['c:row-expand:comment-only']" @change="loadCommentsAndLogs">
{{ $t('labels.commentsOnly') }} {{ $t('labels.commentsOnly') }}
<span class="text-[11px] text-gray-500" /> <span class="text-[11px] text-gray-500" />
</a-checkbox> </a-checkbox>
</div> </div>

Loading…
Cancel
Save