2023-12-12 19:17:38 +08:00
|
|
|
<template>
|
|
|
|
<span v-if="!params.data.permissions.create_comments">0</span>
|
|
|
|
<a v-else
|
|
|
|
href="#"
|
|
|
|
class="open-comments-sidebar" tabindex=0 :id="'comment-count-' + params.data.id"
|
|
|
|
data-object-type="MyModule" :data-object-id="params.data.id">
|
|
|
|
<template v-if="params.data.comments.count > 0">
|
|
|
|
{{ params.data.comments.count }}
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
+
|
|
|
|
</template>
|
2024-02-27 00:43:07 +08:00
|
|
|
<span v-if="params.data.comments.count_unseen > 0"
|
|
|
|
class="unseen-comments inline-block align-super text-xs font-semibold rounded-full bg-sn-science-blue text-sn-white w-3.5 h-3.5 text-center">
|
2023-12-12 19:17:38 +08:00
|
|
|
{{params.data.comments.count_unseen }}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'CommentsRenderer',
|
|
|
|
props: {
|
|
|
|
params: {
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
openModal() {
|
|
|
|
this.params.dtComponent.$emit('openComments', null, [this.params.data]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|