summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/components/issue_time_estimate_deprecated.vue
blob: 8ddf50cb357043b479a55bcf8957136afe829752 (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
<script>
import { GlTooltip, GlIcon } from '@gitlab/ui';
import { parseSeconds, stringifyTime } from '~/lib/utils/datetime_utility';
import boardsStore from '../stores/boards_store';

export default {
  components: {
    GlIcon,
    GlTooltip,
  },
  props: {
    estimate: {
      type: [Number, String],
      required: true,
    },
  },
  data() {
    return {
      limitToHours: boardsStore.timeTracking.limitToHours,
    };
  },
  computed: {
    title() {
      return stringifyTime(parseSeconds(this.estimate, { limitToHours: this.limitToHours }), true);
    },
    timeEstimate() {
      return stringifyTime(parseSeconds(this.estimate, { limitToHours: this.limitToHours }));
    },
  },
};
</script>

<template>
  <span>
    <span ref="issueTimeEstimate" class="board-card-info card-number">
      <gl-icon name="hourglass" class="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>