forked from derobins/wmd
-
Notifications
You must be signed in to change notification settings - Fork 19
/
jquery.wmd.js
3682 lines (3007 loc) · 112 KB
/
jquery.wmd.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
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* jQuery wmd plugin.
*/
(function($) {
var counter = 0;
$.fn.wmd = function(_options) {
this.each(function() {
var defaults = {"preview": true};
var options = $.extend({}, _options || {}, defaults);
if (!options.button_bar) {
options.button_bar = "wmd-button-bar-" + counter;
$("<div/>")
.attr("class", "wmd-button-bar")
.attr("id", options.button_bar)
.insertBefore(this);
}
if (typeof(options.preview) == "boolean" && options.preview) {
options.preview = "wmd-preview-" + counter;
$("<div/>")
.attr("class", "wmd-preview")
.attr("id", options.preview)
.insertAfter(this);
}
if (typeof(options.output) == "boolean" && options.output) {
options.output = "wmd-output-" + counter;
$("<div/>")
.attr("class", "wmd-output")
.attr("id", options.output)
.insertAfter(this);
}
this.id = this.id || "wmd-input-" + counter;
options.input = this.id;
setup_wmd(options);
counter++;
});
};
})(jQuery);
;(function() {
var WMDEditor = function(options) {
this.options = WMDEditor.util.extend({}, WMDEditor.defaults, options || {});
wmdBase(this, this.options);
this.startEditor();
};
top.WMDEditor = WMDEditor;
WMDEditor.defaults = { // {{{
version: 2.0,
output_format:"markdown",
lineLength:40,
button_bar: "wmd-button-bar",
preview: "wmd-preview",
output: "wmd-output",
input: "wmd-input",
// The text that appears on the upper part of the dialog box when
// entering links.
imageDialogText:
"<p style='margin-top: 0px'><b>Enter the image URL.</b></p>" +
"<p>You can also add a title, which will be displayed as a tool tip.</p>" +
"<p>Example:<br />http://wmd-editor.com/images/cloud1.jpg \"Optional title\"</p>",
linkDialogText:
"<p style='margin-top: 0px'><b>Enter the web address.</b></p>" +
"<p>You can also add a title, which will be displayed as a tool tip.</p>" +
"<p>Example:<br />http://wmd-editor.com/ \"Optional title\"</p>",
// The default text that appears in the dialog input box when entering
// links.
imageDefaultText: "http://",
linkDefaultText: "http://",
imageDirectory: "images/",
// The link and title for the help button
helpLink: "http://wmd-editor.com/",
helpHoverTitle: "WMD website",
helpTarget: "_blank",
// Some intervals in ms. These can be adjusted to reduce the control's load.
previewPollInterval: 500,
pastePollInterval: 100,
buttons: "bold italic link blockquote code image ol ul heading hr"
}; // }}}
WMDEditor.prototype = {
getPanels: function() {
return {
buttonBar: doc.getElementById(this.options.button_bar),
preview: doc.getElementById(this.options.preview),
output: doc.getElementById(this.options.output),
input: doc.getElementById(this.options.input)
};
},
startEditor: function() {
this.panels = this.getPanels();
this.previewMgr = new PreviewManager(this);
edit = new this.editor(this.previewMgr.refresh);
this.previewMgr.refresh(true);
}
};
var util = { // {{{
// Returns true if the DOM element is visible, false if it's hidden.
// Checks if display is anything other than none.
isVisible: function (elem) {
// shamelessly copied from jQuery
return elem.offsetWidth > 0 || elem.offsetHeight > 0;
},
// Adds a listener callback to a DOM element which is fired on a specified
// event.
addEvent: function(elem, event, listener){
if (elem.attachEvent) {
// IE only. The "on" is mandatory.
elem.attachEvent("on" + event, listener);
}
else {
// Other browsers.
elem.addEventListener(event, listener, false);
}
},
// Removes a listener callback from a DOM element which is fired on a specified
// event.
removeEvent: function(elem, event, listener){
if (elem.detachEvent) {
// IE only. The "on" is mandatory.
elem.detachEvent("on" + event, listener);
}
else {
// Other browsers.
elem.removeEventListener(event, listener, false);
}
},
// Converts \r\n and \r to \n.
fixEolChars: function(text){
text = text.replace(/\r\n/g, "\n");
text = text.replace(/\r/g, "\n");
return text;
},
// Extends a regular expression. Returns a new RegExp
// using pre + regex + post as the expression.
// Used in a few functions where we have a base
// expression and we want to pre- or append some
// conditions to it (e.g. adding "$" to the end).
// The flags are unchanged.
//
// regex is a RegExp, pre and post are strings.
extendRegExp: function(regex, pre, post){
if (pre === null || pre === undefined)
{
pre = "";
}
if(post === null || post === undefined)
{
post = "";
}
var pattern = regex.toString();
var flags = "";
// Replace the flags with empty space and store them.
// Technically, this can match incorrect flags like "gmm".
var result = pattern.match(/\/([gim]*)$/);
if (result === null) {
flags = result[0];
}
else {
flags = "";
}
// Remove the flags and slash delimiters from the regular expression.
pattern = pattern.replace(/(^\/|\/[gim]*$)/g, "");
pattern = pre + pattern + post;
return new RegExp(pattern, flags);
},
// Sets the image for a button passed to the WMD editor.
// Returns a new element with the image attached.
// Adds several style properties to the image.
//
// XXX-ANAND: Is this used anywhere?
createImage: function(img){
var imgPath = imageDirectory + img;
var elem = doc.createElement("img");
elem.className = "wmd-button";
elem.src = imgPath;
return elem;
},
// This simulates a modal dialog box and asks for the URL when you
// click the hyperlink or image buttons.
//
// text: The html for the input box.
// defaultInputText: The default value that appears in the input box.
// makeLinkMarkdown: The function which is executed when the prompt is dismissed, either via OK or Cancel
prompt: function(text, defaultInputText, makeLinkMarkdown){
// These variables need to be declared at this level since they are used
// in multiple functions.
var dialog; // The dialog box.
var background; // The background beind the dialog box.
var input; // The text box where you enter the hyperlink.
if (defaultInputText === undefined) {
defaultInputText = "";
}
// Used as a keydown event handler. Esc dismisses the prompt.
// Key code 27 is ESC.
var checkEscape = function(key){
var code = (key.charCode || key.keyCode);
if (code === 27) {
close(true);
}
};
// Dismisses the hyperlink input box.
// isCancel is true if we don't care about the input text.
// isCancel is false if we are going to keep the text.
var close = function(isCancel){
util.removeEvent(doc.body, "keydown", checkEscape);
var text = input.value;
if (isCancel){
text = null;
}
else{
// Fixes common pasting errors.
text = text.replace('http://http://', 'http://');
text = text.replace('http://https://', 'https://');
text = text.replace('http://ftp://', 'ftp://');
if (text.indexOf('http://') === -1 && text.indexOf('ftp://') === -1 && text.indexOf('https://') === -1) {
text = 'http://' + text;
}
}
dialog.parentNode.removeChild(dialog);
background.parentNode.removeChild(background);
makeLinkMarkdown(text);
return false;
};
// Creates the background behind the hyperlink text entry box.
// Most of this has been moved to CSS but the div creation and
// browser-specific hacks remain here.
var createBackground = function(){
background = doc.createElement("div");
background.className = "wmd-prompt-background";
style = background.style;
style.position = "absolute";
style.top = "0";
style.zIndex = "1000";
// Some versions of Konqueror don't support transparent colors
// so we make the whole window transparent.
//
// Is this necessary on modern konqueror browsers?
if (browser.isKonqueror){
style.backgroundColor = "transparent";
}
else if (browser.isIE){
style.filter = "alpha(opacity=50)";
}
else {
style.opacity = "0.5";
}
var pageSize = position.getPageSize();
style.height = pageSize[1] + "px";
if(browser.isIE){
style.left = doc.documentElement.scrollLeft;
style.width = doc.documentElement.clientWidth;
}
else {
style.left = "0";
style.width = "100%";
}
doc.body.appendChild(background);
};
// Create the text input box form/window.
var createDialog = function(){
// The main dialog box.
dialog = doc.createElement("div");
dialog.className = "wmd-prompt-dialog";
dialog.style.padding = "10px;";
dialog.style.position = "fixed";
dialog.style.width = "400px";
dialog.style.zIndex = "1001";
// The dialog text.
var question = doc.createElement("div");
question.innerHTML = text;
question.style.padding = "5px";
dialog.appendChild(question);
// The web form container for the text box and buttons.
var form = doc.createElement("form");
form.onsubmit = function(){ return close(false); };
style = form.style;
style.padding = "0";
style.margin = "0";
style.cssFloat = "left";
style.width = "100%";
style.textAlign = "center";
style.position = "relative";
dialog.appendChild(form);
// The input text box
input = doc.createElement("input");
input.type = "text";
input.value = defaultInputText;
style = input.style;
style.display = "block";
style.width = "80%";
style.marginLeft = style.marginRight = "auto";
form.appendChild(input);
// The ok button
var okButton = doc.createElement("input");
okButton.type = "button";
okButton.onclick = function(){ return close(false); };
okButton.value = "OK";
style = okButton.style;
style.margin = "10px";
style.display = "inline";
style.width = "7em";
// The cancel button
var cancelButton = doc.createElement("input");
cancelButton.type = "button";
cancelButton.onclick = function(){ return close(true); };
cancelButton.value = "Cancel";
style = cancelButton.style;
style.margin = "10px";
style.display = "inline";
style.width = "7em";
// The order of these buttons is different on macs.
if (/mac/.test(nav.platform.toLowerCase())) {
form.appendChild(cancelButton);
form.appendChild(okButton);
}
else {
form.appendChild(okButton);
form.appendChild(cancelButton);
}
util.addEvent(doc.body, "keydown", checkEscape);
dialog.style.top = "50%";
dialog.style.left = "50%";
dialog.style.display = "block";
if(browser.isIE_5or6){
dialog.style.position = "absolute";
dialog.style.top = doc.documentElement.scrollTop + 200 + "px";
dialog.style.left = "50%";
}
doc.body.appendChild(dialog);
// This has to be done AFTER adding the dialog to the form if you
// want it to be centered.
dialog.style.marginTop = -(position.getHeight(dialog) / 2) + "px";
dialog.style.marginLeft = -(position.getWidth(dialog) / 2) + "px";
};
createBackground();
// Why is this in a zero-length timeout?
// Is it working around a browser bug?
top.setTimeout(function(){
createDialog();
var defTextLen = defaultInputText.length;
if (input.selectionStart !== undefined) {
input.selectionStart = 0;
input.selectionEnd = defTextLen;
}
else if (input.createTextRange) {
var range = input.createTextRange();
range.collapse(false);
range.moveStart("character", -defTextLen);
range.moveEnd("character", defTextLen);
range.select();
}
input.focus();
}, 0);
},
extend: function() {
function _update(a, b) {
for (var k in b) {
a[k] = b[k];
}
return a;
}
var d = {};
for (var i=0; i < arguments.length; i++) {
_update(d, arguments[i]);
}
return d;
}
}; // }}}
var position = { // {{{
// UNFINISHED
// The assignment in the while loop makes jslint cranky.
// I'll change it to a better loop later.
getTop: function(elem, isInner){
var result = elem.offsetTop;
if (!isInner) {
while (elem = elem.offsetParent) {
result += elem.offsetTop;
}
}
return result;
},
getHeight: function (elem) {
return elem.offsetHeight || elem.scrollHeight;
},
getWidth: function (elem) {
return elem.offsetWidth || elem.scrollWidth;
},
getPageSize: function() {
var scrollWidth, scrollHeight;
var innerWidth, innerHeight;
// It's not very clear which blocks work with which browsers.
if(self.innerHeight && self.scrollMaxY){
scrollWidth = doc.body.scrollWidth;
scrollHeight = self.innerHeight + self.scrollMaxY;
}
else if(doc.body.scrollHeight > doc.body.offsetHeight){
scrollWidth = doc.body.scrollWidth;
scrollHeight = doc.body.scrollHeight;
}
else{
scrollWidth = doc.body.offsetWidth;
scrollHeight = doc.body.offsetHeight;
}
if(self.innerHeight){
// Non-IE browser
innerWidth = self.innerWidth;
innerHeight = self.innerHeight;
}
else if(doc.documentElement && doc.documentElement.clientHeight){
// Some versions of IE (IE 6 w/ a DOCTYPE declaration)
innerWidth = doc.documentElement.clientWidth;
innerHeight = doc.documentElement.clientHeight;
}
else if(doc.body){
// Other versions of IE
innerWidth = doc.body.clientWidth;
innerHeight = doc.body.clientHeight;
}
var maxWidth = Math.max(scrollWidth, innerWidth);
var maxHeight = Math.max(scrollHeight, innerHeight);
return [maxWidth, maxHeight, innerWidth, innerHeight];
}
}; // }}}
// The input textarea state/contents.
// This is used to implement undo/redo by the undo manager.
var TextareaState = function(textarea){ // {{{
// Aliases
var stateObj = this;
var inputArea = textarea;
this.init = function() {
if (!util.isVisible(inputArea)) {
return;
}
this.setInputAreaSelectionStartEnd();
this.scrollTop = inputArea.scrollTop;
if (!this.text && inputArea.selectionStart || inputArea.selectionStart === 0) {
this.text = inputArea.value;
}
}
// Sets the selected text in the input box after we've performed an
// operation.
this.setInputAreaSelection = function(){
if (!util.isVisible(inputArea)) {
return;
}
if (inputArea.selectionStart !== undefined && !browser.isOpera) {
inputArea.focus();
inputArea.selectionStart = stateObj.start;
inputArea.selectionEnd = stateObj.end;
inputArea.scrollTop = stateObj.scrollTop;
}
else if (doc.selection) {
if (doc.activeElement && doc.activeElement !== inputArea) {
return;
}
inputArea.focus();
var range = inputArea.createTextRange();
range.moveStart("character", -inputArea.value.length);
range.moveEnd("character", -inputArea.value.length);
range.moveEnd("character", stateObj.end);
range.moveStart("character", stateObj.start);
range.select();
}
};
this.setInputAreaSelectionStartEnd = function(){
if (inputArea.selectionStart || inputArea.selectionStart === 0) {
stateObj.start = inputArea.selectionStart;
stateObj.end = inputArea.selectionEnd;
}
else if (doc.selection) {
stateObj.text = util.fixEolChars(inputArea.value);
// IE loses the selection in the textarea when buttons are
// clicked. On IE we cache the selection and set a flag
// which we check for here.
var range;
if(wmd.ieRetardedClick && wmd.ieCachedRange) {
range = wmd.ieCachedRange;
wmd.ieRetardedClick = false;
}
else {
range = doc.selection.createRange();
}
var fixedRange = util.fixEolChars(range.text);
var marker = "\x07";
var markedRange = marker + fixedRange + marker;
range.text = markedRange;
var inputText = util.fixEolChars(inputArea.value);
range.moveStart("character", -markedRange.length);
range.text = fixedRange;
stateObj.start = inputText.indexOf(marker);
stateObj.end = inputText.lastIndexOf(marker) - marker.length;
var len = stateObj.text.length - util.fixEolChars(inputArea.value).length;
if (len) {
range.moveStart("character", -fixedRange.length);
while (len--) {
fixedRange += "\n";
stateObj.end += 1;
}
range.text = fixedRange;
}
this.setInputAreaSelection();
}
};
// Restore this state into the input area.
this.restore = function(){
if (stateObj.text != undefined && stateObj.text != inputArea.value) {
inputArea.value = stateObj.text;
}
this.setInputAreaSelection();
inputArea.scrollTop = stateObj.scrollTop;
};
// Gets a collection of HTML chunks from the inptut textarea.
this.getChunks = function(){
var chunk = new Chunks();
chunk.before = util.fixEolChars(stateObj.text.substring(0, stateObj.start));
chunk.startTag = "";
chunk.selection = util.fixEolChars(stateObj.text.substring(stateObj.start, stateObj.end));
chunk.endTag = "";
chunk.after = util.fixEolChars(stateObj.text.substring(stateObj.end));
chunk.scrollTop = stateObj.scrollTop;
return chunk;
};
// Sets the TextareaState properties given a chunk of markdown.
this.setChunks = function(chunk){
chunk.before = chunk.before + chunk.startTag;
chunk.after = chunk.endTag + chunk.after;
if (browser.isOpera) {
chunk.before = chunk.before.replace(/\n/g, "\r\n");
chunk.selection = chunk.selection.replace(/\n/g, "\r\n");
chunk.after = chunk.after.replace(/\n/g, "\r\n");
}
this.start = chunk.before.length;
this.end = chunk.before.length + chunk.selection.length;
this.text = chunk.before + chunk.selection + chunk.after;
this.scrollTop = chunk.scrollTop;
};
this.init();
}; // }}}
// Chunks {{{
// before: contains all the text in the input box BEFORE the selection.
// after: contains all the text in the input box AFTER the selection.
var Chunks = function(){
};
// startRegex: a regular expression to find the start tag
// endRegex: a regular expresssion to find the end tag
Chunks.prototype.findTags = function(startRegex, endRegex){
var chunkObj = this;
var regex;
if (startRegex) {
regex = util.extendRegExp(startRegex, "", "$");
this.before = this.before.replace(regex,
function(match){
chunkObj.startTag = chunkObj.startTag + match;
return "";
});
regex = util.extendRegExp(startRegex, "^", "");
this.selection = this.selection.replace(regex,
function(match){
chunkObj.startTag = chunkObj.startTag + match;
return "";
});
}
if (endRegex) {
regex = util.extendRegExp(endRegex, "", "$");
this.selection = this.selection.replace(regex,
function(match){
chunkObj.endTag = match + chunkObj.endTag;
return "";
});
regex = util.extendRegExp(endRegex, "^", "");
this.after = this.after.replace(regex,
function(match){
chunkObj.endTag = match + chunkObj.endTag;
return "";
});
}
};
// If remove is false, the whitespace is transferred
// to the before/after regions.
//
// If remove is true, the whitespace disappears.
Chunks.prototype.trimWhitespace = function(remove){
this.selection = this.selection.replace(/^(\s*)/, "");
if (!remove) {
this.before += re.$1;
}
this.selection = this.selection.replace(/(\s*)$/, "");
if (!remove) {
this.after = re.$1 + this.after;
}
};
Chunks.prototype.addBlankLines = function(nLinesBefore, nLinesAfter, findExtraNewlines){
if (nLinesBefore === undefined) {
nLinesBefore = 1;
}
if (nLinesAfter === undefined) {
nLinesAfter = 1;
}
nLinesBefore++;
nLinesAfter++;
var regexText;
var replacementText;
this.selection = this.selection.replace(/(^\n*)/, "");
this.startTag = this.startTag + re.$1;
this.selection = this.selection.replace(/(\n*$)/, "");
this.endTag = this.endTag + re.$1;
this.startTag = this.startTag.replace(/(^\n*)/, "");
this.before = this.before + re.$1;
this.endTag = this.endTag.replace(/(\n*$)/, "");
this.after = this.after + re.$1;
if (this.before) {
regexText = replacementText = "";
while (nLinesBefore--) {
regexText += "\\n?";
replacementText += "\n";
}
if (findExtraNewlines) {
regexText = "\\n*";
}
this.before = this.before.replace(new re(regexText + "$", ""), replacementText);
}
if (this.after) {
regexText = replacementText = "";
while (nLinesAfter--) {
regexText += "\\n?";
replacementText += "\n";
}
if (findExtraNewlines) {
regexText = "\\n*";
}
this.after = this.after.replace(new re(regexText, ""), replacementText);
}
};
// }}} - END CHUNKS
// Watches the input textarea, polling at an interval and runs
// a callback function if anything has changed.
var InputPoller = function(textarea, callback, interval){ // {{{
var pollerObj = this;
var inputArea = textarea;
// Stored start, end and text. Used to see if there are changes to the input.
var lastStart;
var lastEnd;
var markdown;
var killHandle; // Used to cancel monitoring on destruction.
// Checks to see if anything has changed in the textarea.
// If so, it runs the callback.
this.tick = function(){
if (!util.isVisible(inputArea)) {
return;
}
// Update the selection start and end, text.
if (inputArea.selectionStart || inputArea.selectionStart === 0) {
var start = inputArea.selectionStart;
var end = inputArea.selectionEnd;
if (start != lastStart || end != lastEnd) {
lastStart = start;
lastEnd = end;
if (markdown != inputArea.value) {
markdown = inputArea.value;
return true;
}
}
}
return false;
};
var doTickCallback = function(){
if (!util.isVisible(inputArea)) {
return;
}
// If anything has changed, call the function.
if (pollerObj.tick()) {
callback();
}
};
// Set how often we poll the textarea for changes.
var assignInterval = function(){
killHandle = top.setInterval(doTickCallback, interval);
};
this.destroy = function(){
top.clearInterval(killHandle);
};
assignInterval();
}; // }}}
var PreviewManager = function(wmd){ // {{{
var managerObj = this;
var converter;
var poller;
var timeout;
var elapsedTime;
var oldInputText;
var htmlOut;
var maxDelay = 3000;
var startType = "delayed"; // The other legal value is "manual"
// Adds event listeners to elements and creates the input poller.
var setupEvents = function(inputElem, listener){
util.addEvent(inputElem, "input", listener);
inputElem.onpaste = listener;
inputElem.ondrop = listener;
util.addEvent(inputElem, "keypress", listener);
util.addEvent(inputElem, "keydown", listener);
// previewPollInterval is set at the top of this file.
poller = new InputPoller(wmd.panels.input, listener, wmd.options.previewPollInterval);
};
var getDocScrollTop = function(){
var result = 0;
if (top.innerHeight) {
result = top.pageYOffset;
}
else
if (doc.documentElement && doc.documentElement.scrollTop) {
result = doc.documentElement.scrollTop;
}
else
if (doc.body) {
result = doc.body.scrollTop;
}
return result;
};
var sanitizeHtmlAttrs = function(htmlText) {
var allowedAttrs = [
'alt', 'colspan', 'height', 'href', 'rowspan', 'src', 'srcset', 'target', 'title', 'width',
];
// parse the html and remove any unallowed attrs
var parser = new DOMParser();
var doc = parser.parseFromString(htmlText, 'text/html');
// domwalk the dom
/**
* @param {Element} node
*/
var walk = function(node) {
var attrs = node.attributes;
var toRemove = [];
for (var i = 0; i < attrs.length; i++) {
var attr = attrs[i];
if (!allowedAttrs.includes(attr.name)) {
toRemove.push(attr.name);
}
}
for (var i = 0; i < toRemove.length; i++) {
node.removeAttribute(toRemove[i]);
}
};
var walker = document.createTreeWalker(doc, NodeFilter.SHOW_ELEMENT, null, false);
while (walker.nextNode()) {
walk(walker.currentNode);
}
// return the sanitized html
return doc.body.innerHTML;
};
var makePreviewHtml = function(){
// If there are no registered preview and output panels
// there is nothing to do.
if (!wmd.panels.preview && !wmd.panels.output) {
return;
}
var text = wmd.panels.input.value;
if (text && text == oldInputText) {
return; // Input text hasn't changed.
}
else {
oldInputText = text;
}
var prevTime = new Date().getTime();
if (!converter && wmd.showdown) {
converter = new wmd.showdown.converter();
}
if (converter) {
text = converter.makeHtml(text);
}
// Calculate the processing time of the HTML creation.
// It's used as the delay time in the event listener.
var currTime = new Date().getTime();
elapsedTime = currTime - prevTime;
pushPreviewHtml(text);
htmlOut = text;
};
// setTimeout is already used. Used as an event listener.
var applyTimeout = function(){
if (timeout) {
top.clearTimeout(timeout);
timeout = undefined;
}
if (startType !== "manual") {
var delay = 0;
if (startType === "delayed") {
delay = elapsedTime;
}
if (delay > maxDelay) {
delay = maxDelay;
}
timeout = top.setTimeout(makePreviewHtml, delay);
}
};
var getScaleFactor = function(panel){
if (panel.scrollHeight <= panel.clientHeight) {
return 1;
}
return panel.scrollTop / (panel.scrollHeight - panel.clientHeight);
};
var setPanelScrollTops = function(){
if (wmd.panels.preview) {
wmd.panels.preview.scrollTop = (wmd.panels.preview.scrollHeight - wmd.panels.preview.clientHeight) * getScaleFactor(wmd.panels.preview);
;
}
if (wmd.panels.output) {
wmd.panels.output.scrollTop = (wmd.panels.output.scrollHeight - wmd.panels.output.clientHeight) * getScaleFactor(wmd.panels.output);
;
}
};
this.refresh = function(requiresRefresh){
if (requiresRefresh) {
oldInputText = "";
makePreviewHtml();
}
else {
applyTimeout();
}
};