framadate/assets/js/mde-wrapper.js
Thomas Citharel 68feae33c2
Upgrade to SF4
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-04-11 20:04:11 +02:00

67 lines
1.7 KiB
JavaScript

import $ from 'jquery';
import SimpleMDE from 'simplemde';
function myPreviewRender (text) {
text = text.replace(/[\u00A0-\u9999<>\&]/gim, function(i) {
return '&#'+i.charCodeAt(0)+';';
});
text = SimpleMDE.prototype.markdown(text);
text = text.replace(/ /g, '&nbsp;');
return text;
}
function MDEWrapper(textarea, enableButton, disableButton) {
this.element = textarea;
this.enableButton = enableButton;
this.disableButton = disableButton;
this.simplemde = null;
const wrapper = this;
if (this.enableButton) {
$(this.enableButton).on('click', () => wrapper.enable());
}
if (this.disableButton) {
$(this.disableButton).on('click', () => wrapper.disable());
}
}
MDEWrapper.prototype.enable = function() {
const wrapper = this;
if (this.simplemde == null) {
this.simplemde = new SimpleMDE({
element: wrapper.element,
forceSync: true,
status: true,
previewRender: myPreviewRender,
spellChecker: false,
promptURLs: true
});
if (this.enableButton) {
$(this.enableButton).addClass('active');
}
if (this.disableButton) {
$(this.disableButton).removeClass('active');
}
}
};
MDEWrapper.prototype.disable = function() {
if (this.simplemde != null) {
this.simplemde.toTextArea();
this.simplemde = null;
if (this.disableButton) {
$(this.disableButton).addClass('active');
}
if (this.enableButton) {
$(this.enableButton).removeClass('active');
}
}
};
MDEWrapper.prototype.isEnabled = function() {
return this.simplemde != null;
};
export default MDEWrapper;