$.each(attributes, function() {
if(this.name) {
attributes_html += ' ' + this.name + '="' + this.value + '"';
}
});
$inputElement.replaceWith($('
'));
$inputElement = $('[data-richtext="init"]');
$inputElement.removeAttr("data-richtext");
}
$editor = $('
', {class: "richText"});
var $toolbar = $('
', {class: "richText-toolbar"});
var $editorView = $('
', {class: "richText-editor", id: editorID, contenteditable: true});
$toolbar.append($toolbarList);
/* text formatting */
if(settings.bold === true) {
$toolbarList.append($toolbarElement.clone().append($btnBold));
}
if(settings.italic === true) {
$toolbarList.append($toolbarElement.clone().append($btnItalic));
}
if(settings.underline === true) {
$toolbarList.append($toolbarElement.clone().append($btnUnderline));
}
/* align */
if(settings.leftAlign === true) {
$toolbarList.append($toolbarElement.clone().append($btnLeftAlign));
}
if(settings.centerAlign === true) {
$toolbarList.append($toolbarElement.clone().append($btnCenterAlign));
}
if(settings.rightAlign === true) {
$toolbarList.append($toolbarElement.clone().append($btnRightAlign));
}
/* lists */
if(settings.ol === true) {
$toolbarList.append($toolbarElement.clone().append($btnOL));
}
if(settings.ul === true) {
$toolbarList.append($toolbarElement.clone().append($btnUL));
}
/* font list */
if(settings.fonts === true && settings.fontList.length > 0) {
$toolbarList.append($toolbarElement.clone().append($btnFont));
}
/* heading */
if(settings.heading === true) {
$toolbarList.append($toolbarElement.clone().append($btnHeading));
}
/* colors */
if(settings.fontColor === true) {
$toolbarList.append($toolbarElement.clone().append($btnFontColor));
}
/* uploads */
if(settings.imageUpload === true) {
$toolbarList.append($toolbarElement.clone().append($btnImageUpload));
}
if(settings.fileUpload === true) {
$toolbarList.append($toolbarElement.clone().append($btnFileUpload));
}
/* media */
if(settings.videoEmbed === true) {
$toolbarList.append($toolbarElement.clone().append($btnVideoEmbed));
}
/* urls */
if(settings.urls === true) {
$toolbarList.append($toolbarElement.clone().append($btnURLs));
}
if(settings.table === true) {
$toolbarList.append($toolbarElement.clone().append($btnTable));
}
/* code */
if(settings.removeStyles === true) {
$toolbarList.append($toolbarElement.clone().append($btnRemoveStyles));
}
if(settings.code === true) {
$toolbarList.append($toolbarElement.clone().append($btnCode));
}
// set current textarea value to editor
$editorView.html($inputElement.val());
$editor.append($toolbar);
$editor.append($editorView);
$editor.append($inputElement.clone().hide());
$inputElement.replaceWith($editor);
// append bottom toolbar
$editor.append(
$('
', {class: 'richText-toolbar'})
.append($('
', {class: 'richText-undo is-disabled', html: '
'}))
.append($('
', {class: 'richText-redo is-disabled', html: '
'}))
.append($('
', {class: 'richText-help', html: '
'}))
);
if(settings.height && settings.height > 0) {
// set custom editor height
$editor.children(".richText-editor, .richText-initial").css({'min-height' : settings.height + 'px', 'height' : settings.height + 'px'});
} else if(settings.heightPercentage && settings.heightPercentage > 0) {
// set custom editor height in percentage
var parentHeight = $editor.parent().innerHeight(); // get editor parent height
var height = (settings.heightPercentage/100) * parentHeight; // calculate pixel value from percentage
height -= $toolbar.outerHeight()*2; // remove toolbar size
height -= parseInt($editor.css("margin-top")); // remove margins
height -= parseInt($editor.css("margin-bottom")); // remove margins
height -= parseInt($editor.find(".richText-editor").css("padding-top")); // remove paddings
height -= parseInt($editor.find(".richText-editor").css("padding-bottom")); // remove paddings
$editor.children(".richText-editor, .richText-initial").css({'min-height' : height + 'px', 'height' : height + 'px'});
}
// add custom class
if(settings.class) {
$editor.addClass(settings.class);
}
if(settings.id) {
$editor.attr("id", settings.id);
}
// fix the first line
fixFirstLine();
// save history
history.push($editor.find("textarea").val());
};
// initialize editor
init();
/** EVENT HANDLERS */
// Help popup
$editor.find(".richText-help").on("click", function() {
var $editor = $(this).parents(".richText");
if($editor) {
var $outer = $('
', {class: 'richText-help-popup', style: 'position:absolute;top:0;right:0;bottom:0;left:0;background-color: rgba(0,0,0,0.3);'});
var $inner = $('
', {style: 'position:relative;margin:60px auto;padding:20px;background-color:#FAFAFA;width:70%;font-family:Calibri,Verdana,Helvetica,sans-serif;font-size:small;'});
var $content = $('
', {html: '
'});
$content.append('
RichText
');
$content.append('
Powered by
webfashionist/RichText (Github)
License:
AGPL-3.0');
$outer.append($inner.append($content));
$editor.append($outer);
$outer.on("click", "#closeHelp", function() {
$(this).parents('.richText-help-popup').remove();
});
}
});
// undo / redo
$(document).on("click", ".richText-undo, .richText-redo", function(e) {
var $this = $(this);
if($this.hasClass("richText-undo") && !$this.hasClass("is-disabled")) {
undo();
} else if($this.hasClass("richText-redo") && !$this.hasClass("is-disabled")) {
redo();
}
});
// Saving changes from editor to textarea
$(document).on("input change blur keydown", ".richText-editor", function(e) {
if((e.keyCode === 9 || e.keyCode === "9") && e.type === "keydown") {
// tab through table cells
e.preventDefault();
tabifyEditableTable(window, e);
return false;
}
fixFirstLine();
updateTextarea();
doSave($(this).attr("id"));
});
// Saving changes from textarea to editor
$(document).on("input change blur", ".richText-initial", function() {
if(settings.useSingleQuotes === true) {
$(this).val(changeAttributeQuotes($(this).val()));
}
var editorID = $(this).siblings('.richText-editor').attr("id");
updateEditor(editorID);
doSave(editorID);
});
// Save selection seperately (mainly needed for Safari)
$(document).on("dblclick mouseup", ".richText-editor", function() {
var editorID = $(this).attr("id");
doSave(editorID);
});
// embedding video
$(document).on("click", "#richText-Video button.btn", function(event) {
event.preventDefault();
var $button = $(this);
var $form = $button.parent('.richText-form-item').parent('.richText-form');
if($form.attr("data-editor") === editorID) {
// only for the currently selected editor
var url = $form.find('input#videoURL').val();
var size = $form.find('select#size').val();
if(!url) {
// no url set
$form.prepend($('
', {style: 'color:red;display:none;', class: 'form-item is-error', text: 'Please enter an URL'}));
$form.children('.form-item.is-error').slideDown();
setTimeout(function() {
$form.children('.form-item.is-error').slideUp(function () {
$(this).remove();
});
}, 5000);
} else {
// write html in editor
var html = '';
html = getVideoCode(url, size);
if(!html) {
$form.prepend($('
', {style: 'color:red;display:none;', class: 'form-item is-error', text: 'Video URL not supported'}));
$form.children('.form-item.is-error').slideDown();
setTimeout(function() {
$form.children('.form-item.is-error').slideUp(function () {
$(this).remove();
});
}, 5000);
} else {
if(settings.useSingleQuotes === true) {
} else {
}
restoreSelection();
pasteHTMLAtCaret(html);
updateTextarea();
// reset input values
$form.find('input#videoURL').val('');
$('.richText-toolbar li.is-selected').removeClass("is-selected");
}
}
}
});
// Resize images
$(document).on('mousedown', function(e) {
var $target = $(e.target);
if($target.prop("tagName") === "IMG" && $target.parents("#" + editorID)) {
startX = e.pageX;
startY = e.pageY;
startW = $target.innerWidth();
startH = $target.innerHeight();
var left = $target.offset().left;
var right = $target.offset().left + $target.innerWidth();
var bottom = $target.offset().top + $target.innerHeight();
var top = $target.offset().top;
var resize = false;
$target.css({'cursor' : 'default'});
if(startY <= bottom && startY >= bottom-20 && startX >= right-20 && startX <= right) {
// bottom right corner
$resizeImage = $target;
$resizeImage.css({'cursor' : 'nwse-resize'});
resize = true;
}
if((resize === true || $resizeImage) && !$resizeImage.data("width")) {
// set initial image size and prevent dragging image while resizing
$resizeImage.data("width", $target.parents("#" + editorID).innerWidth());
$resizeImage.data("height", $target.parents("#" + editorID).innerHeight()*3);
e.preventDefault();
} else if(resize === true || $resizeImage) {
// resizing active, prevent other events
e.preventDefault();
} else {
// resizing disabled, allow dragging image
$resizeImage = null;
}
}
});
$(document)
.mouseup(function(){
if($resizeImage) {
$resizeImage.css({'cursor' : 'default'});
}
$resizeImage = null;
})
.mousemove(function(e){
if($resizeImage!==null){
var maxWidth = $resizeImage.data('width');
var currentWidth = $resizeImage.width();
var maxHeight = $resizeImage.data('height');
var currentHeight = $resizeImage.height();
if((startW + e.pageX-startX) <= maxWidth && (startH + e.pageY-startY) <= maxHeight) {
// only resize if new size is smaller than the original image size
$resizeImage.innerWidth (startW + e.pageX-startX); // only resize width to adapt height proportionally
// $box.innerHeight(startH + e.pageY-startY);
updateTextarea();
} else if((startW + e.pageX-startX) <= currentWidth && (startH + e.pageY-startY) <= currentHeight) {
// only resize if new size is smaller than the previous size
$resizeImage.innerWidth (startW + e.pageX-startX); // only resize width to adapt height proportionally
updateTextarea();
}
}
});
// adding URL
$(document).on("click", "#richText-URL button.btn", function(event) {
event.preventDefault();
var $button = $(this);
var $form = $button.parent('.richText-form-item').parent('.richText-form');
if($form.attr("data-editor") === editorID) {
// only for currently selected editor
var url = $form.find('input#url').val();
var text = $form.find('input#urlText').val();
var target = $form.find('#openIn').val();
// set default values
if(!target) {
target = '_self';
}
if(!text) {
text = url;
}
if(!url) {
// no url set
$form.prepend($('
', {style: 'color:red;display:none;', class: 'form-item is-error', text: 'Please enter an URL'}));
$form.children('.form-item.is-error').slideDown();
setTimeout(function() {
$form.children('.form-item.is-error').slideUp(function () {
$(this).remove();
});
}, 5000);
} else {
// write html in editor
var html = '';
if(settings.useSingleQuotes === true) {
html = "
" + text + "";
} else {
html = '
' + text + '';
}
restoreSelection();
pasteHTMLAtCaret(html);
// reset input values
$form.find('input#url').val('');
$form.find('input#urlText').val('');
$('.richText-toolbar li.is-selected').removeClass("is-selected");
}
}
});
// adding image
$(document).on("click", "#richText-Image button.btn", function(event) {
event.preventDefault();
var $button = $(this);
var $form = $button.parent('.richText-form-item').parent('.richText-form');
if($form.attr("data-editor") === editorID) {
// only for currently selected editor
var url = $form.find('#imageURL').val();
var align = $form.find('select#align').val();
// set default values
if(!align) {
align = 'center';
}
if(!url) {
// no url set
$form.prepend($('
', {style: 'color:red;display:none;', class: 'form-item is-error', text: 'Please select an image.'}));
$form.children('.form-item.is-error').slideDown();
setTimeout(function() {
$form.children('.form-item.is-error').slideUp(function () {
$(this).remove();
});
}, 5000);
} else {
// write html in editor
var html = '';
if(settings.useSingleQuotes === true) {
if(align === "center") {
html = "
";
} else {
html = "

";
}
} else {
if(align === "center") {
html = '
';
} else {
html = '

';
}
}
restoreSelection();
pasteHTMLAtCaret(html);
// reset input values
$form.find('input#imageURL').val('');
$('.richText-toolbar li.is-selected').removeClass("is-selected");
}
}
});
// adding file
$(document).on("click", "#richText-File button.btn", function(event) {
event.preventDefault();
var $button = $(this);
var $form = $button.parent('.richText-form-item').parent('.richText-form');
if($form.attr("data-editor") === editorID) {
// only for currently selected editor
var url = $form.find('#fileURL').val();
var text = $form.find('#fileText').val();
// set default values
if(!text) {
text = url;
}
if(!url) {
// no url set
$form.prepend($('
', {style: 'color:red;display:none;', class: 'form-item is-error', text: 'Please select a file.'}));
$form.children('.form-item.is-error').slideDown();
setTimeout(function() {
$form.children('.form-item.is-error').slideUp(function () {
$(this).remove();
});
}, 5000);
} else {
// write html in editor
var html = '';
if(settings.useSingleQuotes === true) {
html = "
" + text + "";
} else {
html = '
' + text + '';
}
restoreSelection();
pasteHTMLAtCaret(html);
// reset input values
$form.find('input#fileURL').val('');
$form.find('input#fileText').val('');
$('.richText-toolbar li.is-selected').removeClass("is-selected");
}
}
});
// adding table
$(document).on("click", "#richText-Table button.btn", function(event) {
event.preventDefault();
var $button = $(this);
var $form = $button.parent('.richText-form-item').parent('.richText-form');
if($form.attr("data-editor") === editorID) {
// only for currently selected editor
var rows = $form.find('input#tableRows').val();
var columns = $form.find('input#tableColumns').val();
// set default values
if(!rows || rows <= 0) {
rows = 2;
}
if(!columns || columns <= 0) {
columns = 2;
}
// generate table
var html = '';
if(settings.useSingleQuotes === true) {
html = "
";
} else {
html = '';
}
for(var i = 1; i <= rows; i++) {
// start new row
html += '';
for(var n = 1; n <= columns; n++) {
// start new column in row
html += ' | ';
}
html += '
';
}
html += '
';
// write html in editor
restoreSelection();
pasteHTMLAtCaret(html);
// reset input values
$form.find('input#tableColumns').val('');
$form.find('input#tableRows').val('');
$('.richText-toolbar li.is-selected').removeClass("is-selected");
}
});
// opening / closing toolbar dropdown
$(document).on("click", function(event) {
var $clickedElement = $(event.target);
if($clickedElement.parents('.richText-toolbar').length === 0) {
// element not in toolbar
// ignore
} else if($clickedElement.hasClass("richText-dropdown-outer")) {
// closing dropdown by clicking inside the editor
$clickedElement.parent('a').parent('li').removeClass("is-selected");
} else if($clickedElement.find(".richText").length > 0) {
// closing dropdown by clicking outside of the editor
$('.richText-toolbar li').removeClass("is-selected");
} else if($clickedElement.parent().hasClass("richText-dropdown-close")) {
// closing dropdown by clicking on the close button
$('.richText-toolbar li').removeClass("is-selected");
} else if($clickedElement.hasClass("richText-btn") && $(event.target).children('.richText-dropdown-outer').length > 0) {
// opening dropdown by clicking on toolbar button
$clickedElement.parent('li').addClass("is-selected");
if($clickedElement.hasClass("fa-link")) {
// put currently selected text in URL form to replace it
restoreSelection();
var selectedText = getSelectedText();
$clickedElement.find("input#urlText").val('');
$clickedElement.find("input#url").val('');
if(selectedText) {
$clickedElement.find("input#urlText").val(selectedText);
}
} else if($clickedElement.hasClass("fa-image")) {
// image
}
}
});
// Executing editor commands
$(document).on("click", ".richText-toolbar a[data-command]", function(event) {
var $button = $(this);
var $toolbar = $button.closest('.richText-toolbar');
if($toolbar.siblings("#" + editorID).length > 0 && (!$button.parent("li").attr('data-disable') || $button.parent("li").attr('data-disable') === "false")) {
event.preventDefault();
var command = $(this).data("command");
if(command === "toggleCode") {
toggleCode();
} else {
var option = null;
if ($(this).data('option')) {
option = $(this).data('option');
if (option.match(/^h[1-6]$/)) {
command = "heading";
}
}
formatText(command, option);
if (command === "removeFormat") {
formatText('formatBlock', 'div');
}
}
}
// close dropdown after click
$button.parents('li.is-selected').removeClass('is-selected');
});
/** INTERNAL METHODS **/
/**
* Format text in editor
* @param {string} command
* @param {string|null} option
* @private
*/
function formatText(command, option) {
if (typeof option === "undefined") {
option = null;
}
// restore selection from before clicking on any button
doRestore();
// Temporarily enable designMode so that
// document.execCommand() will work
// document.designMode = "ON";
// Execute the command
if(command === "heading" && getSelectedText()) {
// IE workaround
pasteHTMLAtCaret('<' + option + '>' + getSelectedText() + '' + option + '>');
} else {
document.execCommand(command, false, option);
}
// Disable designMode
// document.designMode = "OFF";
}
/**
* Update textarea when updating editor
* @private
*/
function updateTextarea() {
var $editor = $('#' + editorID);
var content = $editor.html();
if(settings.useSingleQuotes === true) {
content = changeAttributeQuotes(content);
}
$editor.siblings('.richText-initial').val(content);
}
/**
* Update editor when updating textarea
* @private
*/
function updateEditor(editorID) {
var $editor = $('#' + editorID);
var content = $editor.siblings('.richText-initial').val();
$editor.html(content);
}
/**
* Save caret position and selection
* @return object
**/
function saveSelection(editorID) {
var containerEl = document.getElementById(editorID);
if (window.getSelection && document.createRange) {
var sel = window.getSelection && window.getSelection();
if (sel && sel.rangeCount > 0) {
var range = window.getSelection().getRangeAt(0);
var preSelectionRange = range.cloneRange();
preSelectionRange.selectNodeContents(containerEl);
preSelectionRange.setEnd(range.startContainer, range.startOffset);
var start = preSelectionRange.toString().length;
return {
start: start,
end: start + range.toString().length
}
} else {
return (savedSelection ? savedSelection : {
start: 0,
end: 0
});
}
} else if (document.selection && document.body.createTextRange) {
var selectedTextRange = document.selection.createRange();
var preSelectionTextRange = document.body.createTextRange();
preSelectionTextRange.moveToElementText(containerEl);
preSelectionTextRange.setEndPoint("EndToStart", selectedTextRange);
var start = preSelectionTextRange.text.length;
return {
start: start,
end: start + selectedTextRange.text.length
};
}
}
/**
* Restore selection
**/
function restoreSelection() {
var containerEl = document.getElementById(editorID);
var savedSel = savedSelection;
if (window.getSelection && document.createRange) {
var charIndex = 0, range = document.createRange();
range.setStart(containerEl, 0);
range.collapse(true);
var nodeStack = [containerEl], node, foundStart = false, stop = false;
while (!stop && (node = nodeStack.pop())) {
if (node.nodeType === 3) {
var nextCharIndex = charIndex + node.length;
if (!foundStart && savedSel.start >= charIndex && savedSel.start <= nextCharIndex) {
range.setStart(node, savedSel.start - charIndex);
foundStart = true;
}
if (foundStart && savedSel.end >= charIndex && savedSel.end <= nextCharIndex) {
range.setEnd(node, savedSel.end - charIndex);
stop = true;
}
charIndex = nextCharIndex;
} else {
var i = node.childNodes.length;
while (i--) {
nodeStack.push(node.childNodes[i]);
}
}
}
var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
} else if (document.selection && document.body.createTextRange) {
var textRange = document.body.createTextRange();
textRange.moveToElementText(containerEl);
textRange.collapse(true);
textRange.moveEnd("character", savedSel.end);
textRange.moveStart("character", savedSel.start);
textRange.select();
}
}
/**
* Enables tabbing/shift-tabbing between contentEditable table cells
* @param {Window} win - Active window context.
* @param {Event} e - jQuery Event object for the keydown that fired.
*/
function tabifyEditableTable(win, e) {
if (e.keyCode !== 9) {
return false;
}
var sel;
if (win.getSelection) {
sel = win.getSelection();
if (sel.rangeCount > 0) {
var textNode = null,
direction = null;
if (!e.shiftKey) {
direction = "next";
textNode = (sel.focusNode.nodeName === "TD")
? (sel.focusNode.nextSibling != null)
? sel.focusNode.nextSibling
: (sel.focusNode.parentNode.nextSibling != null)
? sel.focusNode.parentNode.nextSibling.childNodes[0]
: null
: (sel.focusNode.parentNode.nextSibling != null)
? sel.focusNode.parentNode.nextSibling
: (sel.focusNode.parentNode.parentNode.nextSibling != null)
? sel.focusNode.parentNode.parentNode.nextSibling.childNodes[0]
: null;
} else {
direction = "previous";
textNode = (sel.focusNode.nodeName === "TD")
? (sel.focusNode.previousSibling != null)
? sel.focusNode.previousSibling
: (sel.focusNode.parentNode.previousSibling != null)
? sel.focusNode.parentNode.previousSibling.childNodes[sel.focusNode.parentNode.previousSibling.childNodes.length - 1]
: null
: (sel.focusNode.parentNode.previousSibling != null)
? sel.focusNode.parentNode.previousSibling
: (sel.focusNode.parentNode.parentNode.previousSibling != null)
? sel.focusNode.parentNode.parentNode.previousSibling.childNodes[sel.focusNode.parentNode.parentNode.previousSibling.childNodes.length - 1]
: null;
}
if (textNode != null) {
sel.collapse(textNode, Math.min(textNode.length, sel.focusOffset + 1));
if (textNode.textContent != null) {
sel.selectAllChildren(textNode);
}
e.preventDefault();
return true;
} else if(textNode === null && direction === "next" && sel.focusNode.nodeName === "TD") {
// add new row on TAB if arrived at the end of the row
var $table = $(sel.focusNode).parents("table");
var cellsPerLine = $table.find("tr").first().children("td").length;
var $tr = $("
");
var $td = $(" | ");
for(var i = 1; i <= cellsPerLine; i++) {
$tr.append($td.clone());
}
$table.append($tr);
// simulate tabing through table
tabifyEditableTable(window, {keyCode: 9, shiftKey: false, preventDefault: function(){}});
}
}
}
return false;
}
/**
* Returns the text from the current selection
* @private
* @return {string|boolean}
*/
function getSelectedText() {
var range;
if (window.getSelection) { // all browsers, except IE before version 9
range = window.getSelection ();
return range.toString();
} else if (document.selection.createRange) { // Internet Explorer
range = document.selection.createRange ();
return range.text;
}
return false;
}
/**
* Save selection
*/
function doSave(editorID) {
var $textarea = $('.richText-editor#' + editorID).siblings('.richText-initial');
addHistory($textarea.val());
savedSelection = saveSelection(editorID);
}
/**
* Add to history
* @param val
*/
function addHistory(val) {
if(history.length-1 > historyPosition) {
history.length = historyPosition + 1;
}
if(history[history.length-1] !== val) {
history.push(val);
}
historyPosition = history.length-1;
setHistoryButtons();
}
function setHistoryButtons() {
if(historyPosition <= 0) {
$editor.find(".richText-undo").addClass("is-disabled");
} else {
$editor.find(".richText-undo").removeClass("is-disabled");
}
if(historyPosition >= history.length-1 || history.length === 0) {
$editor.find(".richText-redo").addClass("is-disabled");
} else {
$editor.find(".richText-redo").removeClass("is-disabled");
}
}
/**
* Undo
*/
function undo() {
historyPosition--;
var value = history[historyPosition];
$editor.find('textarea').val(value);
$editor.find('.richText-editor').html(value);
setHistoryButtons();
}
/**
* Undo
*/
function redo() {
historyPosition++;
var value = history[historyPosition];
$editor.find('textarea').val(value);
$editor.find('.richText-editor').html(value);
setHistoryButtons();
}
/**
* Restore selection
*/
function doRestore() {
if(savedSelection) {
restoreSelection();
}
}
/**
* Paste HTML at caret position
* @param {string} html HTML code
* @private
*/
function pasteHTMLAtCaret(html) {
// add HTML code for Internet Explorer
var sel, range;
if (window.getSelection) {
// IE9 and non-IE
sel = window.getSelection();
if (sel.getRangeAt && sel.rangeCount) {
range = sel.getRangeAt(0);
range.deleteContents();
// Range.createContextualFragment() would be useful here but is
// only relatively recently standardized and is not supported in
// some browsers (IE9, for one)
var el = document.createElement("div");
el.innerHTML = html;
var frag = document.createDocumentFragment(), node, lastNode;
while ( (node = el.firstChild) ) {
lastNode = frag.appendChild(node);
}
range.insertNode(frag);
// Preserve the selection
if (lastNode) {
range = range.cloneRange();
range.setStartAfter(lastNode);
range.collapse(true);
sel.removeAllRanges();
sel.addRange(range);
}
}
} else if (document.selection && document.selection.type !== "Control") {
// IE < 9
document.selection.createRange().pasteHTML(html);
}
}
/**
* Change quotes around HTML attributes
* @param {string} string
* @return {string}
*/
function changeAttributeQuotes(string) {
if(!string) {
return '';
}
var regex;
var rstring;
if(settings.useSingleQuotes === true) {
regex = /\s+(\w+\s*=\s*(["][^"]*["])|(['][^']*[']))+/g;
rstring = string.replace(regex, function($0,$1,$2){
if(!$2) {return $0;}
return $0.replace($2, $2.replace(/\"/g, "'"));
});
} else {
regex = /\s+(\w+\s*=\s*(['][^']*['])|(["][^"]*["]))+/g;
rstring = string.replace(regex, function($0,$1,$2){
if(!$2) {return $0;}
return $0.replace($2, $2.replace(/'/g, '"'));
});
}
return rstring;
}
/**
* Load colors for font or background
* @param {string} command Command
* @returns {string}
* @private
*/
function loadColors(command) {
var colors = [];
var result = '';
colors["#FFFFFF"] = 'White';
colors["#000000"] = 'Black';
colors["#7F6000"] = 'Brown';
colors["#938953"] = 'Beige';
colors["#1F497D"] = 'Dark Blue';
colors["blue"] = 'Blue';
colors["#4F81BD"] = 'Light blue';
colors["#953734"] = 'Dark red';
colors["red"] = 'Red';
colors["#4F6128"] = 'Dark green';
colors["green"] = 'Green';
colors["#3F3151"] = 'Purple';
colors["#31859B"] = 'Dark Turquois';
colors["#4BACC6"] = 'Turquois';
colors["#E36C09"] = 'Dark orange';
colors["#F79646"] = 'Orange';
colors["#FFFF00"] = 'Yellow';
if(settings.colors && settings.colors.length > 0) {
colors = settings.colors;
}
for (var i in colors) {
result += '';
}
return result;
}
/**
* Toggle (show/hide) code or editor
* @private
*/
function toggleCode() {
if($editor.find('.richText-editor').is(":visible")) {
// show code
$editor.find('.richText-initial').show();
$editor.find('.richText-editor').hide();
// disable non working buttons
$('.richText-toolbar').find('.richText-btn').each(function() {
if(!$(this).hasClass("fa-code")) {
$(this).parent('li').attr("data-disable", "true");
}
});
} else {
// show editor
$editor.find('.richText-initial').hide();
$editor.find('.richText-editor').show();
// enable all buttons again
$('.richText-toolbar').find('li').removeAttr("data-disable");
}
}
/**
* Get video embed code from URL
* @param {string} url Video URL
* @param {string} size Size in the form of widthxheight
* @return {string|boolean}
* @private
**/
function getVideoCode(url, size) {
var video = getVideoID(url);
var responsive = false, success = false;
if(!video) {
// video URL not supported
return false;
}
if(!size) {
size = "640x360";
size = size.split("x");
} else if(size !== "responsive") {
size = size.split("x");
} else {
responsive = true;
size = "640x360";
size = size.split("x");
}
var html = '
';
if(responsive === true) {
html += '';
}
var allowfullscreen = 'webkitallowfullscreen mozallowfullscreen allowfullscreen';
if(video.platform === "YouTube") {
html += '';
success = true;
} else if(video.platform === "Vimeo") {
html += '';
success = true;
} else if(video.platform === "Facebook") {
html += '';
success = true;
} else if(video.platform === "Dailymotion") {
html += '';
success = true;
}
if(responsive === true) {
html += '
';
}
html += '
';
if(success) {
return html;
}
return false;
}
/**
* Returns the unique video ID
* @param {string} url
* return {object|boolean}
**/
function getVideoID(url) {
var vimeoRegExp = /(?:http?s?:\/\/)?(?:www\.)?(?:vimeo\.com)\/?(.+)/;
var youtubeRegExp = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/;
var facebookRegExp = /(?:http?s?:\/\/)?(?:www\.)?(?:facebook\.com)\/.*\/videos\/[0-9]+/;
var dailymotionRegExp = /(?:http?s?:\/\/)?(?:www\.)?(?:dailymotion\.com)\/video\/([a-zA-Z0-9]+)/;
var youtubeMatch = url.match(youtubeRegExp);
var vimeoMatch = url.match(vimeoRegExp);
var facebookMatch = url.match(facebookRegExp);
var dailymotionMatch = url.match(dailymotionRegExp);
if (youtubeMatch && youtubeMatch[2].length === 11) {
return {
"platform": "YouTube",
"id": youtubeMatch[2]
};
} else if(vimeoMatch && vimeoMatch[1]) {
return {
"platform": "Vimeo",
"id": vimeoMatch[1]
};
} else if(facebookMatch && facebookMatch[0]) {
return {
"platform": "Facebook",
"id" : facebookMatch[0]
};
} else if(dailymotionMatch && dailymotionMatch[1]) {
return {
"platform": "Dailymotion",
"id" : dailymotionMatch[1]
};
}
return false;
}
/**
* Fix the first line as by default the first line has no tag container
*/
function fixFirstLine() {
if($editor && !$editor.find(".richText-editor").html()) {
if(settings.useParagraph !== false) {
$editor.find(".richText-editor").html('
');
} else {
$editor.find(".richText-editor").html('
');
}
updateTextarea();
}
}
return $(this);
};
}( jQuery ));