2016-07-24 16:45:11 -04:00
|
|
|
(function() {
|
|
|
|
var issuable_created;
|
|
|
|
|
|
|
|
issuable_created = false;
|
|
|
|
|
|
|
|
this.Issuable = {
|
|
|
|
init: function() {
|
2016-08-12 05:10:59 -04:00
|
|
|
Issuable.initTemplates();
|
|
|
|
Issuable.initSearch();
|
|
|
|
Issuable.initChecks();
|
|
|
|
return Issuable.initLabelFilterRemove();
|
2016-07-24 16:45:11 -04:00
|
|
|
},
|
|
|
|
initTemplates: function() {
|
|
|
|
return Issuable.labelRow = _.template('<% _.each(labels, function(label){ %> <span class="label-row btn-group" role="group" aria-label="<%- label.title %>" style="color: <%- label.text_color %>;"> <a href="#" class="btn btn-transparent has-tooltip" style="background-color: <%- label.color %>;" title="<%- label.description %>" data-container="body"> <%- label.title %> </a> <button type="button" class="btn btn-transparent label-remove js-label-filter-remove" style="background-color: <%- label.color %>;" data-label="<%- label.title %>"> <i class="fa fa-times"></i> </button> </span> <% }); %>');
|
|
|
|
},
|
|
|
|
initSearch: function() {
|
|
|
|
this.timer = null;
|
|
|
|
return $('#issue_search').off('keyup').on('keyup', function() {
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
return this.timer = setTimeout(function() {
|
|
|
|
var $form, $input, $search;
|
|
|
|
$search = $('#issue_search');
|
|
|
|
$form = $('.js-filter-form');
|
|
|
|
$input = $("input[name='" + ($search.attr('name')) + "']", $form);
|
|
|
|
if ($input.length === 0) {
|
|
|
|
$form.append("<input type='hidden' name='" + ($search.attr('name')) + "' value='" + (_.escape($search.val())) + "'/>");
|
|
|
|
} else {
|
|
|
|
$input.val($search.val());
|
|
|
|
}
|
|
|
|
if ($search.val() !== '') {
|
|
|
|
return Issuable.filterResults($form);
|
|
|
|
}
|
|
|
|
}, 500);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
initLabelFilterRemove: function() {
|
|
|
|
return $(document).off('click', '.js-label-filter-remove').on('click', '.js-label-filter-remove', function(e) {
|
|
|
|
var $button;
|
|
|
|
$button = $(this);
|
|
|
|
$('input[name="label_name[]"]').filter(function() {
|
|
|
|
return this.value === $button.data('label');
|
|
|
|
}).remove();
|
|
|
|
Issuable.filterResults($('.filter-form'));
|
|
|
|
return $('.js-label-select').trigger('update.label');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
filterResults: (function(_this) {
|
|
|
|
return function(form) {
|
|
|
|
var formAction, formData, issuesUrl;
|
|
|
|
formData = form.serialize();
|
|
|
|
formAction = form.attr('action');
|
|
|
|
issuesUrl = formAction;
|
|
|
|
issuesUrl += "" + (formAction.indexOf('?') < 0 ? '?' : '&');
|
|
|
|
issuesUrl += formData;
|
|
|
|
return Turbolinks.visit(issuesUrl);
|
|
|
|
};
|
|
|
|
})(this),
|
|
|
|
initChecks: function() {
|
|
|
|
this.issuableBulkActions = $('.bulk-update').data('bulkActions');
|
|
|
|
$('.check_all_issues').off('click').on('click', function() {
|
|
|
|
$('.selected_issue').prop('checked', this.checked);
|
|
|
|
return Issuable.checkChanged();
|
|
|
|
});
|
|
|
|
return $('.selected_issue').off('change').on('change', Issuable.checkChanged.bind(this));
|
|
|
|
},
|
|
|
|
checkChanged: function() {
|
|
|
|
var checked_issues, ids;
|
|
|
|
checked_issues = $('.selected_issue:checked');
|
|
|
|
if (checked_issues.length > 0) {
|
|
|
|
ids = $.map(checked_issues, function(value) {
|
|
|
|
return $(value).data('id');
|
|
|
|
});
|
|
|
|
$('#update_issues_ids').val(ids);
|
|
|
|
$('.issues-other-filters').hide();
|
|
|
|
$('.issues_bulk_update').show();
|
|
|
|
} else {
|
|
|
|
$('#update_issues_ids').val([]);
|
|
|
|
$('.issues_bulk_update').hide();
|
|
|
|
$('.issues-other-filters').show();
|
|
|
|
this.issuableBulkActions.willUpdateLabels = false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}).call(this);
|