Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rich_timestamp_tooltip.vue « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 424a11bf88b7573d79696643688ff693a1fe210d (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 { GlTooltip } from '@gitlab/ui';

import { formatDate } from '~/lib/utils/datetime_utility';
import timeagoMixin from '~/vue_shared/mixins/timeago';

export default {
  components: {
    GlTooltip,
  },
  mixins: [timeagoMixin],
  props: {
    target: {
      type: [Object, HTMLElement, SVGElement, String, Function],
      required: true,
    },
    rawTimestamp: {
      type: String,
      required: true,
    },
    timestampTypeText: {
      type: String,
      required: true,
    },
  },
  computed: {
    timestampInWords() {
      return this.rawTimestamp ? this.timeFormatted(this.rawTimestamp) : '';
    },
    timestamp() {
      return this.rawTimestamp ? formatDate(new Date(this.rawTimestamp)) : '';
    },
  },
};
</script>

<template>
  <gl-tooltip :target="target">
    <div class="bold" data-testid="header-text">{{ timestampTypeText }} {{ timestampInWords }}</div>
    <div class="text-tertiary" data-testid="body-text">{{ timestamp }}</div>
  </gl-tooltip>
</template>