editor.js/plugins/paragraph/paragraph.js
George Berezhnoy d2e755086a Destroy module (#157)
* listeners module added

* Destroy method added

* Destroy method for plugins added

* Delete plugins properties from window obj

* Revert "Delete plugins properties from window obj"

This reverts commit 6c91f81229.

* Twitter and instagram api's destroy

* Scripts destoy added

* Fix

* Replace regex with String.indexOf

* Settings for destroyer
2017-02-13 20:54:18 +03:00

104 lines
1.8 KiB
JavaScript

/**
* Paragraph Plugin
* Creates DIV tag and adds content to this tag
*/
var paragraph = (function(paragraph_plugin) {
/**
* @private
*
* Make initial paragraph block
* @param {object} JSON with block data
* @return {Element} element to append
*/
var make_ = function (data) {
/** Create Empty DIV */
var tag = codex.editor.draw.node('DIV', ['ce-paragraph'], {});
if (data && data.text) {
tag.innerHTML = data.text;
}
tag.contentEditable = true;
return tag;
};
/**
* @private
*
* Handles input data for save
* @param data
*/
var prepareDataForSave_ = function(data) {
};
/**
* @public
*
* Plugins should have prepare method
* @param config
*/
paragraph_plugin.prepare = function(config) {
};
/*
* @public
*
* Method to render HTML block from JSON
*/
paragraph_plugin.render = function (data) {
return make_(data);
};
/**
* @public
*
* Check output data for validity.
* Should be defined by developer
*/
paragraph_plugin.validate = function(output) {
if (output.text === '')
return;
return output;
};
/**
* @public
*
* Method to extract JSON data from HTML block
*/
paragraph_plugin.save = function (blockContent){
var wrappedText = codex.editor.content.wrapTextWithParagraphs(blockContent.innerHTML);
var data = {
"text": wrappedText,
"format": "html",
"introText": '<<same>>'
};
return data;
};
paragraph_plugin.destroy = function () {
paragraph = null;
};
return paragraph_plugin;
})({});