summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/mr_widget_author.vue
blob: 84937aa951068cc388cbc0ae9328c3c3b0b6bf36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<script>
import tooltip from '../../vue_shared/directives/tooltip';

export default {
  name: 'MrWidgetAuthor',
  directives: {
    tooltip,
  },
  props: {
    author: {
      type: Object,
      required: true,
    },
    showAuthorName: {
      type: Boolean,
      required: false,
      default: true,
    },
    showAuthorTooltip: {
      type: Boolean,
      required: false,
      default: false,
    },
  },
  computed: {
    authorUrl() {
      return this.author.webUrl || this.author.web_url;
    },
    avatarUrl() {
      return this.author.avatarUrl || this.author.avatar_url;
    },
  },
};
</script>
<template>
  <a
    :href="authorUrl"
    :v-tooltip="showAuthorTooltip"
    :title="author.name"
    class="author-link inline"
  >
    <img :src="avatarUrl" class="avatar avatar-inline s16" />
    <span v-if="showAuthorName" class="author"> {{ author.name }} </span>
  </a>
</template>