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

60 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-09-13 17:45:13 +05:30
(function() {
this.GLForm = (function() {
function GLForm(form) {
this.form = form;
this.textarea = this.form.find('textarea.js-gfm-input');
2016-09-29 09:46:39 +05:30
// Before we start, we should clean up any previous data for this form
2016-09-13 17:45:13 +05:30
this.destroy();
2016-09-29 09:46:39 +05:30
// Setup the form
2016-09-13 17:45:13 +05:30
this.setupForm();
this.form.data('gl-form', this);
}
GLForm.prototype.destroy = function() {
2016-09-29 09:46:39 +05:30
// Clean form listeners
2016-09-13 17:45:13 +05:30
this.clearEventListeners();
return this.form.data('gl-form', null);
};
GLForm.prototype.setupForm = function() {
var isNewForm;
isNewForm = this.form.is(':not(.gfm-form)');
this.form.removeClass('js-new-note-form');
if (isNewForm) {
this.form.find('.div-dropzone').remove();
this.form.addClass('gfm-form');
disableButtonIfEmptyField(this.form.find('.js-note-text'), this.form.find('.js-comment-button'));
2016-09-29 09:46:39 +05:30
// remove notify commit author checkbox for non-commit notes
2016-09-13 17:45:13 +05:30
GitLab.GfmAutoComplete.setup(this.form.find('.js-gfm-input'));
new DropzoneInput(this.form);
autosize(this.textarea);
2016-09-29 09:46:39 +05:30
// form and textarea event listeners
2016-09-13 17:45:13 +05:30
this.addEventListeners();
gl.text.init(this.form);
}
2016-09-29 09:46:39 +05:30
// hide discard button
2016-09-13 17:45:13 +05:30
this.form.find('.js-note-discard').hide();
return this.form.show();
};
GLForm.prototype.clearEventListeners = function() {
this.textarea.off('focus');
this.textarea.off('blur');
return gl.text.removeListeners(this.form);
};
GLForm.prototype.addEventListeners = function() {
this.textarea.on('focus', function() {
return $(this).closest('.md-area').addClass('is-focused');
});
return this.textarea.on('blur', function() {
return $(this).closest('.md-area').removeClass('is-focused');
});
};
return GLForm;
})();
}).call(this);