scinote-web/app/javascript/vue/shared/datatable/renderers/comments.vue

47 lines
1.2 KiB
Vue

<template>
<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"
class="unseen-comments inline-flex align-super text-xs font-semibold rounded-full bg-sn-science-blue text-sn-white w-3.5 h-3.5 items-center justify-center">
{{params.data.comments.count_unseen }}
</span>
</a>
</template>
<script>
export default {
name: 'CommentsRenderer',
props: {
params: {
required: true
}
},
computed: {
objectType() {
switch (this.params.data.type) {
case 'my_modules':
return 'MyModule';
case 'projects':
return 'Project';
default:
return '';
}
}
},
methods: {
openModal() {
this.params.dtComponent.$emit('openComments', null, [this.params.data]);
}
}
};
</script>