/**
* Super simple wysiwyg editor on Bootstrap v0.5.2
* http://hackerwins.github.io/summernote/
*
* summernote.js
* Copyright 2013 Alan Hong. and outher contributors
* summernote may be freely distributed under the MIT license./
*
* Date: 2014-05-16T11:28Z
*/
(function (factory) {
/* global define */
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery', 'codemirror'], factory);
} else {
// Browser globals: jQuery, CodeMirror
factory(window.jQuery, window.CodeMirror);
}
}(function ($, CodeMirror) {
if ('function' !== typeof Array.prototype.reduce) {
/**
* Array.prototype.reduce fallback
*
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce
*/
Array.prototype.reduce = function (callback, optInitialValue) {
var idx, value, length = this.length >>> 0, isValueSet = false;
if (1 < arguments.length) {
value = optInitialValue;
isValueSet = true;
}
for (idx = 0; length > idx; ++idx) {
if (this.hasOwnProperty(idx)) {
if (isValueSet) {
value = callback(value, this[idx], idx, this);
} else {
value = this[idx];
isValueSet = true;
}
}
}
if (!isValueSet) {
throw new TypeError('Reduce of empty array with no initial value');
}
return value;
};
}
/**
* Object which check platform and agent
*/
var agent = {
bMac: navigator.appVersion.indexOf('Mac') > -1,
bMSIE: navigator.userAgent.indexOf('MSIE') > -1 || navigator.userAgent.indexOf('Trident') > -1,
bFF: navigator.userAgent.indexOf('Firefox') > -1,
jqueryVersion: parseFloat($.fn.jquery),
bCodeMirror: !!CodeMirror
};
/**
* func utils (for high-order func's arg)
*/
var func = (function () {
var eq = function (elA) {
return function (elB) {
return elA === elB;
};
};
var eq2 = function (elA, elB) {
return elA === elB;
};
var ok = function () {
return true;
};
var fail = function () {
return false;
};
var not = function (f) {
return function () {
return !f.apply(f, arguments);
};
};
var self = function (a) {
return a;
};
var idCounter = 0;
/**
* generate a globally-unique id
*
* @param {String} [prefix]
*/
var uniqueId = function (prefix) {
var id = ++idCounter + '';
return prefix ? prefix + id : id;
};
/**
* returns bnd (bounds) from rect
*
* - IE Compatability Issue: http://goo.gl/sRLOAo
* - Scroll Issue: http://goo.gl/sNjUc
*
* @param {Rect} rect
* @return {Object} bounds
* @return {Number} bounds.top
* @return {Number} bounds.left
* @return {Number} bounds.width
* @return {Number} bounds.height
*/
var rect2bnd = function (rect) {
var $document = $(document);
return {
top: rect.top + $document.scrollTop(),
left: rect.left + $document.scrollLeft(),
width: rect.right - rect.left,
height: rect.bottom - rect.top
};
};
/**
* returns a copy of the object where the keys have become the values and the values the keys.
* @param {Object} obj
* @return {Object}
*/
var invertObject = function (obj) {
var inverted = {};
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
inverted[obj[key]] = key;
}
}
return inverted;
};
return {
eq: eq,
eq2: eq2,
ok: ok,
fail: fail,
not: not,
self: self,
uniqueId: uniqueId,
rect2bnd: rect2bnd,
invertObject: invertObject
};
})();
/**
* list utils
*/
var list = (function () {
/**
* returns the first element of an array.
* @param {Array} array
*/
var head = function (array) {
return array[0];
};
/**
* returns the last element of an array.
* @param {Array} array
*/
var last = function (array) {
return array[array.length - 1];
};
/**
* returns everything but the last entry of the array.
* @param {Array} array
*/
var initial = function (array) {
return array.slice(0, array.length - 1);
};
/**
* returns the rest of the elements in an array.
* @param {Array} array
*/
var tail = function (array) {
return array.slice(1);
};
/**
* returns next item.
* @param {Array} array
*/
var next = function (array, item) {
var idx = array.indexOf(item);
if (idx === -1) { return null; }
return array[idx + 1];
};
/**
* returns prev item.
* @param {Array} array
*/
var prev = function (array, item) {
var idx = array.indexOf(item);
if (idx === -1) { return null; }
return array[idx - 1];
};
/**
* get sum from a list
* @param {Array} array - array
* @param {Function} fn - iterator
*/
var sum = function (array, fn) {
fn = fn || func.self;
return array.reduce(function (memo, v) {
return memo + fn(v);
}, 0);
};
/**
* returns a copy of the collection with array type.
* @param {Collection} collection - collection eg) node.childNodes, ...
*/
var from = function (collection) {
var result = [], idx = -1, length = collection.length;
while (++idx < length) {
result[idx] = collection[idx];
}
return result;
};
/**
* cluster elements by predicate function.
* @param {Array} array - array
* @param {Function} fn - predicate function for cluster rule
* @param {Array[]}
*/
var clusterBy = function (array, fn) {
if (array.length === 0) { return []; }
var aTail = tail(array);
return aTail.reduce(function (memo, v) {
var aLast = last(memo);
if (fn(last(aLast), v)) {
aLast[aLast.length] = v;
} else {
memo[memo.length] = [v];
}
return memo;
}, [[head(array)]]);
};
/**
* returns a copy of the array with all falsy values removed
* @param {Array} array - array
* @param {Function} fn - predicate function for cluster rule
*/
var compact = function (array) {
var aResult = [];
for (var idx = 0, sz = array.length; idx < sz; idx ++) {
if (array[idx]) { aResult.push(array[idx]); }
}
return aResult;
};
return { head: head, last: last, initial: initial, tail: tail,
prev: prev, next: next, sum: sum, from: from,
compact: compact, clusterBy: clusterBy };
})();
/**
* Dom functions
*/
var dom = (function () {
/**
* returns whether node is `note-editable` or not.
*
* @param {Element} node
* @return {Boolean}
*/
var isEditable = function (node) {
return node && $(node).hasClass('note-editable');
};
var isControlSizing = function (node) {
return node && $(node).hasClass('note-control-sizing');
};
/**
* build layoutInfo from $editor(.note-editor)
*
* @param {jQuery} $editor
* @return {Object}
*/
var buildLayoutInfo = function ($editor) {
var makeFinder;
// air mode
if ($editor.hasClass('note-air-editor')) {
var id = list.last($editor.attr('id').split('-'));
makeFinder = function (sIdPrefix) {
return function () { return $(sIdPrefix + id); };
};
return {
editor: function () { return $editor; },
editable: function () { return $editor; },
popover: makeFinder('#note-popover-'),
handle: makeFinder('#note-handle-'),
dialog: makeFinder('#note-dialog-')
};
// frame mode
} else {
makeFinder = function (sClassName) {
return function () { return $editor.find(sClassName); };
};
return {
editor: function () { return $editor; },
dropzone: makeFinder('.note-dropzone'),
toolbar: makeFinder('.note-toolbar'),
editable: makeFinder('.note-editable'),
codable: makeFinder('.note-codable'),
statusbar: makeFinder('.note-statusbar'),
popover: makeFinder('.note-popover'),
handle: makeFinder('.note-handle'),
dialog: makeFinder('.note-dialog')
};
}
};
/**
* returns predicate which judge whether nodeName is same
* @param {String} sNodeName
*/
var makePredByNodeName = function (sNodeName) {
// nodeName is always uppercase.
return function (node) {
return node && node.nodeName === sNodeName;
};
};
var isPara = function (node) {
// Chrome(v31.0), FF(v25.0.1) use DIV for paragraph
return node && /^DIV|^P|^LI|^H[1-7]/.test(node.nodeName);
};
var isList = function (node) {
return node && /^UL|^OL/.test(node.nodeName);
};
var isCell = function (node) {
return node && /^TD|^TH/.test(node.nodeName);
};
/**
* find nearest ancestor predicate hit
*
* @param {Element} node
* @param {Function} pred - predicate function
*/
var ancestor = function (node, pred) {
while (node) {
if (pred(node)) { return node; }
if (isEditable(node)) { break; }
node = node.parentNode;
}
return null;
};
/**
* returns new array of ancestor nodes (until predicate hit).
*
* @param {Element} node
* @param {Function} [optional] pred - predicate function
*/
var listAncestor = function (node, pred) {
pred = pred || func.fail;
var aAncestor = [];
ancestor(node, function (el) {
aAncestor.push(el);
return pred(el);
});
return aAncestor;
};
/**
* returns common ancestor node between two nodes.
*
* @param {Element} nodeA
* @param {Element} nodeB
*/
var commonAncestor = function (nodeA, nodeB) {
var aAncestor = listAncestor(nodeA);
for (var n = nodeB; n; n = n.parentNode) {
if ($.inArray(n, aAncestor) > -1) { return n; }
}
return null; // difference document area
};
/**
* listing all Nodes between two nodes.
* FIXME: nodeA and nodeB must be sorted, use comparePoints later.
*
* @param {Element} nodeA
* @param {Element} nodeB
*/
var listBetween = function (nodeA, nodeB) {
var aNode = [];
var bStart = false, bEnd = false;
// DFS(depth first search) with commonAcestor.
(function fnWalk(node) {
if (!node) { return; } // traverse fisnish
if (node === nodeA) { bStart = true; } // start point
if (bStart && !bEnd) { aNode.push(node); } // between
if (node === nodeB) { bEnd = true; return; } // end point
for (var idx = 0, sz = node.childNodes.length; idx < sz; idx++) {
fnWalk(node.childNodes[idx]);
}
})(commonAncestor(nodeA, nodeB));
return aNode;
};
/**
* listing all previous siblings (until predicate hit).
* @param {Element} node
* @param {Function} [optional] pred - predicate function
*/
var listPrev = function (node, pred) {
pred = pred || func.fail;
var aNext = [];
while (node) {
aNext.push(node);
if (pred(node)) { break; }
node = node.previousSibling;
}
return aNext;
};
/**
* listing next siblings (until predicate hit).
*
* @param {Element} node
* @param {Function} [pred] - predicate function
*/
var listNext = function (node, pred) {
pred = pred || func.fail;
var aNext = [];
while (node) {
aNext.push(node);
if (pred(node)) { break; }
node = node.nextSibling;
}
return aNext;
};
/**
* listing descendant nodes
*
* @param {Element} node
* @param {Function} [pred] - predicate function
*/
var listDescendant = function (node, pred) {
var aDescendant = [];
pred = pred || func.ok;
// start DFS(depth first search) with node
(function fnWalk(current) {
if (node !== current && pred(current)) {
aDescendant.push(current);
}
for (var idx = 0, sz = current.childNodes.length; idx < sz; idx++) {
fnWalk(current.childNodes[idx]);
}
})(node);
return aDescendant;
};
/**
* insert node after preceding
*
* @param {Element} node
* @param {Element} preceding - predicate function
*/
var insertAfter = function (node, preceding) {
var next = preceding.nextSibling, parent = preceding.parentNode;
if (next) {
parent.insertBefore(node, next);
} else {
parent.appendChild(node);
}
return node;
};
/**
* append elements.
*
* @param {Element} node
* @param {Collection} aChild
*/
var appends = function (node, aChild) {
$.each(aChild, function (idx, child) {
node.appendChild(child);
});
return node;
};
var isText = makePredByNodeName('#text');
/**
* returns #text's text size or element's childNodes size
*
* @param {Element} node
*/
var length = function (node) {
if (isText(node)) { return node.nodeValue.length; }
return node.childNodes.length;
};
/**
* returns offset from parent.
*
* @param {Element} node
*/
var position = function (node) {
var offset = 0;
while ((node = node.previousSibling)) { offset += 1; }
return offset;
};
/**
* return offsetPath(array of offset) from ancestor
*
* @param {Element} ancestor - ancestor node
* @param {Element} node
*/
var makeOffsetPath = function (ancestor, node) {
var aAncestor = list.initial(listAncestor(node, func.eq(ancestor)));
return $.map(aAncestor, position).reverse();
};
/**
* return element from offsetPath(array of offset)
*
* @param {Element} ancestor - ancestor node
* @param {array} aOffset - offsetPath
*/
var fromOffsetPath = function (ancestor, aOffset) {
var current = ancestor;
for (var i = 0, sz = aOffset.length; i < sz; i++) {
current = current.childNodes[aOffset[i]];
}
return current;
};
/**
* split element or #text
*
* @param {Element} node
* @param {Number} offset
*/
var splitData = function (node, offset) {
if (offset === 0) { return node; }
if (offset >= length(node)) { return node.nextSibling; }
// splitText
if (isText(node)) { return node.splitText(offset); }
// splitElement
var child = node.childNodes[offset];
node = insertAfter(node.cloneNode(false), node);
return appends(node, listNext(child));
};
/**
* split dom tree by boundaryPoint(pivot and offset)
*
* @param {Element} root
* @param {Element} pivot - this will be boundaryPoint's node
* @param {Number} offset - this will be boundaryPoint's offset
*/
var split = function (root, pivot, offset) {
var aAncestor = listAncestor(pivot, func.eq(root));
if (aAncestor.length === 1) { return splitData(pivot, offset); }
return aAncestor.reduce(function (node, parent) {
var clone = parent.cloneNode(false);
insertAfter(clone, parent);
if (node === pivot) {
node = splitData(node, offset);
}
appends(clone, listNext(node));
return clone;
});
};
/**
* remove node, (bRemoveChild: remove child or not)
* @param {Element} node
* @param {Boolean} bRemoveChild
*/
var remove = function (node, bRemoveChild) {
if (!node || !node.parentNode) { return; }
if (node.removeNode) { return node.removeNode(bRemoveChild); }
var elParent = node.parentNode;
if (!bRemoveChild) {
var aNode = [];
var i, sz;
for (i = 0, sz = node.childNodes.length; i < sz; i++) {
aNode.push(node.childNodes[i]);
}
for (i = 0, sz = aNode.length; i < sz; i++) {
elParent.insertBefore(aNode[i], node);
}
}
elParent.removeChild(node);
};
var html = function ($node) {
return dom.isTextarea($node[0]) ? $node.val() : $node.html();
};
return {
blank: agent.bMSIE ? ' ' : '
',
emptyPara: '
',
isEditable: isEditable,
isControlSizing: isControlSizing,
buildLayoutInfo: buildLayoutInfo,
isText: isText,
isPara: isPara,
isList: isList,
isTable: makePredByNodeName('TABLE'),
isCell: isCell,
isAnchor: makePredByNodeName('A'),
isDiv: makePredByNodeName('DIV'),
isLi: makePredByNodeName('LI'),
isSpan: makePredByNodeName('SPAN'),
isB: makePredByNodeName('B'),
isU: makePredByNodeName('U'),
isS: makePredByNodeName('S'),
isI: makePredByNodeName('I'),
isImg: makePredByNodeName('IMG'),
isTextarea: makePredByNodeName('TEXTAREA'),
ancestor: ancestor,
listAncestor: listAncestor,
listNext: listNext,
listPrev: listPrev,
listDescendant: listDescendant,
commonAncestor: commonAncestor,
listBetween: listBetween,
insertAfter: insertAfter,
position: position,
makeOffsetPath: makeOffsetPath,
fromOffsetPath: fromOffsetPath,
split: split,
remove: remove,
html: html
};
})();
var settings = {
// version
version: '0.5.2',
/**
* options
*/
options: {
width: null, // set editor width
height: null, // set editable height, ex) 300
focus: false, // set focus after initilize summernote
tabsize: 4, // size of tab ex) 2 or 4
styleWithSpan: true, // style with span (Chrome and FF only)
disableLinkTarget: false, // hide link Target Checkbox
disableDragAndDrop: false, // disable drag and drop event
codemirror: { // codemirror options
mode: 'text/html',
lineNumbers: true
},
// language
lang: 'en-US', // language 'en-US', 'ko-KR', ...
direction: null, // text direction, ex) 'rtl'
// toolbar
toolbar: [
['style', ['style']],
['font', ['bold', 'italic', 'underline', 'superscript', 'subscript', 'strikethrough', 'clear']],
['fontname', ['fontname']],
// ['fontsize', ['fontsize']], // Still buggy
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['table', ['table']],
['insert', ['link', 'picture', 'video']],
['view', ['fullscreen', 'codeview']],
['help', ['help']]
],
// air mode: inline editor
airMode: false,
// airPopover: [
// ['style', ['style']],
// ['font', ['bold', 'italic', 'underline', 'clear']],
// ['fontname', ['fontname']],
// ['fontsize', ['fontsize']], // Still buggy
// ['color', ['color']],
// ['para', ['ul', 'ol', 'paragraph']],
// ['height', ['height']],
// ['table', ['table']],
// ['insert', ['link', 'picture', 'video']],
// ['help', ['help']]
// ],
airPopover: [
['color', ['color']],
['font', ['bold', 'underline', 'clear']],
['para', ['ul', 'paragraph']],
['table', ['table']],
['insert', ['link', 'picture']]
],
// style tag
styleTags: ['p', 'blockquote', 'pre', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'],
// default fontName
defaultFontName: 'Arial',
// fontName
fontNames: [
'Serif', 'Sans', 'Arial', 'Arial Black', 'Courier',
'Courier New', 'Comic Sans MS', 'Helvetica', 'Impact', 'Lucida Grande',
'Lucida Sans', 'Tahoma', 'Times', 'Times New Roman', 'Verdana'
],
// pallete colors(n x n)
colors: [
['#000000', '#424242', '#636363', '#9C9C94', '#CEC6CE', '#EFEFEF', '#F7F7F7', '#FFFFFF'],
['#FF0000', '#FF9C00', '#FFFF00', '#00FF00', '#00FFFF', '#0000FF', '#9C00FF', '#FF00FF'],
['#F7C6CE', '#FFE7CE', '#FFEFC6', '#D6EFD6', '#CEDEE7', '#CEE7F7', '#D6D6E7', '#E7D6DE'],
['#E79C9C', '#FFC69C', '#FFE79C', '#B5D6A5', '#A5C6CE', '#9CC6EF', '#B5A5D6', '#D6A5BD'],
['#E76363', '#F7AD6B', '#FFD663', '#94BD7B', '#73A5AD', '#6BADDE', '#8C7BC6', '#C67BA5'],
['#CE0000', '#E79439', '#EFC631', '#6BA54A', '#4A7B8C', '#3984C6', '#634AA5', '#A54A7B'],
['#9C0000', '#B56308', '#BD9400', '#397B21', '#104A5A', '#085294', '#311873', '#731842'],
['#630000', '#7B3900', '#846300', '#295218', '#083139', '#003163', '#21104A', '#4A1031']
],
// fontSize
fontSizes: ['8', '9', '10', '11', '12', '14', '18', '24', '36'],
// lineHeight
lineHeights: ['1.0', '1.2', '1.4', '1.5', '1.6', '1.8', '2.0', '3.0'],
// callbacks
oninit: null, // initialize
onfocus: null, // editable has focus
onblur: null, // editable out of focus
onenter: null, // enter key pressed
onkeyup: null, // keyup
onkeydown: null, // keydown
onImageUpload: null, // imageUploadHandler
onImageUploadError: null, // imageUploadErrorHandler
onToolbarClick: null,
keyMap: {
pc: {
'CTRL+Z': 'undo',
'CTRL+Y': 'redo',
'TAB': 'tab',
'SHIFT+TAB': 'untab',
'CTRL+B': 'bold',
'CTRL+I': 'italic',
'CTRL+U': 'underline',
'CTRL+SHIFT+S': 'strikethrough',
'CTRL+BACKSLASH': 'removeFormat',
'CTRL+SHIFT+L': 'justifyLeft',
'CTRL+SHIFT+E': 'justifyCenter',
'CTRL+SHIFT+R': 'justifyRight',
'CTRL+SHIFT+J': 'justifyFull',
'CTRL+SHIFT+NUM7': 'insertUnorderedList',
'CTRL+SHIFT+NUM8': 'insertOrderedList',
'CTRL+LEFTBRACKET': 'outdent',
'CTRL+RIGHTBRACKET': 'indent',
'CTRL+NUM0': 'formatPara',
'CTRL+NUM1': 'formatH1',
'CTRL+NUM2': 'formatH2',
'CTRL+NUM3': 'formatH3',
'CTRL+NUM4': 'formatH4',
'CTRL+NUM5': 'formatH5',
'CTRL+NUM6': 'formatH6',
'CTRL+ENTER': 'insertHorizontalRule'
},
mac: {
'CMD+Z': 'undo',
'CMD+SHIFT+Z': 'redo',
'TAB': 'tab',
'SHIFT+TAB': 'untab',
'CMD+B': 'bold',
'CMD+I': 'italic',
'CMD+U': 'underline',
'CMD+SHIFT+S': 'strikethrough',
'CMD+BACKSLASH': 'removeFormat',
'CMD+SHIFT+L': 'justifyLeft',
'CMD+SHIFT+E': 'justifyCenter',
'CMD+SHIFT+R': 'justifyRight',
'CMD+SHIFT+J': 'justifyFull',
'CMD+SHIFT+NUM7': 'insertUnorderedList',
'CMD+SHIFT+NUM8': 'insertOrderedList',
'CMD+LEFTBRACKET': 'outdent',
'CMD+RIGHTBRACKET': 'indent',
'CMD+NUM0': 'formatPara',
'CMD+NUM1': 'formatH1',
'CMD+NUM2': 'formatH2',
'CMD+NUM3': 'formatH3',
'CMD+NUM4': 'formatH4',
'CMD+NUM5': 'formatH5',
'CMD+NUM6': 'formatH6',
'CMD+ENTER': 'insertHorizontalRule'
}
}
},
// default language: en-US
lang: {
'en-US': {
font: {
bold: 'Bold',
italic: 'Italic',
underline: 'Underline',
strikethrough: 'Strikethrough',
clear: 'Remove Font Style',
height: 'Line Height',
name: 'Font Family',
size: 'Font Size'
},
image: {
image: 'Picture',
insert: 'Insert Image',
resizeFull: 'Resize Full',
resizeHalf: 'Resize Half',
resizeQuarter: 'Resize Quarter',
floatLeft: 'Float Left',
floatRight: 'Float Right',
floatNone: 'Float None',
dragImageHere: 'Drag an image here',
selectFromFiles: 'Select from files',
url: 'Image URL',
remove: 'Remove Image'
},
link: {
link: 'Link',
insert: 'Insert Link',
unlink: 'Unlink',
edit: 'Edit',
textToDisplay: 'Text to display',
url: 'To what URL should this link go?',
openInNewWindow: 'Open in new window'
},
video: {
video: 'Video',
videoLink: 'Video Link',
insert: 'Insert Video',
url: 'Video URL?',
providers: '(YouTube, Vimeo, Vine, Instagram, or DailyMotion)'
},
table: {
table: 'Table'
},
hr: {
insert: 'Insert Horizontal Rule'
},
style: {
style: 'Style',
normal: 'Normal',
blockquote: 'Quote',
pre: 'Code',
h1: 'Header 1',
h2: 'Header 2',
h3: 'Header 3',
h4: 'Header 4',
h5: 'Header 5',
h6: 'Header 6'
},
lists: {
unordered: 'Unordered list',
ordered: 'Ordered list'
},
options: {
help: 'Help',
fullscreen: 'Full Screen',
codeview: 'Code View'
},
paragraph: {
paragraph: 'Paragraph',
outdent: 'Outdent',
indent: 'Indent',
left: 'Align left',
center: 'Align center',
right: 'Align right',
justify: 'Justify full'
},
color: {
recent: 'Recent Color',
more: 'More Color',
background: 'BackColor',
foreground: 'FontColor',
transparent: 'Transparent',
setTransparent: 'Set transparent',
reset: 'Reset',
resetToDefault: 'Reset to default'
},
shortcut: {
shortcuts: 'Keyboard shortcuts',
close: 'Close',
textFormatting: 'Text formatting',
action: 'Action',
paragraphFormatting: 'Paragraph formatting',
documentStyle: 'Document Style'
},
history: {
undo: 'Undo',
redo: 'Redo'
}
}
}
};
/**
* Async functions which returns `Promise`
*/
var async = (function () {
/**
* read contents of file as representing URL
*
* @param {File} file
* @return {Promise} - then: sDataUrl
*/
var readFileAsDataURL = function (file) {
return $.Deferred(function (deferred) {
$.extend(new FileReader(), {
onload: function (e) {
var sDataURL = e.target.result;
deferred.resolve(sDataURL);
},
onerror: function () {
deferred.reject(this);
}
}).readAsDataURL(file);
}).promise();
};
/**
* create `` from url string
*
* @param {String} sUrl
* @return {Promise} - then: $image
*/
var createImage = function (sUrl) {
return $.Deferred(function (deferred) {
$('').one('load', function () {
deferred.resolve($(this));
}).one('error abort', function () {
deferred.reject($(this));
}).css({
display: 'none'
}).appendTo(document.body).attr('src', sUrl);
}).promise();
};
return {
readFileAsDataURL: readFileAsDataURL,
createImage: createImage
};
})();
/**
* Object for keycodes.
*/
var key = {
isEdit: function (keyCode) {
return [8, 9, 13, 32].indexOf(keyCode) !== -1;
},
nameFromCode: {
'8': 'BACKSPACE',
'9': 'TAB',
'13': 'ENTER',
'32': 'SPACE',
// Number: 0-9
'48': 'NUM0',
'49': 'NUM1',
'50': 'NUM2',
'51': 'NUM3',
'52': 'NUM4',
'53': 'NUM5',
'54': 'NUM6',
'55': 'NUM7',
'56': 'NUM8',
// Alphabet: a-z
'66': 'B',
'69': 'E',
'73': 'I',
'74': 'J',
'75': 'K',
'76': 'L',
'82': 'R',
'83': 'S',
'85': 'U',
'89': 'Y',
'90': 'Z',
'191': 'SLASH',
'219': 'LEFTBRACKET',
'220': 'BACKSLASH',
'221': 'RIGHTBRACKET'
}
};
/**
* Style
* @class
*/
var Style = function () {
/**
* passing an array of style properties to .css()
* will result in an object of property-value pairs.
* (compability with version < 1.9)
*
* @param {jQuery} $obj
* @param {Array} propertyNames - An array of one or more CSS properties.
* @returns {Object}
*/
var jQueryCSS = function ($obj, propertyNames) {
if (agent.jqueryVersion < 1.9) {
var result = {};
$.each(propertyNames, function (idx, propertyName) {
result[propertyName] = $obj.css(propertyName);
});
return result;
}
return $obj.css.call($obj, propertyNames);
};
/**
* paragraph level style
*
* @param {WrappedRange} rng
* @param {Object} oStyle
*/
this.stylePara = function (rng, oStyle) {
$.each(rng.nodes(dom.isPara), function (idx, elPara) {
$(elPara).css(oStyle);
});
};
/**
* get current style on cursor
*
* @param {WrappedRange} rng
* @param {Element} elTarget - target element on event
* @return {Object} - object contains style properties.
*/
this.current = function (rng, elTarget) {
var $cont = $(dom.isText(rng.sc) ? rng.sc.parentNode : rng.sc);
var properties = ['font-family', 'font-size', 'text-align', 'list-style-type', 'line-height'];
var oStyle = jQueryCSS($cont, properties) || {};
oStyle['font-size'] = parseInt(oStyle['font-size'], 10);
// document.queryCommandState for toggle state
oStyle['font-bold'] = document.queryCommandState('bold') ? 'bold' : 'normal';
oStyle['font-italic'] = document.queryCommandState('italic') ? 'italic' : 'normal';
oStyle['font-underline'] = document.queryCommandState('underline') ? 'underline' : 'normal';
oStyle['font-strikethrough'] = document.queryCommandState('strikeThrough') ? 'strikethrough' : 'normal';
oStyle['font-superscript'] = document.queryCommandState('superscript') ? 'superscript' : 'normal';
oStyle['font-subscript'] = document.queryCommandState('subscript') ? 'subscript' : 'normal';
// list-style-type to list-style(unordered, ordered)
if (!rng.isOnList()) {
oStyle['list-style'] = 'none';
} else {
var aOrderedType = ['circle', 'disc', 'disc-leading-zero', 'square'];
var bUnordered = $.inArray(oStyle['list-style-type'], aOrderedType) > -1;
oStyle['list-style'] = bUnordered ? 'unordered' : 'ordered';
}
var elPara = dom.ancestor(rng.sc, dom.isPara);
if (elPara && elPara.style['line-height']) {
oStyle['line-height'] = elPara.style.lineHeight;
} else {
var lineHeight = parseInt(oStyle['line-height'], 10) / parseInt(oStyle['font-size'], 10);
oStyle['line-height'] = lineHeight.toFixed(1);
}
oStyle.image = dom.isImg(elTarget) && elTarget;
oStyle.anchor = rng.isOnAnchor() && dom.ancestor(rng.sc, dom.isAnchor);
oStyle.aAncestor = dom.listAncestor(rng.sc, dom.isEditable);
oStyle.range = rng;
return oStyle;
};
};
/**
* range module
*/
var range = (function () {
var bW3CRangeSupport = !!document.createRange;
/**
* return boundaryPoint from TextRange, inspired by Andy Na's HuskyRange.js
* @param {TextRange} textRange
* @param {Boolean} bStart
* @return {BoundaryPoint}
*/
var textRange2bp = function (textRange, bStart) {
var elCont = textRange.parentElement(), nOffset;
var tester = document.body.createTextRange(), elPrevCont;
var aChild = list.from(elCont.childNodes);
for (nOffset = 0; nOffset < aChild.length; nOffset++) {
if (dom.isText(aChild[nOffset])) { continue; }
tester.moveToElementText(aChild[nOffset]);
if (tester.compareEndPoints('StartToStart', textRange) >= 0) { break; }
elPrevCont = aChild[nOffset];
}
if (nOffset !== 0 && dom.isText(aChild[nOffset - 1])) {
var textRangeStart = document.body.createTextRange(), elCurText = null;
textRangeStart.moveToElementText(elPrevCont || elCont);
textRangeStart.collapse(!elPrevCont);
elCurText = elPrevCont ? elPrevCont.nextSibling : elCont.firstChild;
var pointTester = textRange.duplicate();
pointTester.setEndPoint('StartToStart', textRangeStart);
var nTextCount = pointTester.text.replace(/[\r\n]/g, '').length;
while (nTextCount > elCurText.nodeValue.length && elCurText.nextSibling) {
nTextCount -= elCurText.nodeValue.length;
elCurText = elCurText.nextSibling;
}
/* jshint ignore:start */
var sDummy = elCurText.nodeValue; //enforce IE to re-reference elCurText, hack
/* jshint ignore:end */
if (bStart && elCurText.nextSibling && dom.isText(elCurText.nextSibling) &&
nTextCount === elCurText.nodeValue.length) {
nTextCount -= elCurText.nodeValue.length;
elCurText = elCurText.nextSibling;
}
elCont = elCurText;
nOffset = nTextCount;
}
return {cont: elCont, offset: nOffset};
};
/**
* return TextRange from boundary point (inspired by google closure-library)
* @param {BoundaryPoint} bp
* @return {TextRange}
*/
var bp2textRange = function (bp) {
var textRangeInfo = function (elCont, nOffset) {
var elNode, bCollapseToStart;
if (dom.isText(elCont)) {
var aPrevText = dom.listPrev(elCont, func.not(dom.isText));
var elPrevCont = list.last(aPrevText).previousSibling;
elNode = elPrevCont || elCont.parentNode;
nOffset += list.sum(list.tail(aPrevText), dom.length);
bCollapseToStart = !elPrevCont;
} else {
elNode = elCont.childNodes[nOffset] || elCont;
if (dom.isText(elNode)) {
return textRangeInfo(elNode, nOffset);
}
nOffset = 0;
bCollapseToStart = false;
}
return {cont: elNode, collapseToStart: bCollapseToStart, offset: nOffset};
};
var textRange = document.body.createTextRange();
var info = textRangeInfo(bp.cont, bp.offset);
textRange.moveToElementText(info.cont);
textRange.collapse(info.collapseToStart);
textRange.moveStart('character', info.offset);
return textRange;
};
/**
* Wrapped Range
*
* @param {Element} sc - start container
* @param {Number} so - start offset
* @param {Element} ec - end container
* @param {Number} eo - end offset
*/
var WrappedRange = function (sc, so, ec, eo) {
this.sc = sc;
this.so = so;
this.ec = ec;
this.eo = eo;
// nativeRange: get nativeRange from sc, so, ec, eo
var nativeRange = function () {
if (bW3CRangeSupport) {
var w3cRange = document.createRange();
w3cRange.setStart(sc, so);
w3cRange.setEnd(ec, eo);
return w3cRange;
} else {
var textRange = bp2textRange({cont: sc, offset: so});
textRange.setEndPoint('EndToEnd', bp2textRange({cont: ec, offset: eo}));
return textRange;
}
};
/**
* select update visible range
*/
this.select = function () {
var nativeRng = nativeRange();
if (bW3CRangeSupport) {
var selection = document.getSelection();
if (selection.rangeCount > 0) { selection.removeAllRanges(); }
selection.addRange(nativeRng);
} else {
nativeRng.select();
}
};
/**
* returns matched nodes on range
*
* @param {Function} pred - predicate function
* @return {Element[]}
*/
this.nodes = function (pred) {
var aNode = dom.listBetween(sc, ec);
var aMatched = list.compact($.map(aNode, function (node) {
return dom.ancestor(node, pred);
}));
return $.map(list.clusterBy(aMatched, func.eq2), list.head);
};
/**
* returns commonAncestor of range
* @return {Element} - commonAncestor
*/
this.commonAncestor = function () {
return dom.commonAncestor(sc, ec);
};
/**
* makeIsOn: return isOn(pred) function
*/
var makeIsOn = function (pred) {
return function () {
var elAncestor = dom.ancestor(sc, pred);
return !!elAncestor && (elAncestor === dom.ancestor(ec, pred));
};
};
// isOnEditable: judge whether range is on editable or not
this.isOnEditable = makeIsOn(dom.isEditable);
// isOnList: judge whether range is on list node or not
this.isOnList = makeIsOn(dom.isList);
// isOnAnchor: judge whether range is on anchor node or not
this.isOnAnchor = makeIsOn(dom.isAnchor);
// isOnAnchor: judge whether range is on cell node or not
this.isOnCell = makeIsOn(dom.isCell);
// isCollapsed: judge whether range was collapsed
this.isCollapsed = function () { return sc === ec && so === eo; };
/**
* insert node at current cursor
* @param {Element} node
*/
this.insertNode = function (node) {
var nativeRng = nativeRange();
if (bW3CRangeSupport) {
nativeRng.insertNode(node);
} else {
nativeRng.pasteHTML(node.outerHTML); // NOTE: missing node reference.
}
};
this.toString = function () {
var nativeRng = nativeRange();
return bW3CRangeSupport ? nativeRng.toString() : nativeRng.text;
};
/**
* create offsetPath bookmark
* @param {Element} elEditable
*/
this.bookmark = function (elEditable) {
return {
s: { path: dom.makeOffsetPath(elEditable, sc), offset: so },
e: { path: dom.makeOffsetPath(elEditable, ec), offset: eo }
};
};
/**
* getClientRects
* @return {Rect[]}
*/
this.getClientRects = function () {
var nativeRng = nativeRange();
return nativeRng.getClientRects();
};
};
return {
/**
* create Range Object From arguments or Browser Selection
*
* @param {Element} sc - start container
* @param {Number} so - start offset
* @param {Element} ec - end container
* @param {Number} eo - end offset
*/
create : function (sc, so, ec, eo) {
if (arguments.length === 0) { // from Browser Selection
if (bW3CRangeSupport) { // webkit, firefox
var selection = document.getSelection();
if (selection.rangeCount === 0) { return null; }
var nativeRng = selection.getRangeAt(0);
sc = nativeRng.startContainer;
so = nativeRng.startOffset;
ec = nativeRng.endContainer;
eo = nativeRng.endOffset;
} else { // IE8: TextRange
var textRange = document.selection.createRange();
var textRangeEnd = textRange.duplicate();
textRangeEnd.collapse(false);
var textRangeStart = textRange;
textRangeStart.collapse(true);
var bpStart = textRange2bp(textRangeStart, true),
bpEnd = textRange2bp(textRangeEnd, false);
sc = bpStart.cont;
so = bpStart.offset;
ec = bpEnd.cont;
eo = bpEnd.offset;
}
} else if (arguments.length === 2) { //collapsed
ec = sc;
eo = so;
}
return new WrappedRange(sc, so, ec, eo);
},
/**
* create WrappedRange from node
*
* @param {Element} node
* @return {WrappedRange}
*/
createFromNode: function (node) {
return this.create(node, 0, node, 1);
},
/**
* create WrappedRange from Bookmark
*
* @param {Element} elEditable
* @param {Obkect} bookmark
* @return {WrappedRange}
*/
createFromBookmark : function (elEditable, bookmark) {
var sc = dom.fromOffsetPath(elEditable, bookmark.s.path);
var so = bookmark.s.offset;
var ec = dom.fromOffsetPath(elEditable, bookmark.e.path);
var eo = bookmark.e.offset;
return new WrappedRange(sc, so, ec, eo);
}
};
})();
/**
* Table
* @class
*/
var Table = function () {
/**
* handle tab key
*
* @param {WrappedRange} rng
* @param {Boolean} bShift
*/
this.tab = function (rng, bShift) {
var elCell = dom.ancestor(rng.commonAncestor(), dom.isCell);
var elTable = dom.ancestor(elCell, dom.isTable);
var aCell = dom.listDescendant(elTable, dom.isCell);
var elNext = list[bShift ? 'prev' : 'next'](aCell, elCell);
if (elNext) {
range.create(elNext, 0).select();
}
};
/**
* create empty table element
*
* @param {Number} nRow
* @param {Number} nCol
*/
this.createTable = function (nCol, nRow) {
var aTD = [], sTD;
for (var idxCol = 0; idxCol < nCol; idxCol++) {
aTD.push('' + dom.blank + ' | ');
}
sTD = aTD.join('');
var aTR = [], sTR;
for (var idxRow = 0; idxRow < nRow; idxRow++) {
aTR.push('' + sTD + '
');
}
sTR = aTR.join('');
var sTable = '';
return $(sTable)[0];
};
};
/**
* Editor
* @class
*/
var Editor = function () {
var style = new Style();
var table = new Table();
/**
* save current range
*
* @param {jQuery} $editable
*/
this.saveRange = function ($editable) {
$editable.data('range', range.create());
};
/**
* restore lately range
*
* @param {jQuery} $editable
*/
this.restoreRange = function ($editable) {
var rng = $editable.data('range');
if (rng) { rng.select(); }
};
/**
* current style
* @param {Element} elTarget
*/
this.currentStyle = function (elTarget) {
var rng = range.create();
return rng.isOnEditable() && style.current(rng, elTarget);
};
/**
* undo
* @param {jQuery} $editable
*/
this.undo = function ($editable) {
$editable.data('NoteHistory').undo($editable);
};
/**
* redo
* @param {jQuery} $editable
*/
this.redo = function ($editable) {
$editable.data('NoteHistory').redo($editable);
};
/**
* record Undo
* @param {jQuery} $editable
*/
var recordUndo = this.recordUndo = function ($editable) {
$editable.data('NoteHistory').recordUndo($editable);
};
/* jshint ignore:start */
// native commands(with execCommand), generate function for execCommand
var aCmd = ['bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript',
'justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull',
'insertOrderedList', 'insertUnorderedList',
'indent', 'outdent', 'formatBlock', 'removeFormat',
'backColor', 'foreColor', 'insertHorizontalRule', 'fontName'];
for (var idx = 0, len = aCmd.length; idx < len; idx ++) {
this[aCmd[idx]] = (function (sCmd) {
return function ($editable, sValue) {
recordUndo($editable);
document.execCommand(sCmd, false, sValue);
};
})(aCmd[idx]);
}
/* jshint ignore:end */
/**
* @param {jQuery} $editable
* @param {WrappedRange} rng
* @param {Number} nTabsize
*/
var insertTab = function ($editable, rng, nTabsize) {
recordUndo($editable);
var sNbsp = new Array(nTabsize + 1).join(' ');
rng.insertNode($('' + sNbsp + '')[0]);
var $tab = $('#noteTab').removeAttr('id');
rng = range.create($tab[0], 1);
rng.select();
dom.remove($tab[0]);
};
/**
* handle tab key
* @param {jQuery} $editable
* @param {Number} nTabsize
* @param {Boolean} bShift
*/
this.tab = function ($editable, options) {
var rng = range.create();
if (rng.isCollapsed() && rng.isOnCell()) {
table.tab(rng);
} else {
insertTab($editable, rng, options.tabsize);
}
};
/**
* handle shift+tab key
*/
this.untab = function () {
var rng = range.create();
if (rng.isCollapsed() && rng.isOnCell()) {
table.tab(rng, true);
}
};
/**
* insert image
*
* @param {jQuery} $editable
* @param {String} sUrl
*/
this.insertImage = function ($editable, sUrl) {
async.createImage(sUrl).then(function ($image) {
recordUndo($editable);
$image.css({
display: '',
width: Math.min($editable.width(), $image.width())
});
range.create().insertNode($image[0]);
}).fail(function () {
var callbacks = $editable.data('callbacks');
if (callbacks.onImageUploadError) {
callbacks.onImageUploadError();
}
});
};
/**
* insert video
* @param {jQuery} $editable
* @param {String} sUrl
*/
this.insertVideo = function ($editable, sUrl) {
recordUndo($editable);
// video url patterns(youtube, instagram, vimeo, dailymotion)
var ytRegExp = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/;
var ytMatch = sUrl.match(ytRegExp);
var igRegExp = /\/\/instagram.com\/p\/(.[a-zA-Z0-9]*)/;
var igMatch = sUrl.match(igRegExp);
var vRegExp = /\/\/vine.co\/v\/(.[a-zA-Z0-9]*)/;
var vMatch = sUrl.match(vRegExp);
var vimRegExp = /\/\/(player.)?vimeo.com\/([a-z]*\/)*([0-9]{6,11})[?]?.*/;
var vimMatch = sUrl.match(vimRegExp);
var dmRegExp = /.+dailymotion.com\/(video|hub)\/([^_]+)[^#]*(#video=([^_&]+))?/;
var dmMatch = sUrl.match(dmRegExp);
var $video;
if (ytMatch && ytMatch[2].length === 11) {
var youtubeId = ytMatch[2];
$video = $('