debian-mirror-gitlab/app/assets/javascripts/issuable_bulk_update_actions.js

155 lines
4.7 KiB
JavaScript
Raw Normal View History

2019-12-21 20:55:43 +05:30
/* eslint-disable consistent-return, func-names, array-callback-return */
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2017-09-10 17:25:29 +05:30
import _ from 'underscore';
2018-03-17 18:26:18 +05:30
import axios from './lib/utils/axios_utils';
import Flash from './flash';
2019-09-04 21:01:54 +05:30
import { __ } from './locale';
2017-09-10 17:25:29 +05:30
export default {
2019-09-30 21:07:59 +05:30
init({ form, issues, prefixId } = {}) {
2017-09-10 17:25:29 +05:30
this.prefixId = prefixId || 'issue_';
this.form = form || this.getElement('.bulk-update');
this.$labelDropdown = this.form.find('.js-label-select');
this.issues = issues || this.getElement('.issues-list .issue');
this.willUpdateLabels = false;
this.bindEvents();
},
bindEvents() {
return this.form.off('submit').on('submit', this.onFormSubmit.bind(this));
},
onFormSubmit(e) {
e.preventDefault();
return this.submit();
},
submit() {
2018-03-17 18:26:18 +05:30
axios[this.form.attr('method')](this.form.attr('action'), this.getFormDataAsObject())
.then(() => window.location.reload())
.catch(() => this.onFormSubmitFailure());
2017-09-10 17:25:29 +05:30
},
onFormSubmitFailure() {
this.form.find('[type="submit"]').enable();
2019-09-04 21:01:54 +05:30
return new Flash(__('Issue update failed'));
2017-09-10 17:25:29 +05:30
},
getSelectedIssues() {
2018-12-05 23:21:45 +05:30
return this.issues.has('.selected-issuable:checked');
2017-09-10 17:25:29 +05:30
},
getLabelsFromSelection() {
const labels = [];
this.getSelectedIssues().map(function() {
const labelsData = $(this).data('labels');
if (labelsData) {
2019-12-21 20:55:43 +05:30
return labelsData.map(labelId => {
2017-09-10 17:25:29 +05:30
if (labels.indexOf(labelId) === -1) {
return labels.push(labelId);
}
});
}
});
return labels;
},
/**
* Will return only labels that were marked previously and the user has unmarked
* @return {Array} Label IDs
*/
getUnmarkedIndeterminedLabels() {
const result = [];
const labelsToKeep = this.$labelDropdown.data('indeterminate');
2018-12-13 13:39:08 +05:30
this.getLabelsFromSelection().forEach(id => {
2017-09-10 17:25:29 +05:30
if (labelsToKeep.indexOf(id) === -1) {
result.push(id);
}
});
return result;
},
/**
* Simple form serialization, it will return just what we need
* Returns key/value pairs from form data
*/
getFormDataAsObject() {
const formData = {
update: {
state_event: this.form.find('input[name="update[state_event]"]').val(),
assignee_ids: [this.form.find('input[name="update[assignee_ids][]"]').val()],
milestone_id: this.form.find('input[name="update[milestone_id]"]').val(),
issuable_ids: this.form.find('input[name="update[issuable_ids]"]').val(),
subscription_event: this.form.find('input[name="update[subscription_event]"]').val(),
add_label_ids: [],
2018-12-13 13:39:08 +05:30
remove_label_ids: [],
},
2017-09-10 17:25:29 +05:30
};
if (this.willUpdateLabels) {
formData.update.add_label_ids = this.$labelDropdown.data('marked');
formData.update.remove_label_ids = this.$labelDropdown.data('unmarked');
}
return formData;
},
setOriginalDropdownData() {
const $labelSelect = $('.bulk-update .js-label-select');
$labelSelect.data('common', this.getOriginalCommonIds());
$labelSelect.data('marked', this.getOriginalMarkedIds());
$labelSelect.data('indeterminate', this.getOriginalIndeterminateIds());
},
// From issuable's initial bulk selection
getOriginalCommonIds() {
const labelIds = [];
2018-12-05 23:21:45 +05:30
this.getElement('.selected-issuable:checked').each((i, el) => {
2017-09-10 17:25:29 +05:30
labelIds.push(this.getElement(`#${this.prefixId}${el.dataset.id}`).data('labels'));
});
return _.intersection.apply(this, labelIds);
},
// From issuable's initial bulk selection
getOriginalMarkedIds() {
const labelIds = [];
2018-12-05 23:21:45 +05:30
this.getElement('.selected-issuable:checked').each((i, el) => {
2017-09-10 17:25:29 +05:30
labelIds.push(this.getElement(`#${this.prefixId}${el.dataset.id}`).data('labels'));
});
return _.intersection.apply(this, labelIds);
},
// From issuable's initial bulk selection
getOriginalIndeterminateIds() {
const uniqueIds = [];
const labelIds = [];
let issuableLabels = [];
// Collect unique label IDs for all checked issues
2018-12-05 23:21:45 +05:30
this.getElement('.selected-issuable:checked').each((i, el) => {
2017-09-10 17:25:29 +05:30
issuableLabels = this.getElement(`#${this.prefixId}${el.dataset.id}`).data('labels');
2018-12-13 13:39:08 +05:30
issuableLabels.forEach(labelId => {
2017-09-10 17:25:29 +05:30
// Store unique IDs
if (uniqueIds.indexOf(labelId) === -1) {
uniqueIds.push(labelId);
}
});
// Store array of IDs per issuable
labelIds.push(issuableLabels);
});
// Add uniqueIds to add it as argument for _.intersection
labelIds.unshift(uniqueIds);
// Return IDs that are present but not in all selected issueables
return _.difference(uniqueIds, _.intersection.apply(this, labelIds));
},
getElement(selector) {
this.scopeEl = this.scopeEl || $('.content');
return this.scopeEl.find(selector);
},
};