debian-mirror-gitlab/app/assets/javascripts/templates/issuable_template_selector.js.es6

58 lines
2 KiB
JavaScript
Raw Normal View History

2016-09-13 17:45:13 +05:30
/*= require ../blob/template_selector */
((global) => {
2016-11-03 12:29:30 +05:30
class IssuableTemplateSelector extends gl.TemplateSelector {
2016-09-13 17:45:13 +05:30
constructor(...args) {
super(...args);
this.projectPath = this.dropdown.data('project-path');
this.namespacePath = this.dropdown.data('namespace-path');
this.issuableType = this.wrapper.data('issuable-type');
this.titleInput = $(`#${this.issuableType}_title`);
let initialQuery = {
name: this.dropdown.data('selected')
};
if (initialQuery.name) this.requestFile(initialQuery);
$('.reset-template', this.dropdown.parent()).on('click', () => {
2016-11-03 12:29:30 +05:30
this.setInputValueToTemplateContent();
});
$('.no-template', this.dropdown.parent()).on('click', () => {
this.currentTemplate = '';
this.setInputValueToTemplateContent();
$('.dropdown-toggle-text', this.dropdown).text('Choose a template');
2016-09-13 17:45:13 +05:30
});
}
requestFile(query) {
this.startLoadingSpinner();
Api.issueTemplate(this.namespacePath, this.projectPath, query.name, this.issuableType, (err, currentTemplate) => {
this.currentTemplate = currentTemplate;
if (err) return; // Error handled by global AJAX error handler
this.stopLoadingSpinner();
this.setInputValueToTemplateContent();
});
return;
}
setInputValueToTemplateContent() {
// `this.requestFileSuccess` sets the value of the description input field
// to the content of the template selected.
if (this.titleInput.val() === '') {
// If the title has not yet been set, focus the title input and
2016-11-03 12:29:30 +05:30
// skip focusing the description input by setting `true` as the
// `skipFocus` option to `requestFileSuccess`.
this.requestFileSuccess(this.currentTemplate, {skipFocus: true});
2016-09-13 17:45:13 +05:30
this.titleInput.focus();
} else {
2016-11-03 12:29:30 +05:30
this.requestFileSuccess(this.currentTemplate, {skipFocus: false});
2016-09-13 17:45:13 +05:30
}
return;
}
}
global.IssuableTemplateSelector = IssuableTemplateSelector;
2016-11-03 12:29:30 +05:30
})(window.gl || (window.gl = {}));