You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
501 lines
24 KiB
501 lines
24 KiB
!function($, wysi) { |
|
"use strict"; |
|
|
|
var tpl = { |
|
"font-styles": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li class='dropdown'>" + |
|
"<a class='btn btn-default dropdown-toggle" + size + "' data-toggle='dropdown' href='#'>" + |
|
"<i class='icon-font'></i> <span class='current-font'>" + locale.font_styles.normal + "</span> <b class='caret'></b>" + |
|
"</a>" + |
|
"<ul class='dropdown-menu'>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='div' tabindex='-1'>" + locale.font_styles.normal + "</a></li>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='h1' tabindex='-1'>" + locale.font_styles.h1 + "</a></li>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='h2' tabindex='-1'>" + locale.font_styles.h2 + "</a></li>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='h3' tabindex='-1'>" + locale.font_styles.h3 + "</a></li>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='h4'>" + locale.font_styles.h4 + "</a></li>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='h5'>" + locale.font_styles.h5 + "</a></li>" + |
|
"<li><a data-wysihtml5-command='formatBlock' data-wysihtml5-command-value='h6'>" + locale.font_styles.h6 + "</a></li>" + |
|
"</ul>" + |
|
"</li>"; |
|
}, |
|
|
|
"emphasis": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='btn-group'>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='bold' title='" + locale.emphasis.bold + "' tabindex='-1'><i class='icon-bold2'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='italic' title='" + locale.emphasis.italic + "' tabindex='-1'><i class='icon-italic2'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='underline' title='" + locale.emphasis.underline + "' tabindex='-1'><i class='icon-underline2'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='strikeThrough' title='" + locale.emphasis.strike + "' tabindex='-1'><i class='icon-strikethrough3'></i></a>" + |
|
"</div>" + |
|
"</li>"; |
|
}, |
|
|
|
"lists": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='btn-group'>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='insertUnorderedList' title='" + locale.lists.unordered + "' tabindex='-1'><i class='icon-list'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='insertOrderedList' title='" + locale.lists.ordered + "' tabindex='-1'><i class='icon-list-numbered'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='Outdent' title='" + locale.lists.outdent + "' tabindex='-1'><i class='icon-indent-decrease'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='Indent' title='" + locale.lists.indent + "' tabindex='-1'><i class='icon-indent-increase'></i></a>" + |
|
"</div>" + |
|
"</li>"; |
|
}, |
|
|
|
"link": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='bootstrap-wysihtml5-insert-link-modal modal fade'>" + |
|
"<div class='modal-dialog'>" + |
|
"<div class='modal-content'>" + |
|
"<div class='modal-header'>" + |
|
"<a class='close' data-dismiss='modal'>×</a>" + |
|
"<h5 class='modal-title'>" + " <i class='icon-link position-left'></i>" + locale.link.insert + "</h5>" + |
|
"</div>" + |
|
"<div class='modal-body with-padding'>" + |
|
"<div class='form-group'>" + |
|
"<input type='text' value='http://' class='bootstrap-wysihtml5-insert-link-url form-control'>" + |
|
"<div class='checkbox'><label><input type='checkbox' class='bootstrap-wysihtml5-insert-link-target styled' checked>" + locale.link.target + "</label>" + "</div>" + |
|
"</div>" + |
|
"</div>" + |
|
"<div class='modal-footer'>" + |
|
"<a href='#' class='btn btn-warning' data-dismiss='modal'>" + locale.link.cancel + "</a>" + |
|
"<a href='#' class='btn btn-primary' data-dismiss='modal'>" + locale.link.insert + "</a>" + |
|
"</div>" + |
|
"</div>" + |
|
"</div>" + |
|
"</div>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='createLink' title='" + locale.link.insert + "' tabindex='-1'><i class='icon-link'></i></a>" + |
|
"</li>"; |
|
}, |
|
|
|
"image": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='bootstrap-wysihtml5-insert-image-modal modal fade'>" + |
|
"<div class='modal-dialog'>" + |
|
"<div class='modal-content'>" + |
|
"<div class='modal-header'>" + |
|
"<a class='close' data-dismiss='modal'>×</a>" + |
|
"<h5 class='modal-title'>" + " <i class='icon-image2 position-left'></i>" + locale.image.insert + "</h5>" + |
|
"</div>" + |
|
"<div class='modal-body with-padding'>" + |
|
"<div class='form-group'>" + |
|
"<input type='text' value='http://' class='bootstrap-wysihtml5-insert-image-url form-control'>" + |
|
"</div>" + |
|
"</div>" + |
|
"<div class='modal-footer'>" + |
|
"<a href='#' class='btn btn-warning' data-dismiss='modal'>" + locale.image.cancel + "</a>" + |
|
"<a href='#' class='btn btn-primary' data-dismiss='modal'>" + locale.image.insert + "</a>" + |
|
"</div>" + |
|
"</div>" + |
|
"</div>" + |
|
"</div>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='insertImage' title='" + locale.image.insert + "' tabindex='-1'><i class='icon-image2'></i></a>" + |
|
"</li>"; |
|
}, |
|
|
|
"html": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='btn-group'>" + |
|
"<a class='btn btn-success btn-icon" + size + "' data-wysihtml5-action='change_view' title='" + locale.html.edit + "' tabindex='-1'><i class='icon-embed2'></i></a>" + |
|
"</div>" + |
|
"</li>"; |
|
}, |
|
|
|
"alignment": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='btn-group'>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='justifyleft' title='" + locale.alignment.left + "' tabindex='-1'><i class='icon-paragraph-left3'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='justifyright' title='" + locale.alignment.right + "' tabindex='-1'><i class='icon-paragraph-right3'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='justifycenter' title='" + locale.alignment.center + "' tabindex='-1'><i class='icon-paragraph-center3'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='justifyfull' title='" + locale.alignment.full + "' tabindex='-1'><i class='icon-paragraph-justify3'></i></a>" + |
|
"</div>" + |
|
"</li>"; |
|
}, |
|
|
|
"action": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li>" + |
|
"<div class='btn-group'>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='undo' title='" + locale.action.undo + "' tabindex='-1'><i class='icon-undo'></i></a>" + |
|
"<a class='btn btn-default btn-icon" + size + "' data-wysihtml5-command='redo' title='" + locale.action.redo + "' tabindex='-1'><i class='icon-redo'></i></a>" + |
|
"</div>" + |
|
"</li>"; |
|
}, |
|
|
|
"color": function(locale, options) { |
|
var size = (options && options.size) ? ' btn-'+options.size : ''; |
|
return "<li class='dropdown'>" + |
|
"<a class='btn btn-default dropdown-toggle" + size + "' data-toggle='dropdown' href='#' tabindex='-1'><i class='icon-droplet'></i>" + |
|
"<span class='current-color'>" + locale.colours.black + "</span> <b class='caret'></b>" + |
|
"</a>" + |
|
"<ul class='dropdown-menu color-select'>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='black'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='black'>" + locale.colours.black + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='silver'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='silver'>" + locale.colours.silver + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='gray'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='gray'>" + locale.colours.gray + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='maroon'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='maroon'>" + locale.colours.maroon + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='red'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='red'>" + locale.colours.red + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='purple'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='purple'>" + locale.colours.purple + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='green'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='green'>" + locale.colours.green + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='olive'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='olive'>" + locale.colours.olive + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='navy'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='navy'>" + locale.colours.navy + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='blue'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='blue'>" + locale.colours.blue + "</a></li>" + |
|
"<li><div class='wysihtml5-colors' data-wysihtml5-command-value='orange'></div><a class='wysihtml5-colors-title' data-wysihtml5-command='foreColor' data-wysihtml5-command-value='orange'>" + locale.colours.orange + "</a></li>" + |
|
"</ul>" + |
|
"</li>"; |
|
} |
|
}; |
|
|
|
var templates = function(key, locale, options) { |
|
return tpl[key](locale, options); |
|
}; |
|
|
|
|
|
var Wysihtml5 = function(el, options) { |
|
this.el = el; |
|
var toolbarOpts = options || defaultOptions; |
|
for(var t in toolbarOpts.customTemplates) { |
|
tpl[t] = toolbarOpts.customTemplates[t]; |
|
} |
|
this.toolbar = this.createToolbar(el, toolbarOpts); |
|
this.editor = this.createEditor(options); |
|
|
|
window.editor = this.editor; |
|
|
|
/*$('iframe.wysihtml5-sandbox').each(function(i, el){ |
|
$(el.contentWindow).off('focus.wysihtml5').on({ |
|
'focus.wysihtml5' : function(){ |
|
$('li.dropdown').removeClass('open'); |
|
} |
|
}); |
|
});*/ |
|
}; |
|
|
|
Wysihtml5.prototype = { |
|
|
|
constructor: Wysihtml5, |
|
|
|
createEditor: function(options) { |
|
options = options || {}; |
|
|
|
// Add the toolbar to a clone of the options object so multiple instances |
|
// of the WYISYWG don't break because "toolbar" is already defined |
|
options = $.extend(true, {}, options); |
|
options.toolbar = this.toolbar[0]; |
|
|
|
var editor = new wysi.Editor(this.el[0], options); |
|
|
|
if(options && options.events) { |
|
for(var eventName in options.events) { |
|
editor.on(eventName, options.events[eventName]); |
|
} |
|
} |
|
return editor; |
|
}, |
|
|
|
createToolbar: function(el, options) { |
|
var self = this; |
|
var toolbar = $("<ul/>", { |
|
'class' : "wysihtml5-toolbar", |
|
'style': "display:none" |
|
}); |
|
var culture = options.locale || defaultOptions.locale || "en"; |
|
for(var key in defaultOptions) { |
|
var value = false; |
|
|
|
if(options[key] !== undefined) { |
|
if(options[key] === true) { |
|
value = true; |
|
} |
|
} else { |
|
value = defaultOptions[key]; |
|
} |
|
|
|
if(value === true) { |
|
toolbar.append(templates(key, locale[culture], options)); |
|
|
|
if(key === "html") { |
|
this.initHtml(toolbar); |
|
} |
|
|
|
if(key === "link") { |
|
this.initInsertLink(toolbar); |
|
} |
|
|
|
if(key === "image") { |
|
this.initInsertImage(toolbar); |
|
} |
|
} |
|
} |
|
|
|
if(options.toolbar) { |
|
for(key in options.toolbar) { |
|
toolbar.append(options.toolbar[key]); |
|
} |
|
} |
|
|
|
toolbar.find("a[data-wysihtml5-command='formatBlock']").click(function(e) { |
|
var target = e.target || e.srcElement; |
|
var el = $(target); |
|
self.toolbar.find('.current-font').text(el.html()); |
|
}); |
|
|
|
toolbar.find("a[data-wysihtml5-command='foreColor']").click(function(e) { |
|
var target = e.target || e.srcElement; |
|
var el = $(target); |
|
self.toolbar.find('.current-color').text(el.html()); |
|
}); |
|
|
|
this.el.before(toolbar); |
|
|
|
return toolbar; |
|
}, |
|
|
|
initHtml: function(toolbar) { |
|
var changeViewSelector = "a[data-wysihtml5-action='change_view']"; |
|
toolbar.find(changeViewSelector).click(function(e) { |
|
toolbar.find('a.btn').not(changeViewSelector).toggleClass('disabled'); |
|
}); |
|
}, |
|
|
|
initInsertImage: function(toolbar) { |
|
var self = this; |
|
var insertImageModal = toolbar.find('.bootstrap-wysihtml5-insert-image-modal'); |
|
var urlInput = insertImageModal.find('.bootstrap-wysihtml5-insert-image-url'); |
|
var insertButton = insertImageModal.find('a.btn-primary'); |
|
var initialValue = urlInput.val(); |
|
var caretBookmark; |
|
|
|
var insertImage = function() { |
|
var url = urlInput.val(); |
|
urlInput.val(initialValue); |
|
self.editor.currentView.element.focus(); |
|
if (caretBookmark) { |
|
self.editor.composer.selection.setBookmark(caretBookmark); |
|
caretBookmark = null; |
|
} |
|
self.editor.composer.commands.exec("insertImage", url); |
|
}; |
|
|
|
urlInput.keypress(function(e) { |
|
if(e.which == 13) { |
|
insertImage(); |
|
insertImageModal.modal('hide'); |
|
} |
|
}); |
|
|
|
insertButton.click(insertImage); |
|
|
|
insertImageModal.on('shown.bs.modal', function() { |
|
urlInput.focus(); |
|
}); |
|
|
|
insertImageModal.on('hide.bs.modal', function() { |
|
self.editor.currentView.element.focus(); |
|
}); |
|
|
|
toolbar.find('a[data-wysihtml5-command=insertImage]').click(function() { |
|
var activeButton = $(this).hasClass("wysihtml5-command-active"); |
|
|
|
if (!activeButton) { |
|
self.editor.currentView.element.focus(false); |
|
caretBookmark = self.editor.composer.selection.getBookmark(); |
|
insertImageModal.appendTo('body').modal('show'); |
|
insertImageModal.on('click.dismiss.modal', '[data-dismiss="modal"]', function(e) { |
|
e.stopPropagation(); |
|
}); |
|
return false; |
|
} |
|
else { |
|
return true; |
|
} |
|
}); |
|
}, |
|
|
|
initInsertLink: function(toolbar) { |
|
var self = this; |
|
var insertLinkModal = toolbar.find('.bootstrap-wysihtml5-insert-link-modal'); |
|
var urlInput = insertLinkModal.find('.bootstrap-wysihtml5-insert-link-url'); |
|
var targetInput = insertLinkModal.find('.bootstrap-wysihtml5-insert-link-target'); |
|
var insertButton = insertLinkModal.find('a.btn-primary'); |
|
var initialValue = urlInput.val(); |
|
var caretBookmark; |
|
|
|
var insertLink = function() { |
|
var url = urlInput.val(); |
|
urlInput.val(initialValue); |
|
self.editor.currentView.element.focus(); |
|
if (caretBookmark) { |
|
self.editor.composer.selection.setBookmark(caretBookmark); |
|
caretBookmark = null; |
|
} |
|
|
|
var newWindow = targetInput.prop("checked"); |
|
self.editor.composer.commands.exec("createLink", { |
|
'href' : url, |
|
'target' : (newWindow ? '_blank' : '_self'), |
|
'rel' : (newWindow ? 'nofollow' : '') |
|
}); |
|
}; |
|
var pressedEnter = false; |
|
|
|
urlInput.keypress(function(e) { |
|
if(e.which == 13) { |
|
insertLink(); |
|
insertLinkModal.modal('hide'); |
|
} |
|
}); |
|
|
|
insertButton.click(insertLink); |
|
|
|
insertLinkModal.on('shown', function() { |
|
urlInput.focus(); |
|
}); |
|
|
|
insertLinkModal.on('hide', function() { |
|
self.editor.currentView.element.focus(); |
|
}); |
|
|
|
toolbar.find('a[data-wysihtml5-command=createLink]').click(function() { |
|
var activeButton = $(this).hasClass("wysihtml5-command-active"); |
|
|
|
if (!activeButton) { |
|
self.editor.currentView.element.focus(false); |
|
caretBookmark = self.editor.composer.selection.getBookmark(); |
|
insertLinkModal.appendTo('body').modal('show'); |
|
insertLinkModal.on('click.dismiss.modal', '[data-dismiss="modal"]', function(e) { |
|
e.stopPropagation(); |
|
}); |
|
return false; |
|
} |
|
else { |
|
return true; |
|
} |
|
}); |
|
} |
|
}; |
|
|
|
// these define our public api |
|
var methods = { |
|
resetDefaults: function() { |
|
$.fn.wysihtml5.defaultOptions = $.extend(true, {}, $.fn.wysihtml5.defaultOptionsCache); |
|
}, |
|
bypassDefaults: function(options) { |
|
return this.each(function () { |
|
var $this = $(this); |
|
$this.data('wysihtml5', new Wysihtml5($this, options)); |
|
}); |
|
}, |
|
shallowExtend: function (options) { |
|
var settings = $.extend({}, $.fn.wysihtml5.defaultOptions, options || {}, $(this).data()); |
|
var that = this; |
|
return methods.bypassDefaults.apply(that, [settings]); |
|
}, |
|
deepExtend: function(options) { |
|
var settings = $.extend(true, {}, $.fn.wysihtml5.defaultOptions, options || {}); |
|
var that = this; |
|
return methods.bypassDefaults.apply(that, [settings]); |
|
}, |
|
init: function(options) { |
|
var that = this; |
|
return methods.shallowExtend.apply(that, [options]); |
|
} |
|
}; |
|
|
|
$.fn.wysihtml5 = function ( method ) { |
|
if ( methods[method] ) { |
|
return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 )); |
|
} else if ( typeof method === 'object' || ! method ) { |
|
return methods.init.apply( this, arguments ); |
|
} else { |
|
$.error( 'Method ' + method + ' does not exist on jQuery.wysihtml5' ); |
|
} |
|
}; |
|
|
|
$.fn.wysihtml5.Constructor = Wysihtml5; |
|
|
|
var defaultOptions = $.fn.wysihtml5.defaultOptions = { |
|
"font-styles": true, |
|
"color": true, |
|
"emphasis": true, |
|
"alignment": true, |
|
"lists": true, |
|
"link": true, |
|
"image": true, |
|
"action": true, |
|
"html": true, |
|
events: {}, |
|
locale: "en" |
|
}; |
|
|
|
if (typeof $.fn.wysihtml5.defaultOptionsCache === 'undefined') { |
|
$.fn.wysihtml5.defaultOptionsCache = $.extend(true, {}, $.fn.wysihtml5.defaultOptions); |
|
} |
|
|
|
var locale = $.fn.wysihtml5.locale = { |
|
en: { |
|
font_styles: { |
|
normal: "Normal text", |
|
h1: "Heading 1", |
|
h2: "Heading 2", |
|
h3: "Heading 3", |
|
h4: "Heading 4", |
|
h5: "Heading 5", |
|
h6: "Heading 6" |
|
}, |
|
emphasis: { |
|
bold: "Bold", |
|
italic: "Italic", |
|
underline: "Underline", |
|
strike: "Strike through" |
|
}, |
|
lists: { |
|
unordered: "Unordered list", |
|
ordered: "Ordered list", |
|
outdent: "Outdent", |
|
indent: "Indent" |
|
}, |
|
link: { |
|
insert: "Insert link", |
|
cancel: "Cancel", |
|
target: "Open link in new window" |
|
}, |
|
image: { |
|
insert: "Insert image", |
|
cancel: "Cancel" |
|
}, |
|
action: { |
|
undo: "Undo", |
|
redo: "Redo" |
|
}, |
|
html: { |
|
edit: "Edit HTML" |
|
}, |
|
alignment: { |
|
left: "Align left", |
|
right: "Align right", |
|
center: "Align center", |
|
full: "Justify" |
|
}, |
|
colours: { |
|
black: "Black", |
|
silver: "Silver", |
|
gray: "Grey", |
|
maroon: "Maroon", |
|
red: "Red", |
|
purple: "Purple", |
|
green: "Green", |
|
olive: "Olive", |
|
navy: "Navy", |
|
blue: "Blue", |
|
orange: "Orange" |
|
} |
|
} |
|
}; |
|
|
|
}(window.jQuery, window.wysihtml5);
|
|
|