summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/mr_widget_author.vue
blob: 22c2f74f9007e4deabc9e2d4d96185c1f403748c (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
46
47
48
49
50
51
52
53
<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>