summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/mr_widget_author_time.vue
blob: 8f1fd809a810388c36539efb18a607068dae56eb (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
<script>
  import mrWidgetAuthor from './mr_widget_author.vue';

  export default {
    name: 'MRWidgetAuthorTime',
    components: {
      mrWidgetAuthor,
    },
    props: {
      actionText: {
        type: String,
        required: true,
      },
      author: {
        type: Object,
        required: true,
      },
      dateTitle: {
        type: String,
        required: true,
      },
      dateReadable: {
        type: String,
        required: true,
      },
    },
  };
</script>
<template>
  <h4 class="js-mr-widget-author">
    {{ actionText }}
    <mr-widget-author :author="author" />
    <time
      :title="dateTitle"
      data-toggle="tooltip"
      data-placement="top"
      data-container="body"
    >
      {{ dateReadable }}
    </time>
  </h4>
</template>