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

mount_milestone_sidebar.js « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f5f8f2b53b33eae6f67b66b81faa8dee9900acc (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
import Vue from 'vue';
import timeTracker from './components/time_tracking/time_tracker.vue';
import { parseBoolean } from '~/lib/utils/common_utils';

export default class SidebarMilestone {
  constructor() {
    const el = document.getElementById('issuable-time-tracker');

    if (!el) return;

    const { timeEstimate, timeSpent, humanTimeEstimate, humanTimeSpent, limitToHours } = el.dataset;

    // eslint-disable-next-line no-new
    new Vue({
      el,
      components: {
        timeTracker,
      },
      render: createElement =>
        createElement('timeTracker', {
          props: {
            timeEstimate: parseInt(timeEstimate, 10),
            timeSpent: parseInt(timeSpent, 10),
            humanTimeEstimate,
            humanTimeSpent,
            limitToHours: parseBoolean(limitToHours),
          },
        }),
    });
  }
}