summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/issue_time_estimate.vue
blob: 5acc3025b2cea8ad084b8dda7edc39c47aa73fac (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
<script>
import { GlTooltip } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';
import { parseSeconds, stringifyTime } from '~/lib/utils/datetime_utility';

export default {
  components: {
    Icon,
    GlTooltip,
  },
  props: {
    estimate: {
      type: Number,
      required: true,
    },
  },
  computed: {
    title() {
      return stringifyTime(parseSeconds(this.estimate), true);
    },
    timeEstimate() {
      return stringifyTime(parseSeconds(this.estimate));
    },
  },
};
</script>

<template>
  <span>
    <span ref="issueTimeEstimate" class="board-card-info card-number">
      <icon name="hourglass" css-classes="board-card-info-icon" /><time
        class="board-card-info-text"
        >{{ timeEstimate }}</time
      >
    </span>
    <gl-tooltip
      :target="() => $refs.issueTimeEstimate"
      placement="bottom"
      class="js-issue-time-estimate"
    >
      <span class="bold d-block">{{ __('Time estimate') }}</span> {{ title }}
    </gl-tooltip>
  </span>
</template>