2017-01-11 23:27:41 -05:00
|
|
|
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, no-underscore-dangle, one-var-declaration-per-line, object-shorthand, no-unused-vars, no-new, comma-dangle, consistent-return, quotes, dot-notation, quote-props, prefer-arrow-callback, max-len */
|
2017-05-16 16:52:40 -04:00
|
|
|
import 'vendor/jquery.waitforimages';
|
2017-11-13 04:11:54 -05:00
|
|
|
import { addDelimiter } from './lib/utils/text_utility';
|
2017-10-02 08:32:53 -04:00
|
|
|
import Flash from './flash';
|
2017-07-06 14:05:58 -04:00
|
|
|
import TaskList from './task_list';
|
2017-05-16 16:52:40 -04:00
|
|
|
import CreateMergeRequestDropdown from './create_merge_request_dropdown';
|
2017-07-07 11:04:43 -04:00
|
|
|
import IssuablesHelper from './helpers/issuables_helper';
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-10-30 14:59:16 -04:00
|
|
|
export default class Issue {
|
2017-03-01 14:54:04 -05:00
|
|
|
constructor() {
|
2017-12-08 07:26:39 -05:00
|
|
|
if ($('a.btn-close').length) this.initIssueBtnEventListeners();
|
2017-04-12 15:40:35 -04:00
|
|
|
|
|
|
|
Issue.$btnNewBranch = $('#new-branch');
|
2017-05-04 04:09:21 -04:00
|
|
|
Issue.createMrDropdownWrap = document.querySelector('.create-mr-dropdown-wrap');
|
2017-04-12 15:40:35 -04:00
|
|
|
|
2017-03-01 14:54:04 -05:00
|
|
|
Issue.initMergeRequests();
|
|
|
|
Issue.initRelatedBranches();
|
2017-05-04 04:09:21 -04:00
|
|
|
|
2017-07-07 09:51:34 -04:00
|
|
|
this.closeButtons = $('a.btn-close');
|
|
|
|
this.reopenButtons = $('a.btn-reopen');
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-07-07 09:51:34 -04:00
|
|
|
this.initCloseReopenReport();
|
2017-07-03 12:00:59 -04:00
|
|
|
|
2017-05-04 04:09:21 -04:00
|
|
|
if (Issue.createMrDropdownWrap) {
|
|
|
|
this.createMergeRequestDropdown = new CreateMergeRequestDropdown(Issue.createMrDropdownWrap);
|
|
|
|
}
|
2017-03-01 14:54:04 -05:00
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-05-04 04:09:21 -04:00
|
|
|
initIssueBtnEventListeners() {
|
2017-04-12 15:40:35 -04:00
|
|
|
const issueFailMessage = 'Unable to update this issue at this time.';
|
|
|
|
|
2017-07-14 13:16:56 -04:00
|
|
|
return $(document).on('click', '.js-issuable-actions a.btn-close, .js-issuable-actions a.btn-reopen', (e) => {
|
2017-05-04 04:09:21 -04:00
|
|
|
var $button, shouldSubmit, url;
|
2017-03-01 14:54:04 -05:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopImmediatePropagation();
|
2017-05-04 04:09:21 -04:00
|
|
|
$button = $(e.currentTarget);
|
|
|
|
shouldSubmit = $button.hasClass('btn-comment');
|
2017-03-01 14:54:04 -05:00
|
|
|
if (shouldSubmit) {
|
2017-05-04 04:09:21 -04:00
|
|
|
Issue.submitNoteForm($button.closest('form'));
|
2017-03-01 14:54:04 -05:00
|
|
|
}
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-07-04 09:41:26 -04:00
|
|
|
this.disableCloseReopenButton($button);
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-05-04 04:09:21 -04:00
|
|
|
url = $button.attr('href');
|
2017-03-01 14:54:04 -05:00
|
|
|
return $.ajax({
|
|
|
|
type: 'PUT',
|
2017-04-12 15:40:35 -04:00
|
|
|
url: url
|
2017-05-04 04:09:21 -04:00
|
|
|
})
|
|
|
|
.fail(() => new Flash(issueFailMessage))
|
|
|
|
.done((data) => {
|
2017-12-12 22:44:59 -05:00
|
|
|
const isClosedBadge = $('div.status-box-issue-closed');
|
2017-07-05 12:36:58 -04:00
|
|
|
const isOpenBadge = $('div.status-box-open');
|
|
|
|
const projectIssuesCounter = $('.issue_counter');
|
|
|
|
|
2017-04-12 15:40:35 -04:00
|
|
|
if ('id' in data) {
|
2017-05-04 04:09:21 -04:00
|
|
|
const isClosed = $button.hasClass('btn-close');
|
2017-04-12 15:40:35 -04:00
|
|
|
isClosedBadge.toggleClass('hidden', !isClosed);
|
|
|
|
isOpenBadge.toggleClass('hidden', isClosed);
|
|
|
|
|
2017-07-11 18:57:28 -04:00
|
|
|
$(document).trigger('issuable:change', isClosed);
|
2017-07-03 12:00:59 -04:00
|
|
|
this.toggleCloseReopenButton(isClosed);
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-09-01 03:41:31 -04:00
|
|
|
let numProjectIssues = Number(projectIssuesCounter.first().text().trim().replace(/[^\d]/, ''));
|
2017-04-12 15:40:35 -04:00
|
|
|
numProjectIssues = isClosed ? numProjectIssues - 1 : numProjectIssues + 1;
|
2017-11-13 04:11:54 -05:00
|
|
|
projectIssuesCounter.text(addDelimiter(numProjectIssues));
|
2017-05-04 04:09:21 -04:00
|
|
|
|
|
|
|
if (this.createMergeRequestDropdown) {
|
|
|
|
if (isClosed) {
|
|
|
|
this.createMergeRequestDropdown.unavailable();
|
|
|
|
this.createMergeRequestDropdown.disable();
|
|
|
|
} else {
|
|
|
|
// We should check in case a branch was created in another tab
|
|
|
|
this.createMergeRequestDropdown.checkAbilityToCreateBranch();
|
|
|
|
}
|
|
|
|
}
|
2017-04-12 15:40:35 -04:00
|
|
|
} else {
|
|
|
|
new Flash(issueFailMessage);
|
2017-03-01 14:54:04 -05:00
|
|
|
}
|
2017-07-05 12:36:58 -04:00
|
|
|
})
|
|
|
|
.then(() => {
|
2017-07-03 12:00:59 -04:00
|
|
|
this.disableCloseReopenButton($button, false);
|
2016-07-24 16:45:11 -04:00
|
|
|
});
|
2017-03-01 14:54:04 -05:00
|
|
|
});
|
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-06-07 06:18:35 -04:00
|
|
|
initCloseReopenReport() {
|
2017-07-07 11:04:43 -04:00
|
|
|
this.closeReopenReportToggle = IssuablesHelper.initCloseReopenReport();
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-07-07 11:04:43 -04:00
|
|
|
if (this.closeButtons) this.closeButtons = this.closeButtons.not('.issuable-close-button');
|
|
|
|
if (this.reopenButtons) this.reopenButtons = this.reopenButtons.not('.issuable-close-button');
|
2017-06-07 06:18:35 -04:00
|
|
|
}
|
|
|
|
|
2017-07-03 12:00:59 -04:00
|
|
|
disableCloseReopenButton($button, shouldDisable) {
|
|
|
|
if (this.closeReopenReportToggle) {
|
|
|
|
this.closeReopenReportToggle.setDisable(shouldDisable);
|
|
|
|
} else {
|
|
|
|
$button.prop('disabled', shouldDisable);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleCloseReopenButton(isClosed) {
|
2017-07-07 09:51:34 -04:00
|
|
|
if (this.closeReopenReportToggle) this.closeReopenReportToggle.updateButton(isClosed);
|
|
|
|
this.closeButtons.toggleClass('hidden', isClosed);
|
|
|
|
this.reopenButtons.toggleClass('hidden', !isClosed);
|
2017-07-03 12:00:59 -04:00
|
|
|
}
|
|
|
|
|
2017-03-01 14:54:04 -05:00
|
|
|
static submitNoteForm(form) {
|
|
|
|
var noteText;
|
|
|
|
noteText = form.find("textarea.js-note-text").val();
|
2017-07-11 18:35:07 -04:00
|
|
|
if (noteText && noteText.trim().length > 0) {
|
2017-03-01 14:54:04 -05:00
|
|
|
return form.submit();
|
|
|
|
}
|
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-03-01 14:54:04 -05:00
|
|
|
static initMergeRequests() {
|
|
|
|
var $container;
|
|
|
|
$container = $('#merge-requests');
|
2017-04-12 15:40:35 -04:00
|
|
|
return $.getJSON($container.data('url')).fail(function() {
|
|
|
|
return new Flash('Failed to load referenced merge requests');
|
|
|
|
}).done(function(data) {
|
2017-03-01 14:54:04 -05:00
|
|
|
if ('html' in data) {
|
|
|
|
return $container.html(data.html);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-03-01 14:54:04 -05:00
|
|
|
static initRelatedBranches() {
|
|
|
|
var $container;
|
|
|
|
$container = $('#related-branches');
|
2017-04-12 15:40:35 -04:00
|
|
|
return $.getJSON($container.data('url')).fail(function() {
|
|
|
|
return new Flash('Failed to load related branches');
|
|
|
|
}).done(function(data) {
|
2017-03-01 14:54:04 -05:00
|
|
|
if ('html' in data) {
|
|
|
|
return $container.html(data.html);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|