gitlab-org--gitlab-foss/app/assets/javascripts/diffs/components/diff_gutter_avatars.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

103 lines
2.6 KiB
Vue
Raw Normal View History

2018-06-21 12:22:40 +00:00
<script>
import { GlTooltipDirective, GlIcon } from '@gitlab/ui';
import { truncate } from '~/lib/utils/text_utility';
import { n__ } from '~/locale';
2018-06-21 12:22:40 +00:00
import UserAvatarImage from '~/vue_shared/components/user_avatar/user_avatar_image.vue';
import { COUNT_OF_AVATARS_IN_GUTTER, LENGTH_OF_AVATAR_TOOLTIP } from '../constants';
import { HIDE_COMMENTS } from '../i18n';
2018-06-21 12:22:40 +00:00
export default {
components: {
GlIcon,
2018-06-21 12:22:40 +00:00
UserAvatarImage,
},
2018-11-05 16:48:55 +00:00
directives: {
GlTooltip: GlTooltipDirective,
},
2018-06-21 12:22:40 +00:00
props: {
discussions: {
type: Array,
required: true,
},
discussionsExpanded: {
type: Boolean,
required: false,
default: false,
},
2018-06-21 12:22:40 +00:00
},
computed: {
allDiscussions() {
return this.discussions.reduce((acc, note) => acc.concat(note.notes), []);
},
notesInGutter() {
return this.allDiscussions.slice(0, COUNT_OF_AVATARS_IN_GUTTER).map((n) => ({
2018-06-21 12:22:40 +00:00
note: n.note,
author: n.author,
}));
},
moreCount() {
return this.allDiscussions.length - this.notesInGutter.length;
},
moreText() {
if (this.moreCount === 0) {
return '';
}
return n__('%d more comment', '%d more comments', this.moreCount);
2018-06-21 12:22:40 +00:00
},
},
methods: {
getTooltipText(noteData) {
let { note } = noteData;
2018-06-21 12:22:40 +00:00
if (note.length > LENGTH_OF_AVATAR_TOOLTIP) {
note = truncate(note, LENGTH_OF_AVATAR_TOOLTIP);
}
return `${noteData.author.name}: ${note}`;
},
},
i18n: {
HIDE_COMMENTS,
},
2018-06-21 12:22:40 +00:00
};
</script>
<template>
<div class="diff-comment-avatar-holders">
<button
v-if="discussionsExpanded"
v-gl-tooltip
:title="$options.i18n.HIDE_COMMENTS"
2018-06-21 12:22:40 +00:00
type="button"
:aria-label="$options.i18n.HIDE_COMMENTS"
2018-06-21 12:22:40 +00:00
class="diff-notes-collapse js-diff-comment-avatar js-diff-comment-button"
@click="$emit('toggleLineDiscussions')"
2018-06-21 12:22:40 +00:00
>
<gl-icon :size="12" name="collapse" />
2018-06-21 12:22:40 +00:00
</button>
<template v-else>
<user-avatar-image
v-for="note in notesInGutter"
:key="note.id"
:img-src="note.author.avatar_url"
:size="24"
2018-06-21 12:22:40 +00:00
:tooltip-text="getTooltipText(note)"
lazy
2018-06-21 12:22:40 +00:00
class="diff-comment-avatar js-diff-comment-avatar"
@click.native="$emit('toggleLineDiscussions')"
2018-06-21 12:22:40 +00:00
/>
<span
v-if="moreText"
v-gl-tooltip
2018-06-21 12:22:40 +00:00
:title="moreText"
2018-09-10 21:44:44 +00:00
class="diff-comments-more-count js-diff-comment-avatar js-diff-comment-plus"
2018-06-21 12:22:40 +00:00
data-container="body"
data-placement="top"
role="button"
@click="$emit('toggleLineDiscussions')"
2018-11-16 20:07:38 +00:00
>+{{ moreCount }}</span
>
2018-06-21 12:22:40 +00:00
</template>
</div>
</template>