2023-12-12 19:17:38 +08:00
|
|
|
<template>
|
2024-03-01 18:34:03 +08:00
|
|
|
<div v-if="params.data.comments">
|
|
|
|
<span v-if="!params.data.permissions.create_comments && params.data.comments.count === 0">0</span>
|
|
|
|
<a v-else
|
|
|
|
href="#"
|
|
|
|
class="open-comments-sidebar" tabindex=0 :id="'comment-count-' + params.data.id"
|
|
|
|
:data-object-type="objectType" :data-object-id="params.data.id">
|
|
|
|
<template v-if="params.data.comments.count > 0">
|
|
|
|
{{ params.data.comments.count }}
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
+
|
|
|
|
</template>
|
|
|
|
<span v-if="params.data.comments.count_unseen > 0"
|
2024-03-01 16:48:25 +08:00
|
|
|
class="unseen-comments inline-flex align-super text-xs rounded-[0.875rem] px-1 bg-sn-science-blue text-sn-white h-4 items-center justify-center">
|
2024-03-01 18:34:03 +08:00
|
|
|
{{params.data.comments.count_unseen }}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
2023-12-12 19:17:38 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'CommentsRenderer',
|
|
|
|
props: {
|
|
|
|
params: {
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2024-02-28 20:31:42 +08:00
|
|
|
computed: {
|
|
|
|
objectType() {
|
|
|
|
switch (this.params.data.type) {
|
|
|
|
case 'my_modules':
|
|
|
|
return 'MyModule';
|
|
|
|
case 'projects':
|
|
|
|
return 'Project';
|
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-12-12 19:17:38 +08:00
|
|
|
methods: {
|
|
|
|
openModal() {
|
|
|
|
this.params.dtComponent.$emit('openComments', null, [this.params.data]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|