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 patheditor-store.js
82 lines (69 loc) · 1.77 KB
/
editor-store.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
const SnippetHistoryProvider = require('./snippet-history-provider')
class EditorStore {
constructor (editor) {
this.editor = editor
this.buffer = this.editor.getBuffer()
this.observer = null
this.checkpoint = null
this.expansions = []
this.existingHistoryProvider = null
}
getExpansions () {
return this.expansions
}
setExpansions (list) {
this.expansions = list
}
clearExpansions () {
this.expansions = []
}
addExpansion (snippetExpansion) {
this.expansions.push(snippetExpansion)
}
observeHistory (delegates) {
if (this.existingHistoryProvider == null) {
this.existingHistoryProvider = this.buffer.historyProvider
}
const newProvider = SnippetHistoryProvider(
this.existingHistoryProvider,
delegates
)
this.buffer.setHistoryProvider(newProvider)
}
stopObservingHistory (editor) {
if (this.existingHistoryProvider == null) {
return
}
this.buffer.setHistoryProvider(this.existingHistoryProvider)
this.existingHistoryProvider = null
}
observe (callback) {
if (this.observer != null) {
this.observer.dispose()
}
this.observer = this.buffer.onDidChangeText(callback)
}
stopObserving () {
if (this.observer == null) {
return false
}
this.observer.dispose()
this.observer = null
return true
}
makeCheckpoint () {
const existing = this.checkpoint
if (existing) {
this.buffer.groupChangesSinceCheckpoint(existing)
}
this.checkpoint = this.buffer.createCheckpoint()
}
}
EditorStore.store = new WeakMap()
EditorStore.findOrCreate = function (editor) {
if (!this.store.has(editor)) {
this.store.set(editor, new EditorStore(editor))
}
return this.store.get(editor)
}
module.exports = EditorStore