29645f06e7
Rather than constructing & then deconstructing, we know just hide & show the sidebar. This is done so we dont' have a memory leak on the frontend with objects getting created.
184 lines
5.6 KiB
JavaScript
184 lines
5.6 KiB
JavaScript
(function(global) {
|
|
class DueDateSelect {
|
|
constructor({ $dropdown, $loading } = {}) {
|
|
const $dropdownParent = $dropdown.closest('.dropdown');
|
|
const $block = $dropdown.closest('.block');
|
|
this.$loading = $loading;
|
|
this.$dropdown = $dropdown;
|
|
this.$dropdownParent = $dropdownParent;
|
|
this.$datePicker = $dropdownParent.find('.js-due-date-calendar');
|
|
this.$block = $block;
|
|
this.$selectbox = $dropdown.closest('.selectbox');
|
|
this.$value = $block.find('.value');
|
|
this.$valueContent = $block.find('.value-content');
|
|
this.$sidebarValue = $('.js-due-date-sidebar-value', $block);
|
|
this.fieldName = $dropdown.data('field-name'),
|
|
this.abilityName = $dropdown.data('ability-name'),
|
|
this.issueUpdateURL = $dropdown.data('issue-update')
|
|
|
|
this.rawSelectedDate = null;
|
|
this.displayedDate = null;
|
|
this.datePayload = null;
|
|
|
|
this.initGlDropdown();
|
|
this.initRemoveDueDate();
|
|
this.initDatePicker();
|
|
this.initStopPropagation();
|
|
}
|
|
|
|
initGlDropdown() {
|
|
this.$dropdown.glDropdown({
|
|
hidden: () => {
|
|
this.$selectbox.hide();
|
|
this.$value.css('display', '');
|
|
}
|
|
});
|
|
}
|
|
|
|
initDatePicker() {
|
|
this.$datePicker.datepicker({
|
|
dateFormat: 'yy-mm-dd',
|
|
defaultDate: $("input[name='" + this.fieldName + "']").val(),
|
|
altField: "input[name='" + this.fieldName + "']",
|
|
onSelect: () => {
|
|
if (this.$dropdown.hasClass('js-issue-boards-due-date')) {
|
|
gl.issueBoards.BoardsStore.detail.issue.dueDate = $("input[name='" + this.fieldName + "']").val();
|
|
this.updateIssueBoardIssue();
|
|
} else {
|
|
return this.saveDueDate(true);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
initRemoveDueDate() {
|
|
this.$block.on('click', '.js-remove-due-date', (e) => {
|
|
e.preventDefault();
|
|
|
|
if (this.$dropdown.hasClass('js-issue-boards-due-date')) {
|
|
gl.issueBoards.BoardsStore.detail.issue.dueDate = '';
|
|
this.updateIssueBoardIssue();
|
|
} else {
|
|
$("input[name='" + this.fieldName + "']").val('');
|
|
return this.saveDueDate(false);
|
|
}
|
|
});
|
|
}
|
|
|
|
initStopPropagation() {
|
|
$(document).off('click', '.ui-datepicker-header a').on('click', '.ui-datepicker-header a', (e) => {
|
|
return e.stopImmediatePropagation();
|
|
});
|
|
}
|
|
|
|
saveDueDate(isDropdown) {
|
|
this.parseSelectedDate();
|
|
this.prepSelectedDate();
|
|
this.submitSelectedDate(isDropdown);
|
|
}
|
|
|
|
parseSelectedDate() {
|
|
this.rawSelectedDate = $("input[name='" + this.fieldName + "']").val();
|
|
if (this.rawSelectedDate.length) {
|
|
let dateObj = new Date(this.rawSelectedDate);
|
|
this.displayedDate = $.datepicker.formatDate('M d, yy', dateObj);
|
|
} else {
|
|
this.displayedDate = 'No due date';
|
|
}
|
|
}
|
|
|
|
prepSelectedDate() {
|
|
const datePayload = {};
|
|
datePayload[this.abilityName] = {};
|
|
datePayload[this.abilityName].due_date = this.rawSelectedDate;
|
|
this.datePayload = datePayload;
|
|
}
|
|
|
|
updateIssueBoardIssue () {
|
|
this.$loading.fadeIn();
|
|
this.$dropdown.trigger('loading.gl.dropdown');
|
|
this.$selectbox.hide();
|
|
this.$value.css('display', '');
|
|
|
|
gl.issueBoards.BoardsStore.detail.issue.update(this.$dropdown.attr('data-issue-update'))
|
|
.then(() => {
|
|
this.$loading.fadeOut();
|
|
});
|
|
}
|
|
|
|
submitSelectedDate(isDropdown) {
|
|
return $.ajax({
|
|
type: 'PUT',
|
|
url: this.issueUpdateURL,
|
|
data: this.datePayload,
|
|
dataType: 'json',
|
|
beforeSend: () => {
|
|
const selectedDateValue = this.datePayload[this.abilityName].due_date;
|
|
const displayedDateStyle = this.displayedDate !== 'No due date' ? 'bold' : 'no-value';
|
|
|
|
this.$loading.fadeIn();
|
|
|
|
if (isDropdown) {
|
|
this.$dropdown.trigger('loading.gl.dropdown');
|
|
this.$selectbox.hide();
|
|
}
|
|
|
|
this.$value.css('display', '');
|
|
this.$valueContent.html(`<span class='${displayedDateStyle}'>${this.displayedDate}</span>`);
|
|
this.$sidebarValue.html(this.displayedDate);
|
|
|
|
return selectedDateValue.length ?
|
|
$('.js-remove-due-date-holder').removeClass('hidden') :
|
|
$('.js-remove-due-date-holder').addClass('hidden');
|
|
|
|
}
|
|
}).done((data) => {
|
|
if (isDropdown) {
|
|
this.$dropdown.trigger('loaded.gl.dropdown');
|
|
this.$dropdown.dropdown('toggle');
|
|
}
|
|
return this.$loading.fadeOut();
|
|
});
|
|
}
|
|
}
|
|
|
|
class DueDateSelectors {
|
|
constructor() {
|
|
this.initMilestoneDueDate();
|
|
this.initIssuableSelect();
|
|
}
|
|
|
|
initMilestoneDueDate() {
|
|
const $datePicker = $('.datepicker');
|
|
|
|
if ($datePicker.length) {
|
|
const $dueDate = $('#milestone_due_date');
|
|
$datePicker.datepicker({
|
|
dateFormat: 'yy-mm-dd',
|
|
onSelect: (dateText, inst) => {
|
|
$dueDate.val(dateText);
|
|
}
|
|
}).datepicker('setDate', $.datepicker.parseDate('yy-mm-dd', $dueDate.val()));
|
|
}
|
|
$('.js-clear-due-date').on('click', (e) => {
|
|
e.preventDefault();
|
|
$.datepicker._clearDate($datePicker);
|
|
});
|
|
}
|
|
|
|
initIssuableSelect() {
|
|
const $loading = $('.js-issuable-update .due_date').find('.block-loading').hide();
|
|
|
|
$('.js-due-date-select').each((i, dropdown) => {
|
|
const $dropdown = $(dropdown);
|
|
new DueDateSelect({
|
|
$dropdown,
|
|
$loading
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
global.DueDateSelectors = DueDateSelectors;
|
|
|
|
})(window.gl || (window.gl = {}));
|