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
|
//==============================================================================
// Markdown tags to replace
//==============================================================================
var markdownTags = {
"bold": ["**", "**"],
"italic": ["*", "*"],
"header": ["## ", "\n"],
"link": ["[", "](href)"],
"image": ["![", "](href)"],
"code": ["\n~~~\n", "\n~~~\n"],
"quote": ["\n> ", ""],
"list_ul": ["* ", ""],
"list_ol": ["1. ", ""]
};
//==============================================================================
// Set caret position in editor
//==============================================================================
function setCaretPosition(position) {
window.setTimeout(function() {
document.getElementById("content-editor").focus();
document.getElementById("content-editor").setSelectionRange(position, position);
}, 50);
}
//==============================================================================
// Insert markdown around text in editor
//==============================================================================
function markdownReplace(tagname) {
var element = document.activeElement;
if(element.nodeName === 'TEXTAREA') {
var selectionStart = element.selectionStart;
var selectionEnd = element.selectionEnd;
var selectedText = element.value.substring(selectionStart, selectionEnd);
var content = element.value;
element.value = content.slice(0, selectionStart) + markdownTags[tagname][0] + selectedText + markdownTags[tagname][1] + content.slice(selectionEnd);
setCaretPosition(selectionStart + markdownTags[tagname][0].length + selectedText.length + markdownTags[tagname][1].length);
}
}
//==============================================================================
// Insert emoticon after cursor in editor
//==============================================================================
function emoticonReplace(emoticon) {
var element = document.activeElement;
if(element.nodeName === 'TEXTAREA') {
var selectionStart = element.selectionStart;
var selectionEnd = element.selectionEnd;
var content = element.value;
element.value = content.slice(0, selectionStart) + emoticon + content.slice(selectionEnd);
setCaretPosition(selectionStart + emoticon.length);
}
}
//==============================================================================
// Keep server-side session active if the user is writing a long text
//==============================================================================
addEventListener("DOMContentLoaded", function() {
setInterval(function() {
var Request = new XMLHttpRequest();
Request.open("HEAD", "", true);
Request.send();
}, 300000);
}, false);
//==============================================================================
// Insert tab indent into editor if <tab> is pressed
//==============================================================================
addEventListener("DOMContentLoaded", function() {
if(document.getElementById("content-editor")) {
var element = document.getElementById("content-editor");
element.addEventListener('keydown', function(e) {
if(e.keyCode === 9 && !e.ctrlKey && !e.shiftKey) {
var selectionStart = element.selectionStart;
var selectionEnd = element.selectionEnd;
var content = element.value;
element.value = content.substring(0, selectionStart) + "\t" + content.substring(selectionEnd);
setCaretPosition(selectionStart + 1);
e.preventDefault();
}
}, false);
}
}, false);
|