gitlab-org--gitlab-foss/app/assets/javascripts/milestone.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-01-31 09:29:29 +00:00
import axios from './lib/utils/axios_utils';
import flash from './flash';
2017-11-20 20:28:29 +00:00
export default class Milestone {
constructor() {
this.bindTabsSwitching();
2017-11-20 20:28:29 +00:00
// Load merge request tab if it is active
// merge request tab is active based on different conditions in the backend
this.loadTab($('.js-milestone-tabs .active a'));
2017-11-20 20:28:29 +00:00
this.loadInitialTab();
}
bindTabsSwitching() {
return $('a[data-toggle="tab"]').on('show.bs.tab', (e) => {
const $target = $(e.target);
2016-07-24 20:45:11 +00:00
2017-11-20 20:28:29 +00:00
location.hash = $target.attr('href');
this.loadTab($target);
});
}
// eslint-disable-next-line class-methods-use-this
loadInitialTab() {
const $target = $(`.js-milestone-tabs a[href="${location.hash}"]`);
2017-04-25 14:25:20 +00:00
2017-11-20 20:28:29 +00:00
if ($target.length) {
$target.tab('show');
}
}
// eslint-disable-next-line class-methods-use-this
loadTab($target) {
const endpoint = $target.data('endpoint');
const tabElId = $target.attr('href');
if (endpoint && !$target.hasClass('is-loaded')) {
2018-01-31 09:29:29 +00:00
axios.get(endpoint)
.then(({ data }) => {
$(tabElId).html(data.html);
$target.addClass('is-loaded');
})
.catch(() => flash('Error loading milestone tab'));
2017-11-20 20:28:29 +00:00
}
}
}