This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathsnippet-expansion.js
380 lines (326 loc) · 14.1 KB
/
snippet-expansion.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
const {CompositeDisposable, Range, Point} = require('atom')
module.exports = class SnippetExpansion {
constructor(snippet, editor, cursor, snippets) {
this.settingTabStop = false
this.isIgnoringBufferChanges = false
this.onUndoOrRedo = this.onUndoOrRedo.bind(this)
this.snippet = snippet
this.editor = editor
this.cursor = cursor
this.snippets = snippets
this.subscriptions = new CompositeDisposable
this.selections = [this.cursor.selection]
// Holds the `Insertion` instance corresponding to each tab stop marker. We
// don't use the tab stop's own numbering here; we renumber them
// consecutively starting at 0 in the order in which they should be
// visited. So `$1` (if present) will always be at index `0`, and `$0` (if
// present) will always be the last index.
this.insertionsByIndex = []
// Each insertion has a corresponding marker. We keep them in a map so we
// can easily reassociate an insertion with its new marker when we destroy
// its old one.
this.markersForInsertions = new Map()
// The index of the active tab stop.
this.tabStopIndex = null
// If, say, tab stop 4's placeholder references tab stop 2, then tab stop
// 4's insertion goes into this map as a "related" insertion to tab stop 2.
// We need to keep track of this because tab stop 4's marker will need to
// be replaced while 2 is the active index.
this.relatedInsertionsByIndex = new Map()
const startPosition = this.cursor.selection.getBufferRange().start
let {body, tabStopList} = this.snippet
let tabStops = tabStopList.toArray()
let indent = this.editor.lineTextForBufferRow(startPosition.row).match(/^\s*/)[0]
if (this.snippet.lineCount > 1 && indent) {
// Add proper leading indentation to the snippet
body = body.replace(/\n/g, `\n${indent}`)
tabStops = tabStops.map(tabStop => tabStop.copyWithIndent(indent))
}
this.editor.transact(() => {
this.ignoringBufferChanges(() => {
this.editor.transact(() => {
// Insert the snippet body at the cursor.
const newRange = this.cursor.selection.insertText(body, {autoIndent: false})
if (this.snippet.tabStopList.length > 0) {
// Listen for cursor changes so we can decide whether to keep the
// snippet active or terminate it.
this.subscriptions.add(this.cursor.onDidChangePosition(event => this.cursorMoved(event)))
this.subscriptions.add(this.cursor.onDidDestroy(() => this.cursorDestroyed()))
this.placeTabStopMarkers(startPosition, tabStops)
this.snippets.addExpansion(this.editor, this)
this.editor.normalizeTabsInBufferRange(newRange)
}
})
})
})
}
// Set a flag on undo or redo so that we know not to re-apply transforms.
// They're already accounted for in the history.
onUndoOrRedo (isUndo) {
this.isUndoingOrRedoing = true
}
cursorMoved ({oldBufferPosition, newBufferPosition, textChanged}) {
if (this.settingTabStop || textChanged) { return }
const insertionAtCursor = this.insertionsByIndex[this.tabStopIndex].find(insertion => {
let marker = this.markersForInsertions.get(insertion)
return marker.getBufferRange().containsPoint(newBufferPosition)
})
if (insertionAtCursor && !insertionAtCursor.isTransformation()) { return }
this.destroy()
}
cursorDestroyed () { if (!this.settingTabStop) { this.destroy() } }
textChanged (event) {
if (this.isIgnoringBufferChanges) { return }
// Don't try to alter the buffer if all we're doing is restoring a
// snapshot from history.
if (this.isUndoingOrRedoing) {
this.isUndoingOrRedoing = false
return
}
this.applyTransformations(this.tabStopIndex)
}
ignoringBufferChanges (callback) {
const wasIgnoringBufferChanges = this.isIgnoringBufferChanges
this.isIgnoringBufferChanges = true
callback()
this.isIgnoringBufferChanges = wasIgnoringBufferChanges
}
applyAllTransformations () {
this.editor.transact(() => {
this.insertionsByIndex.forEach((insertion, index) =>
this.applyTransformations(index))
})
}
applyTransformations (tabStopIndex) {
const insertions = [...this.insertionsByIndex[tabStopIndex]]
if (insertions.length === 0) { return }
const primaryInsertion = insertions.shift()
const primaryRange = this.markersForInsertions.get(primaryInsertion).getBufferRange()
const inputText = this.editor.getTextInBufferRange(primaryRange)
this.ignoringBufferChanges(() => {
for (const [index, insertion] of insertions.entries()) {
// Don't transform mirrored tab stops. They have their own cursors, so
// mirroring happens automatically.
if (!insertion.isTransformation()) { continue }
var marker = this.markersForInsertions.get(insertion)
var range = marker.getBufferRange()
var outputText = insertion.transform(inputText)
this.editor.transact(() => this.editor.setTextInBufferRange(range, outputText))
// Manually adjust the marker's range rather than rely on its internal
// heuristics. (We don't have to worry about whether it's been
// invalidated because setting its buffer range implicitly marks it as
// valid again.)
const newRange = new Range(
range.start,
range.start.traverse(new Point(0, outputText.length))
)
marker.setBufferRange(newRange)
}
})
}
placeTabStopMarkers (startPosition, tabStops) {
// Tab stops within a snippet refer to one another by their external index
// (1 for $1, 3 for $3, etc.). We respect the order of these tab stops, but
// we renumber them starting at 0 and using consecutive numbers.
//
// Luckily, we don't need to convert between the two numbering systems very
// often. But we do have to build a map from external index to our internal
// index. We do this in a separate loop so that the table is complete
// before we need to consult it in the following loop.
const indexTable = {}
for (let [index, tabStop] of tabStops.entries()) {
indexTable[tabStop.index] = index
}
for (let [index, tabStop] of tabStops.entries()) {
const {insertions} = tabStop
if (!tabStop.isValid()) { continue }
for (const insertion of insertions) {
const {range} = insertion
const {start, end} = range
let references = null
if (insertion.references) {
references = insertion.references.map(external => indexTable[external])
}
// Since this method is called only once at the beginning of a snippet expansion, we know that 0 is about to be the active tab stop.
const shouldBeInclusive = (index === 0) || (references && references.includes(0))
const marker = this.getMarkerLayer(this.editor).markBufferRange([
startPosition.traverse(start),
startPosition.traverse(end)
], { exclusive: !shouldBeInclusive })
// Now that we've created these markers, we need to store them in a
// data structure because they'll need to be deleted and re-created
// when their exclusivity changes.
this.markersForInsertions.set(insertion, marker)
if (references) {
const relatedInsertions = this.relatedInsertionsByIndex.get(index) || []
relatedInsertions.push(insertion)
this.relatedInsertionsByIndex.set(index, relatedInsertions)
}
}
this.insertionsByIndex[index] = insertions
}
this.setTabStopIndex(0)
this.applyAllTransformations()
}
// When two insertion markers are directly adjacent to one another, and the
// cursor is placed right at the border between them, the marker that should
// "claim" the newly typed content will vary based on context.
//
// All else being equal, that content should get added to the marker (if any)
// whose tab stop is active, or else the marker whose tab stop's placeholder
// references an active tab stop. The `exclusive` setting on a marker
// controls whether that marker grows to include content added at its edge.
//
// So we need to revisit the markers whenever the active tab stop changes,
// figure out which ones need to be touched, and replace them with markers
// that have the settings we need.
adjustTabStopMarkers (oldIndex, newIndex) {
// Take all the insertions whose markers were made inclusive when they
// became active and restore their original marker settings.
const insertionsForOldIndex = [
...this.insertionsByIndex[oldIndex],
...(this.relatedInsertionsByIndex.get(oldIndex) || [])
]
for (let insertion of insertionsForOldIndex) {
this.replaceMarkerForInsertion(insertion, {exclusive: true})
}
// Take all the insertions belonging to the newly active tab stop (and all
// insertions whose placeholders reference the newly active tab stop) and
// change their markers to be inclusive.
const insertionsForNewIndex = [
...this.insertionsByIndex[newIndex],
...(this.relatedInsertionsByIndex.get(newIndex) || [])
]
for (let insertion of insertionsForNewIndex) {
this.replaceMarkerForInsertion(insertion, {exclusive: false})
}
}
replaceMarkerForInsertion (insertion, settings) {
const marker = this.markersForInsertions.get(insertion)
// If the marker is invalid or destroyed, return it as-is. Other methods
// need to know if a marker has been invalidated or destroyed, and we have
// no need to change the settings on such markers anyway.
if (!marker.isValid() || marker.isDestroyed()) {
return marker
}
// Otherwise, create a new marker with an identical range and the specified
// settings.
const range = marker.getBufferRange()
const replacement = this.getMarkerLayer(this.editor).markBufferRange(range, settings)
marker.destroy()
this.markersForInsertions.set(insertion, replacement)
return replacement
}
goToNextTabStop () {
const nextIndex = this.tabStopIndex + 1
if (nextIndex < this.insertionsByIndex.length) {
if (this.setTabStopIndex(nextIndex)) {
return true
} else {
return this.goToNextTabStop()
}
} else {
// The user has tabbed past the last tab stop. If the last tab stop is a
// $0, we shouldn't move the cursor any further.
if (this.snippet.tabStopList.hasEndStop) {
this.destroy()
return false
} else {
const succeeded = this.goToEndOfLastTabStop()
this.destroy()
return succeeded
}
}
}
goToPreviousTabStop () {
if (this.tabStopIndex > 0) { this.setTabStopIndex(this.tabStopIndex - 1) }
}
setTabStopIndex (newIndex) {
const oldIndex = this.tabStopIndex
this.tabStopIndex = newIndex
// Set a flag before moving any selections so that our change handlers know
// that the movements were initiated by us.
this.settingTabStop = true
// Keep track of whether we placed any selections or cursors.
let markerSelected = false
const insertions = this.insertionsByIndex[this.tabStopIndex]
if (insertions.length === 0) { return false }
const ranges = []
this.hasTransforms = false
// Go through the active tab stop's markers to figure out where to place
// cursors and/or selections.
for (const insertion of insertions) {
const marker = this.markersForInsertions.get(insertion)
if (marker.isDestroyed()) { continue }
if (!marker.isValid()) { continue }
if (insertion.isTransformation()) {
// Set a flag for later, but skip transformation insertions because
// they don't get their own cursors.
this.hasTransforms = true
continue
}
ranges.push(marker.getBufferRange())
}
if (ranges.length > 0) {
// We have new selections to apply. Reuse existing selections if
// possible, destroying the unused ones if we already have too many.
for (const selection of this.selections.slice(ranges.length)) { selection.destroy() }
this.selections = this.selections.slice(0, ranges.length)
for (let i = 0; i < ranges.length; i++) {
const range = ranges[i]
if (this.selections[i]) {
this.selections[i].setBufferRange(range)
} else {
const newSelection = this.editor.addSelectionForBufferRange(range)
this.subscriptions.add(newSelection.cursor.onDidChangePosition(event => this.cursorMoved(event)))
this.subscriptions.add(newSelection.cursor.onDidDestroy(() => this.cursorDestroyed()))
this.selections.push(newSelection)
}
}
// We placed at least one selection, so this tab stop was successfully
// set.
markerSelected = true
}
this.settingTabStop = false
// If this snippet has at least one transform, we need to observe changes
// made to the editor so that we can update the transformed tab stops.
if (this.hasTransforms) {
this.snippets.observeEditor(this.editor)
} else {
this.snippets.stopObservingEditor(this.editor)
}
if (oldIndex !== null) {
this.adjustTabStopMarkers(oldIndex, newIndex)
}
return markerSelected
}
goToEndOfLastTabStop () {
const size = this.insertionsByIndex.length
if (size === 0) { return }
const insertions = this.insertionsByIndex[size - 1]
if (insertions.length === 0) { return }
const lastMarker = this.markersForInsertions.get(insertions[insertions.length - 1])
if (lastMarker.isDestroyed()) {
return false
} else {
this.seditor.setCursorBufferPosition(lastMarker.getEndBufferPosition())
return true
}
}
destroy () {
this.subscriptions.dispose()
this.getMarkerLayer(this.editor).clear()
this.insertionsByIndex = []
this.relatedInsertionsByIndex = new Map()
this.markersForInsertions = new Map();
this.snippets.stopObservingEditor(this.editor)
this.snippets.clearExpansions(this.editor)
}
getMarkerLayer () {
return this.snippets.findOrCreateMarkerLayer(this.editor)
}
restore (editor) {
this.editor = editor
this.snippets.addExpansion(this.editor, this)
}
}