forked from vectorsize/substance-text
-
Notifications
You must be signed in to change notification settings - Fork 4
/
proper.js
886 lines (780 loc) · 27.8 KB
/
proper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
// Proper is freely distributable under the MIT license.
// For all details and documentation:
// http://github.com/michael/proper
// Goals:
//
// * Annotations (strong, em, code, link) are exclusive. No text can be both
// emphasized and strong.
// * The output is semantic, valid HTML.
// * Cross-browser compatibility: Support the most recent versions of Chrome,
// Safari, Firefox and Internet Explorer. Proper should behave the same on
// all these platforms (if possible).
//
// Proper uses contenteditable to support these features. Unfortunately, every
// browser handles contenteditable differently, which is why many
// browser-specific workarounds are required.
(function(){
/* Adapted from http://github.com/hasenj/proper */
function getDirection(text, guesstimate) {
function getWordDir(word) {
// regexes to identify ltr and rtl characters
// stolen from google's i18n.bidi
var ltr_re_ =
'A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02B8\u0300-\u0590\u0800-\u1FFF' +
'\u2C00-\uFB1C\uFE00-\uFE6F\uFEFD-\uFFFF';
var rtl_re_ = '\u0591-\u07FF\uFB1D-\uFDFF\uFE70-\uFEFC';
// end of google steal
var ltr_re = RegExp('[' + ltr_re_ + ']+');
var rtl_re = RegExp('[' + rtl_re_ + ']+');
if(ltr_re.exec(word)) {
return 'L';
} else if (rtl_re.exec(word)) {
return 'R';
} else {
return 'N';
}
}
if (guesstimate == null) guesstimate = false;
// TODO: check first character is a unicode dir character!
var is_word = function(word) {
return word.length > 0; // && word.match(/\w+/)
// wops! \w only matches ascii characters :(
}
var words = _.filter(text.split(' '), is_word);
var dirs = _.map(words,getWordDir);
var func_same_direction = function(dir) {
return function(d) { return d == dir; };
}
var is_non_neutral_dir = function(d) { return d != 'N'; };
var other_direction = function(dir) { return {'L':'R', 'R':'L'}[dir]; };
// should be really the same as dirs because we already filtered out
// things that are not words!
var X = 100;
var hard_dirs = _.filter(dirs, is_non_neutral_dir).slice(0, X);
if (hard_dirs.length == 0) { return 'N'; }
var candidate = hard_dirs[0];
if(guesstimate === false) {
return candidate;
}
var DIR_COUNT_THRESHOLD = 10;
if (hard_dirs.length < DIR_COUNT_THRESHOLD) return candidate;
var cand_words = hard_dirs.filter(func_same_direction(candidate));
var other_words = hard_dirs.filter(func_same_direction(other_direction(candidate)));
if (other_words.length == 0) return candidate;
var other_dir = other_words[0];
var MIN_RATIO = 0.4; // P
var ratio = cand_words.length / other_words.length;
if (ratio >= MIN_RATIO) {
return candidate;
} else {
return other_dir;
}
}
// _.Events (borrowed from Backbone.js)
// ------------------------------------
// A module that can be mixed in to *any object* in order to provide it with
// custom events. You may `bind` or `unbind` a callback function to an event;
// `trigger`-ing an event fires all callbacks in succession.
//
// var object = {};
// _.extend(object, Backbone.Events);
// object.bind('expand', function(){ alert('expanded'); });
// object.trigger('expand');
//
_.Events = window.Backbone ? Backbone.Events : {
// Bind an event, specified by a string name, `ev`, to a `callback` function.
// Passing `"all"` will bind the callback to all events fired.
bind : function(ev, callback) {
var calls = this._callbacks || (this._callbacks = {});
var list = this._callbacks[ev] || (this._callbacks[ev] = []);
list.push(callback);
return this;
},
// Remove one or many callbacks. If `callback` is null, removes all
// callbacks for the event. If `ev` is null, removes all bound callbacks
// for all events.
unbind : function(ev, callback) {
var calls;
if (!ev) {
this._callbacks = {};
} else if (calls = this._callbacks) {
if (!callback) {
calls[ev] = [];
} else {
var list = calls[ev];
if (!list) return this;
for (var i = 0, l = list.length; i < l; i++) {
if (callback === list[i]) {
list.splice(i, 1);
break;
}
}
}
}
return this;
},
// Trigger an event, firing all bound callbacks. Callbacks are passed the
// same arguments as `trigger` is, apart from the event name.
// Listening for `"all"` passes the true event name as the first argument.
trigger : function(ev) {
var list, calls, i, l;
if (!(calls = this._callbacks)) return this;
if (list = calls[ev]) {
for (i = 0, l = list.length; i < l; i++) {
list[i].apply(this, Array.prototype.slice.call(arguments, 1));
}
}
if (list = calls['all']) {
for (i = 0, l = list.length; i < l; i++) {
list[i].apply(this, arguments);
}
}
return this;
}
};
_.stripTags = function(input, allowed) {
// Strips HTML and PHP tags from a string
//
// version: 1009.2513
// discuss at: http://phpjs.org/functions/strip_tags
allowed = (((allowed || "") + "")
.toLowerCase()
.match(/<[a-z][a-z0-9]*>/g) || [])
.join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>)
var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi,
commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi;
return input.replace(commentsAndPhpTags, '').replace(tags, function($0, $1){
return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : '';
});
};
// Initial Setup
// -------------
controlsTpl = ' \
<div class="proper-commands"> \
<a href="#" title="Emphasis (CTRL+SHIFT+E)" class="command em" command="em"><div>Emphasis</div></a> \
<a href="#" title="Strong (CTRL+SHIFT+S)" class="command strong" command="strong"><div>Strong</div></a> \
<a href="#" title="Inline Code (CTRL+SHIFT+C)" class="command code" command="code"><div>Code</div></a> \
<a title="Link (CTRL+SHIFT+L)" href="#" class="command link" command="link"><div>Link</div></a>\
<a href="#" title="Bullet List (CTRL+SHIFT+B)" class="command ul" command="ul"><div>Bullets List</div></a>\
<a href="#" title="Numbered List (CTRL+SHIFT+N)" class="command ol" command="ol"><div>Numbered List</div></a>\
<a href="#" title="Indent (TAB)" class="command indent" command="indent"><div>Indent</div></a>\
<a href="#" title="Outdent (SHIFT+TAB)" class="command outdent" command="outdent"><div>Outdent</div></a>\
<br class="clear"/>\
</div>';
// Proper
// ------
this.Proper = function(options) {
var activeElement = null, // element that's being edited
$controls,
direction = "left",
events = _.extend({}, _.Events),
pendingChange = false,
options = {},
defaultOptions = { // default options
multiline: true,
markup: true,
placeholder: 'Enter Text',
startEmpty: false,
codeFontFamily: 'Monaco, Consolas, "Lucida Console", monospace'
},
Node = window.Node || { // not available in IE
TEXT_NODE: 3,
COMMENT_NODE: 8
};
// Commands
// --------
function exec(cmd) {
var command = commands[cmd];
if (command.exec) {
command.exec();
} else {
if (command.isActive()) {
command.toggleOff();
} else {
command.toggleOn();
}
}
}
function removeFormat() {
document.execCommand('removeFormat', false, true);
_.each(['em', 'strong', 'code'], function (cmd) {
var command = commands[cmd];
if (command.isActive()) {
command.toggleOff();
}
});
}
// Give code elements (= monospace font) the class `proper-code`.
function addCodeClasses() {
$(activeElement).find('font').addClass('proper-code');
}
var nbsp = $('<span> </span>').text();
var commands = {
em: {
isActive: function() {
try{return document.queryCommandState('italic', false, true);} catch(e) {return false;}
},
toggleOn: function() {
removeFormat();
document.execCommand('italic', false, true);
},
toggleOff: function() {
document.execCommand('italic', false, true);
}
},
strong: {
isActive: function() {
try{return document.queryCommandState('bold', false, true);} catch(e) {return false;}
},
toggleOn: function() {
removeFormat();
document.execCommand('bold', false, true);
},
toggleOff: function () {
document.execCommand('bold', false, true);
}
},
code: {
isActive: function() {
return cmpFontFamily(document.queryCommandValue('fontName'), options.codeFontFamily);
},
toggleOn: function() {
removeFormat();
document.execCommand('fontName', false, options.codeFontFamily);
addCodeClasses();
},
toggleOff: function () {
var sel;
if ($.browser.webkit && (sel = saveSelection()).collapsed) {
// Workaround for Webkit. Without this, the user wouldn't be
// able to disable <code> when there's no selection.
var container = sel.endContainer
, offset = sel.endOffset;
container.data = container.data.slice(0, offset)
+ nbsp
+ container.data.slice(offset);
var newSel = document.createRange();
newSel.setStart(container, offset);
newSel.setEnd(container, offset+1);
restoreSelection(newSel);
document.execCommand('removeFormat', false, true);
} else {
document.execCommand('removeFormat', false, true);
}
}
},
link: {
exec: function() {
removeFormat();
document.execCommand('createLink', false, window.prompt('URL:', 'http://'));
}
},
ul: {
isActive: function() {
try{return document.queryCommandState('insertUnorderedList', false, true);} catch(e) {return false;}
},
exec: function() {
document.execCommand('insertUnorderedList', false, true);
}
},
ol: {
isActive: function() {
try{return document.queryCommandState('insertOrderedList', false, true);} catch(e) {return false;}
},
exec: function() {
document.execCommand('insertOrderedList', false, true);
}
},
indent: {
exec: function() {
try{
if (document.queryCommandState('insertOrderedList', false, true) ||
document.queryCommandState('insertUnorderedList', false, true)) {
document.execCommand('indent', false, true);
}
} catch(e) {}
}
},
outdent: {
exec: function() {
try{
if (document.queryCommandState('insertOrderedList', false, true) ||
document.queryCommandState('insertUnorderedList', false, true)) {
document.execCommand('outdent', false, true);
}
} catch(e) {}
}
}
};
// Returns true if a and b is the same font family. This is used to check
// if the current font family (`document.queryCommandValue('fontName')`)
// is the font family that's used to style code.
function cmpFontFamily(a, b) {
function normalizeFontFamily(s) {
return (''+s).replace(/\s*,\s*/g, ',').replace(/'/g, '"');
}
a = normalizeFontFamily(a);
b = normalizeFontFamily(b);
// Internet Explorer's `document.queryCommandValue('fontName')` returns
// only the applied font family (e.g. `Consolas`), not the full font
// stack (e.g. `Monaco, Consolas, "Lucida Console", monospace`).
if ($.browser.msie) {
if (a.split(',').length === 1) {
return _.indexOf(b.split(','), a) > -1;
} else if (b.split(',').length === 1) {
return _.indexOf(a.split(','), b) > -1;
} else {
return a === b;
}
} else {
return a === b;
}
}
// Semantify/desemantify content
// -----------------------------
function escape(text) {
return text.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"');
}
function updateDirection() {
var dir = getDirection($(activeElement).text());
direction = dir === "R" ? "right" : "left";
$(activeElement).css('direction', dir === "R" ? "rtl" : "ltr");
}
// Recursively walks the dom and returns the semantified contents. Replaces
// presentational elements (e.g. `<b>`) with their semantic counterparts
// (e.g. `<strong>`).
function semantifyContents(node) {
function replace(presentational, semantic) {
node.find(presentational).each(function () {
$(this).replaceWith($(document.createElement(semantic)).html($(this).html()));
});
}
replace('i', 'em');
replace('b', 'strong');
replace('.proper-code', 'code');
replace('div', 'p');
//replace('span', 'span');
node.find('span').each(function () {
if (this.firstChild) {
$(this.firstChild).unwrap();
}
});
node.find('p, ul, ol').each(function () {
while ($(this).parent().is('p')) {
$(this).unwrap();
}
});
// Fix nested lists
node.find('ul > ul, ul > ol, ol > ul, ol > ol').each(function () {
if ($(this).prev()) {
$(this).prev().append(this);
} else {
$(this).wrap($('<li />'));
}
});
(function () {
var currentP = [];
function wrapInP() {
if (currentP.length) {
var p = $('<p />').insertBefore(currentP[0]);
for (var i = 0, l = currentP.length; i < l; i++) {
$(currentP[i]).remove().appendTo(p);
}
currentP = [];
}
}
// _.clone is necessary because it turns the `childNodes` live
// dom collection into a static array.
var children = _.clone(node.get(0).childNodes);
for (var i = 0, l = children.length; i < l; i++) {
var child = children[i];
if (!$(child).is('p, ul, ol') &&
!(child.nodeType === Node.TEXT_NODE && (/^\s*$/).exec(child.data))) {
currentP.push(child);
} else {
wrapInP();
}
}
wrapInP();
})();
// Remove unnecessary br's
node.find('br').each(function () {
if (this.parentNode.lastChild === this) {
$(this).remove();
}
});
// Remove all spans
node.find('span').each(function () {
$(this).children().first().unwrap();
});
}
// Replaces semantic elements with their presentational counterparts
// (e.g. <em> with <i>).
function desemantifyContents(node) {
doWithSelection(function () {
function replace(semantic, presentational) {
node.find(semantic).each(function () {
var presentationalEl = $(presentational).get(0);
var child;
while (child = this.firstChild) {
presentationalEl.appendChild(child);
}
$(this).replaceWith(presentationalEl);
});
}
replace('em', '<i />');
replace('strong', '<b />');
replace('code', '<font class="proper-code" face="'+escape(options.codeFontFamily)+'" />');
});
}
// Update the control buttons' state.
function updateCommandState() {
if (!options.markup) return;
$controls.find('.command').removeClass('selected');
_.each(commands, function(command, name) {
if (command.isActive && command.isActive()) {
$controls.find('.command.'+name).addClass('selected');
}
});
}
// Placeholder
// -----------
// If the activeElement has no content, display the placeholder and give
// the element the class `empty`.
function maybeInsertPlaceholder() {
if ($.trim($(activeElement).text()).length === 0) {
$(activeElement).addClass('empty');
if (options.markup) {
$(activeElement).html('<p>'+options.placeholder+'</p>');
} else {
$(activeElement).html(options.placeholder);
}
}
}
// If the activeElement has the class `empty`, remove the placeholder and
// the class.
function maybeRemovePlaceholder() {
if ($(activeElement).hasClass('empty')) {
$(activeElement).removeClass('empty');
selectAll();
document.execCommand('delete', false, "");
}
}
// DOM Selection
// -------------
// Returns the current selection as a dom range.
function saveSelection() {
if (window.getSelection) {
var sel = window.getSelection();
if (sel.rangeCount > 0) {
return sel.getRangeAt(0);
}
} else if (document.selection && document.selection.createRange) { // IE
return document.selection.createRange();
}
return null;
}
// Selects the given dom range.
function restoreSelection(range) {
if (range) {
if (window.getSelection) {
var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
} else if (document.selection && range.select) { // IE
range.select();
}
}
}
// Selects the whole editing area.
function selectAll() {
var el = $(activeElement)[0],
range;
if (document.body.createTextRange) { // IE < 9
range = document.body.createTextRange();
range.moveToElementText(el);
range.select();
} else {
range = document.createRange();
range.selectNodeContents(el);
}
restoreSelection(range);
}
// Applies fn and tries to preserve the user's selection and cursor
// position.
function doWithSelection (fn) {
// Before
var sel = saveSelection()
if (sel) {
var startContainer = sel.startContainer
, startOffset = sel.startOffset
, endContainer = sel.endContainer
, endOffset = sel.endOffset;
}
fn();
if (sel) {
// After
function isInDom(node) {
if (node) {
if (node === document.body) return true;
if (node.parentNode) return isInDom(node.parentNode);
}
return false;
}
if (isInDom(startContainer)) {
sel.setStart(startContainer, startOffset);
}
if (isInDom(endContainer)) {
sel.setEnd(endContainer, endOffset);
}
restoreSelection(sel);
}
}
// Handle events
// -------------
// Should be called during a paste event. Removes the focus from the
// currently focused element. Expects a callback function that will be
// called with a node containing the pasted content.
function getPastedContent (callback) {
// TODO: michael, explain why these css properties are needed -- timjb
var tmpEl = $('<div id="proper_tmp_el" contenteditable="true" />')
.css({
position: 'fixed', top: '20px', left: '20px',
opacity: '0', 'z-index': '10000',
width: '1px', height: '1px'
})
.appendTo(document.body)
.focus();
setTimeout(function () {
tmpEl.remove();
callback(tmpEl);
}, 10);
}
function cleanPastedContent (node) {
var allowedTags = {
p: [], ul: [], ol: [], li: [],
strong: [], code: [], em: [], b: [], i: [], a: ['href']
};
function traverse (node) {
// Remove comments
$(node).contents().filter(function () {
return this.nodeType === Node.COMMENT_NODE
}).remove();
$(node).children().each(function () {
var tag = this.tagName.toLowerCase();
traverse(this);
if (allowedTags[tag]) {
var old = $(this)
, neww = $(document.createElement(tag));
neww.html(old.html());
_.each(allowedTags[tag], function (name) {
neww.attr(name, old.attr(name));
});
old.replaceWith(neww);
} else if (tag === 'font' && $(this).hasClass('proper-code')) {
// do nothing
} else {
$(this).contents().first().unwrap();
}
});
}
$(node).find('script, style').remove();
// Remove double annotations
var annotations = 'strong, em, b, i, code, a';
$(node).find(annotations).each(function () {
$(this).find(annotations).each(function () {
$(this).contents().first().unwrap();
});
});
traverse(node);
}
// Removes <b>, <i> and <font> tags
function removeAnnotations (node) {
$(node).find('b, i, font').each(function () {
$(this).contents().first().unwrap();
});
}
function bindEvents(el) {
$(el)
.unbind('paste')
.unbind('keydown')
.unbind('keyup')
.unbind('focus')
.unbind('blur');
$(el).bind('paste', function () {
var isAnnotationActive = commands.strong.isActive()
|| commands.em.isActive()
|| commands.code.isActive();
var selection = saveSelection();
getPastedContent(function (node) {
restoreSelection(selection);
$(el).focus();
cleanPastedContent($(node));
//semantifyContents($(node));
desemantifyContents($(node));
if (isAnnotationActive) removeAnnotations($(node));
// For some reason last </p> gets injected anyway
document.execCommand('insertHTML', false, $(node).html());
});
});
function isTag(node, tag) {
if (!node || node === activeElement) return false;
if (node.tagName && node.tagName.toLowerCase() === tag) return true;
return isTag(node.parentNode, tag);
}
// Prevent multiline
$(el).bind('keydown', function(e) {
if (!options.multiline && e.keyCode === 13) {
e.stopPropagation();
e.preventDefault();
return;
}
if (e.keyCode === 8 &&
$.trim($(activeElement).text()) === '' &&
$(activeElement).find('p, li').length === 1) {
// backspace is pressed and the editor is empty
// prevent the removal of the last paragraph
e.preventDefault();
}
// By default, Firefox doesn't create paragraphs. Fix this.
if ($.browser.mozilla) {
var selectionStart = saveSelection().startContainer;
if (options.multiline && !isTag(selectionStart, 'p') && !isTag(selectionStart, 'ul')) {
document.execCommand('insertParagraph', false, true);
}
if (e.keyCode === 13 && !e.shiftKey) {
window.setTimeout(function () {
if (!isTag(selectionStart, 'ul')) {
document.execCommand('insertParagraph', false, true);
}
}, 10);
}
}
});
$(el)
.bind('focus', maybeRemovePlaceholder)
.bind('blur', maybeInsertPlaceholder)
.bind('click', updateCommandState);
$(el).bind('keyup', function(e) {
updateCommandState();
addCodeClasses();
updateDirection();
// Trigger change events, but consolidate them to 200ms time slices
setTimeout(function() {
// Skip if there's already a change pending
if (!pendingChange) {
pendingChange = true;
setTimeout(function() {
pendingChange = false;
events.trigger('changed');
}, 200);
}
}, 10);
return true;
});
}
// Instance methods
// -----------
function deactivate () {
$(activeElement)
.attr('contenteditable', 'false')
.unbind('paste')
.unbind('keydown');
$('.proper-commands').remove();
events.unbind('changed');
};
// Activate editor for a given element
function activate (el, opts) {
options = {};
_.extend(options, defaultOptions, opts);
// Deactivate previously active element
deactivate();
// Make editable
$(el).attr('contenteditable', true);
activeElement = el;
bindEvents(el);
// Setup controls
if (options.markup) {
$controls = $(controlsTpl);
$controls.appendTo($(options.controlsTarget));
}
// Keyboard bindings
if (options.markup) {
function execLater(cmd) {
return function(e) {
e.preventDefault();
exec(cmd);
};
}
$(activeElement)
.keydown('ctrl+shift+e', execLater('em'))
.keydown('ctrl+shift+s', execLater('strong'))
.keydown('ctrl+shift+c', execLater('code'))
.keydown('ctrl+shift+l', execLater('link'))
.keydown('ctrl+shift+b', execLater('ul'))
.keydown('ctrl+shift+n', execLater('ol'))
.keydown('tab', execLater('indent'))
.keydown('shift+tab', execLater('outdent'));
}
if (!options.startEmpty)
$(activeElement).focus();
else
maybeInsertPlaceholder();
updateCommandState();
desemantifyContents($(activeElement));
// Use <b>, <i> and <font face="monospace"> instead of style attributes.
// This is convenient because these inline element can easily be replaced
// by their more semantic counterparts (<strong>, <em> and <code>).
try {
document.execCommand('styleWithCSS', false, false);
} catch (exc) {
// This fails in Firefox.
}
$('.proper-commands a.command').click(function(e) {
e.preventDefault();
$(activeElement).focus();
exec($(e.currentTarget).attr('command'));
updateCommandState();
setTimeout(function() { events.trigger('changed'); }, 10);
});
};
// Get current content
function content () {
if ($(activeElement).hasClass('empty')) return '';
if (options.markup) {
if (!activeElement) return '';
var clone = $(activeElement).clone();
semantifyContents(clone);
return clone.html();
} else {
if (options.multiline) {
return $.trim(_.stripTags($(activeElement).html().replace(/<div>/g, '\n')
.replace(/<\/div>/g, '')));
} else {
return $.trim(_.stripTags($(activeElement).html()));
}
}
};
// Get current content but stripped
function contentStripped () {
return _.stripTags(this.content());
};
// Expose public API
// -----------------
return {
bind: function () { events.bind.apply(events, arguments); },
unbind: function () { events.unbind.apply(events, arguments); },
trigger: function () { events.trigger.apply(events, arguments); },
activate: activate,
deactivate: deactivate,
content: content,
contentStripped: contentStripped,
exec: exec,
commands: commands,
direction: function() { return direction; }
};
};
})();