2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2020-08-20 05:09:55 -04:00
|
|
|
import { deprecatedCreateFlash as flash } from './flash';
|
2021-02-14 13:09:20 -05:00
|
|
|
import axios from './lib/utils/axios_utils';
|
2019-05-03 09:00:44 -04:00
|
|
|
import { __ } from './locale';
|
2017-10-02 08:32:53 -04:00
|
|
|
|
2017-11-20 15:28:29 -05:00
|
|
|
export default class Milestone {
|
|
|
|
constructor() {
|
|
|
|
this.bindTabsSwitching();
|
|
|
|
this.loadInitialTab();
|
|
|
|
}
|
|
|
|
|
|
|
|
bindTabsSwitching() {
|
2020-12-23 16:10:24 -05:00
|
|
|
return $('a[data-toggle="tab"]').on('show.bs.tab', (e) => {
|
2017-11-20 15:28:29 -05:00
|
|
|
const $target = $(e.target);
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2018-06-15 11:58:27 -04:00
|
|
|
window.location.hash = $target.attr('href');
|
2017-11-20 15:28:29 -05:00
|
|
|
this.loadTab($target);
|
|
|
|
});
|
|
|
|
}
|
2020-09-18 14:10:26 -04:00
|
|
|
|
2017-11-20 15:28:29 -05:00
|
|
|
loadInitialTab() {
|
2020-09-18 14:10:26 -04:00
|
|
|
const $target = $(`.js-milestone-tabs a:not(.active)[href="${window.location.hash}"]`);
|
2017-04-25 10:25:20 -04:00
|
|
|
|
2017-11-20 15:28:29 -05:00
|
|
|
if ($target.length) {
|
|
|
|
$target.tab('show');
|
2020-09-18 14:10:26 -04:00
|
|
|
} else {
|
|
|
|
this.loadTab($('.js-milestone-tabs a.active'));
|
2017-11-20 15:28:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// 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-10-10 03:13:34 -04:00
|
|
|
axios
|
|
|
|
.get(endpoint)
|
2018-01-31 04:29:29 -05:00
|
|
|
.then(({ data }) => {
|
|
|
|
$(tabElId).html(data.html);
|
|
|
|
$target.addClass('is-loaded');
|
|
|
|
})
|
2019-05-03 09:00:44 -04:00
|
|
|
.catch(() => flash(__('Error loading milestone tab')));
|
2017-11-20 15:28:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|