forked from wheresmehat/CodeRun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabIndent.js
250 lines (222 loc) · 7.95 KB
/
tabIndent.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
tabIndent = {
version: '0.1.8',
config: {
tab: ' '
},
events: {
keydown: function(e) {
var tab = tabIndent.config.tab;
var tabWidth = tab.length;
if (e.keyCode === 9) {
e.preventDefault();
var currentStart = this.selectionStart,
currentEnd = this.selectionEnd;
if (e.shiftKey === false) {
// Normal Tab Behaviour
if (!tabIndent.isMultiLine(this)) {
// Add tab before selection, maintain highlighted text selection
this.value = this.value.slice(0, currentStart) + tab + this.value.slice(currentStart);
this.selectionStart = currentStart + tabWidth;
this.selectionEnd = currentEnd + tabWidth;
} else {
// Iterating through the startIndices, if the index falls within selectionStart and selectionEnd, indent it there.
var startIndices = tabIndent.findStartIndices(this),
l = startIndices.length,
newStart = undefined,
newEnd = undefined,
affectedRows = 0;
while(l--) {
var lowerBound = startIndices[l];
if (startIndices[l+1] && currentStart != startIndices[l+1]) lowerBound = startIndices[l+1];
if (lowerBound >= currentStart && startIndices[l] < currentEnd) {
this.value = this.value.slice(0, startIndices[l]) + tab + this.value.slice(startIndices[l]);
newStart = startIndices[l];
if (!newEnd) newEnd = (startIndices[l+1] ? startIndices[l+1] - 1 : 'end');
affectedRows++;
}
}
this.selectionStart = newStart;
this.selectionEnd = (newEnd !== 'end' ? newEnd + (tabWidth * affectedRows) : this.value.length);
}
} else {
// Shift-Tab Behaviour
if (!tabIndent.isMultiLine(this)) {
if (this.value.substr(currentStart - tabWidth, tabWidth) == tab) {
// If there's a tab before the selectionStart, remove it
this.value = this.value.substr(0, currentStart - tabWidth) + this.value.substr(currentStart);
this.selectionStart = currentStart - tabWidth;
this.selectionEnd = currentEnd - tabWidth;
} else if (this.value.substr(currentStart - 1, 1) == "\n" && this.value.substr(currentStart, tabWidth) == tab) {
// However, if the selection is at the start of the line, and the first character is a tab, remove it
this.value = this.value.substring(0, currentStart) + this.value.substr(currentStart + tabWidth);
this.selectionStart = currentStart;
this.selectionEnd = currentEnd - tabWidth;
}
} else {
// Iterating through the startIndices, if the index falls within selectionStart and selectionEnd, remove an indent from that row
var startIndices = tabIndent.findStartIndices(this),
l = startIndices.length,
newStart = undefined,
newEnd = undefined,
affectedRows = 0;
while(l--) {
var lowerBound = startIndices[l];
if (startIndices[l+1] && currentStart != startIndices[l+1]) lowerBound = startIndices[l+1];
if (lowerBound >= currentStart && startIndices[l] < currentEnd) {
if (this.value.substr(startIndices[l], tabWidth) == tab) {
// Remove a tab
this.value = this.value.slice(0, startIndices[l]) + this.value.slice(startIndices[l] + tabWidth);
affectedRows++;
} else {} // Do nothing
newStart = startIndices[l];
if (!newEnd) newEnd = (startIndices[l+1] ? startIndices[l+1] - 1 : 'end');
}
}
this.selectionStart = newStart;
this.selectionEnd = (newEnd !== 'end' ? newEnd - (affectedRows * tabWidth) : this.value.length);
}
}
} else if (e.keyCode === 27) { // Esc
tabIndent.events.disable(e);
} else if (e.keyCode === 13 && e.shiftKey === false) { // Enter
var self = tabIndent,
cursorPos = this.selectionStart,
startIndices = self.findStartIndices(this),
numStartIndices = startIndices.length,
startIndex = 0,
endIndex = 0,
tabMatch = new RegExp("^" + tab.replace('\t', '\\t').replace(/ /g, '\\s') + "+", 'g'),
lineText = '';
tabs = null;
for(var x=0;x<numStartIndices;x++) {
if (startIndices[x+1] && (cursorPos >= startIndices[x]) && (cursorPos < startIndices[x+1])) {
startIndex = startIndices[x];
endIndex = startIndices[x+1] - 1;
break;
} else {
startIndex = startIndices[numStartIndices-1];
endIndex = this.value.length;
}
}
lineText = this.value.slice(startIndex, endIndex);
tabs = lineText.match(tabMatch);
if (tabs !== null) {
e.preventDefault();
var indentText = tabs[0];
var indentWidth = indentText.length;
var inLinePos = cursorPos - startIndex;
if (indentWidth > inLinePos) {
indentWidth = inLinePos;
indentText = indentText.slice(0, inLinePos);
}
this.value = this.value.slice(0, cursorPos) + "\n" + indentText + this.value.slice(cursorPos);
this.selectionStart = cursorPos + indentWidth + 1;
this.selectionEnd = this.selectionStart;
}
}
},
disable: function(e) {
var events = this;
// Temporarily suspend the main tabIndent event
tabIndent.remove(e.target);
},
focus: function() {
var self = tabIndent,
el = this,
delayedRefocus = setTimeout(function() {
var classes = (el.getAttribute('class') || '').split(' '),
contains = classes.indexOf('tabIndent');
el.addEventListener('keydown', self.events.keydown);
if (contains !== -1) classes.splice(contains, 1);
classes.push('tabIndent-rendered');
el.setAttribute('class', classes.join(' '));
el.removeEventListener('focus', self.events.keydown);
}, 500);
// If they were just tabbing through the input, let them continue unimpeded
el.addEventListener('blur', function b() {
clearTimeout(delayedRefocus);
el.removeEventListener('blur', b);
});
}
},
render: function(el) {
var self = this;
if (el.nodeName === 'TEXTAREA') {
el.addEventListener('focus', self.events.focus);
el.addEventListener('blur', function b(e) {
self.events.disable(e);
});
}
},
renderAll: function() {
// Find all elements with the tabIndent class
var textareas = document.getElementsByTagName('textarea'),
t = textareas.length,
contains = -1,
classes = [],
el = undefined;
while(t--) {
classes = (textareas[t].getAttribute('class') || '').split(' ');
contains = classes.indexOf('tabIndent');
if (contains !== -1) {
el = textareas[t];
this.render(el);
}
contains = -1;
classes = [];
el = undefined;
}
},
remove: function(el) {
if (el.nodeName === 'TEXTAREA') {
var classes = (el.getAttribute('class') || '').split(' '),
contains = classes.indexOf('tabIndent-rendered');
if (contains !== -1) {
el.removeEventListener('keydown', this.events.keydown);
el.style.backgroundImage = '';
classes.splice(contains, 1);
classes.push('tabIndent');
el.setAttribute('class', (classes.length > 1 ? classes.join(' ') : classes[0]));
}
}
},
removeAll: function() {
// Find all elements with the tabIndent class
var textareas = document.getElementsByTagName('textarea'),
t = textareas.length,
contains = -1,
classes = [],
el = undefined;
while(t--) {
classes = (textareas[t].getAttribute('class') || '').split(' ');
contains = classes.indexOf('tabIndent-rendered');
if (contains !== -1) {
el = textareas[t];
this.remove(el);
}
contains = -1;
classes = [];
el = undefined;
}
},
isMultiLine: function(el) {
// Extract the selection
var snippet = el.value.slice(el.selectionStart, el.selectionEnd),
nlRegex = new RegExp(/\n/);
if (nlRegex.test(snippet)) return true;
else return false;
},
findStartIndices: function(el) {
var text = el.value,
startIndices = [],
offset = 0;
while(text.match(/\n/) && text.match(/\n/).length > 0) {
offset = (startIndices.length > 0 ? startIndices[startIndices.length - 1] : 0);
var lineEnd = text.search("\n");
startIndices.push(lineEnd + offset + 1);
text = text.substring(lineEnd + 1);
}
startIndices.unshift(0);
return startIndices;
}
}