aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/rsrc/main.js
blob: 842ef4709a79b1956984af34d9c647806dcefcd8 (plain)
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
//==============================================================================
// Elements which contains the location of the previous and next site
//==============================================================================
const prev = document.getElementById("prev-site");
const next = document.getElementById("next-site");

//==============================================================================
// Handle arrow keys and change the location to the desired direction
//==============================================================================
document.addEventListener("keyup", function(e) {
	if(!e.ctrlKey && !e.shiftKey && !e.altKey) {
		(e.keyCode === 37 && prev) && (window.location.href = prev.getAttribute("href"));
		(e.keyCode === 39 && next) && (window.location.href = next.getAttribute("href"));
	}
}, false);

//==============================================================================
// Markdown tags to replace
//==============================================================================
const markdownTags = {
	"bold":    ["**", "**"],
	"italic":  ["*", "*"],
	"heading": ["## ", "\n"],
	"link":    ["[", "](href)"],
	"image":   ["![", "](href)"],
	"code":    ["\n~~~\n", "\n~~~\n"],
	"quote":   ["\n> ", ""],
	"list_ul": ["* ", ""],
	"list_ol": ["1. ", ""]
};

//==============================================================================
// Timeout function for delayed execution of code
//==============================================================================
function delayed(callback) {
	window.setTimeout(callback, 20);
}

//==============================================================================
// Set caret position in editor
//==============================================================================
function setCaretPosition(position) {
	document.getElementById("content-editor").setSelectionRange(position, position);
	document.getElementById("content-editor").focus();
}

//==============================================================================
// Insert emoticon after cursor in editor
//==============================================================================
function insertEmoticon(target, emoticon) {
	const selectionStart = target.selectionStart;
	const selectionEnd = target.selectionEnd;

	const content = target.value;
	target.value = content.slice(0, selectionStart) + emoticon + content.slice(selectionEnd);

	delayed(function() {
		setCaretPosition(selectionStart + emoticon.length);
	});
}

//==============================================================================
// Insert markdown around text in editor
//==============================================================================
function insertMarkdown(target, markdown) {
	const selectionStart = target.selectionStart;
	const selectionEnd = target.selectionEnd;

	const selectedText = target.value.substring(selectionStart, selectionEnd);

	const content = target.value;
	target.value = content.slice(0, selectionStart) + markdownTags[markdown][0] + selectedText + markdownTags[markdown][1] + content.slice(selectionEnd);

	delayed(function() {
		setCaretPosition(selectionStart + markdownTags[markdown][0].length + selectedText.length + markdownTags[markdown][1].length);
	});
}

//==============================================================================
// Keep server-side session active if the user is writing a long text
//==============================================================================
setInterval(function() {
	const Request = new XMLHttpRequest();
	Request.open("HEAD", "", true);
	Request.send();
}, 300000);

//==============================================================================
// Confirmation message for delete button
//==============================================================================
if(document.getElementById("delete-button")) {
	document.getElementById("delete-button").onclick = function(e) {
		return confirm(e.target.getAttribute("data-text"));
	};
}

//==============================================================================
// Insert or remove tab indent in editor if [<shift>+]<tab> is pressed
//==============================================================================
(function() {
	if(document.getElementById("content-editor")) {
		const element = document.getElementById("content-editor");
		element.addEventListener("keydown", function(e) {
			if(e.keyCode === 9 && !e.ctrlKey) {
				const selectionStart = element.selectionStart;
				const selectionEnd = element.selectionEnd;

				const content = element.value;

				if(e.shiftKey) {
					if(content.substring(selectionStart, selectionStart -1) === "\t") {
						element.value = content.substring(0, selectionStart - 1) + content.substring(selectionEnd);
						setCaretPosition(selectionStart - 1);
					}
				}

				else {
					element.value = content.substring(0, selectionStart) + "\t" + content.substring(selectionEnd);
					setCaretPosition(selectionStart + 1);
				}

				e.preventDefault();
			}
		}, false);
	}
})();

//==============================================================================
// Emoticon button list
//==============================================================================
(function() {
	if(document.getElementById("emoticon-list")) {
		const list = document.getElementById("emoticon-list");
		const node = document.getElementById("content-editor");
		const items = list.getElementsByTagName("li");

		for(let i = 0; i < items.length; ++i) {
			items[i].onmousedown = function(e) {
				insertEmoticon(node, e.target.getAttribute("data-emoticon"));
			};
		}
	}
})();

//==============================================================================
// Markdown button list
//==============================================================================
(function() {
	if(document.getElementById("markdown-list")) {
		const list = document.getElementById("markdown-list");
		const node = document.getElementById("content-editor");
		const items = list.getElementsByTagName("li");

		for(let i = 0; i < items.length; ++i) {
			items[i].onmousedown = function(e) {
				insertMarkdown(node, e.target.getAttribute("data-markdown"));
			};
		}
	}
})();