summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/jobs/index/index.js
blob: 75194499a7f35563cd64471bcf0627e645558ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Vue from 'vue';
import initJobsTable from '~/jobs/components/table';
import GlCountdown from '~/vue_shared/components/gl_countdown.vue';

if (gon.features?.jobsTableVue) {
  initJobsTable();
} else {
  const remainingTimeElements = document.querySelectorAll('.js-remaining-time');

  remainingTimeElements.forEach(
    (el) =>
      new Vue({
        el,
        render(h) {
          return h(GlCountdown, {
            props: {
              endDateString: el.dateTime,
            },
          });
        },
      }),
  );
}