debian-mirror-gitlab/app/assets/javascripts/pages/projects/jobs/index/index.js
2021-04-29 21:17:54 +05:30

23 lines
536 B
JavaScript

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,
},
});
},
}),
);
}