mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-07-30 04:50:07 +00:00
67 lines
1.7 KiB
JavaScript
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, ' ');
|
|
|
|
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;
|