-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue-ace-edit.js
executable file
·240 lines (201 loc) · 5.31 KB
/
vue-ace-edit.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
/**
* VueAceEdit
* @version: latest
* @param {*} url
* @returns
*/
const loadScript = (url = '') => {
return new Promise(function (resolve, reject) {
const head = document.getElementsByTagName('head')[0]
const script = document.createElement('script')
script.type = 'text/javascript'
script.addEventListener('load', function () {
resolve(script)
})
script.src = url
head.appendChild(script)
})
}
const AceResolver = {
props: {
path: { type: String, default: 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12' }
},
async mounted () {
const { path } = this
if (!window.ace) {
await loadScript(`${path}/ace.min.js`)
}
const { ace } = window
ace.config.set('basePath', path)
// Tell parent
this.$emit('ready', ace)
},
render (_c) {
return _c('div')
}
}
export const AceEditor = {
components: {
AceResolver
},
props: {
value: { type: [Object, String], default: '' },
mode: {
type: String,
// https://github.com/ajaxorg/ace/tree/master/lib/ace/mode
default: 'javascript'
},
theme: {
type: String,
// https://github.com/ajaxorg/ace/tree/master/lib/ace/theme
default: 'twilight'
},
minHeight: { type: Number, default: 200 },
options: {
type: Object,
default: () => ({
// selectionStyle: 'text',
// maxLines: 30,
wrap: true,
autoScrollEditorIntoView: true
})
}
},
data: vm => ({
disableWatcher: null
}),
mounted () {
// Watchers
this.$watch('value', newValue => {
if (this.disableWatcher) return
this.setValue(newValue)
})
},
created () {
let editor
this.ready = (ace) => {
editor = ace.edit(this.$refs.editor, {
// mode: 'ace/mode/javascript',
mode: `ace/mode/${this.mode}`,
...this.options
})
editor.setTheme(`ace/theme/${this.theme}`)
// Set initial value
this.setValue(this.value)
// Then add change handler
editor.on('change', this.onChange)
// Based on https://stackoverflow.com/questions/9506154/determine-if-javascript-syntax-is-valid-in-change-handler-of-ace
editor.on('changeMode', () => {
// session.$worker is available when 'changeMode' event triggered
// You could subscribe worker events here, whatever changes to the
// content will trigger 'error' or 'ok' events.
// editor.$worker.on('error', ko)
// editor.$worker.on('ok', ok)
const handle = (e) => {
const { data } = e
// console.log('update:annotations', e)
this.$emit('update:annotations', data)
this.$emit('update:valid', data.length === 0)
}
const session = editor.getSession()
session.$worker.on('annotate', handle)
session.$worker.on('terminate', handle)
})
// Tell parent
this.$emit('ready', ace)
}
this.setValue = (value) => {
if (!editor) {
console.warn('Editor not ready')
return
}
// https://stackoverflow.com/questions/18614169/set-value-for-ace-editor-without-selecting-the-whole-editor
// You can use the second parameter to control cursor position after setValue
// editor.setValue(str, -1) // moves cursor to the start
// editor.setValue(str, 1) // moves cursor to the end
editor.setValue(value)
editor.clearSelection() // This will remove the highlight over the text
}
this.onChange = (e) => {
this.disableWatcher = true
// Tell parent
this.$emit('input', editor.getValue())
this.$nextTick(() => {
this.disableWatcher = false
})
}
},
render (_c) {
const _vm = this
return _c(
'div',
{
ref: 'editor',
staticClass: 'aceeditor',
style: 'min-height:' + _vm.minHeight + 'px'
},
[_c('AceResolver', { on: { ready: _vm.ready } })],
1
)
}
}
export const AceEditorJson = {
props: {
value: { type: [Object, Array], default: () => {} }
},
data: vm => ({
valueStringified: '',
disableInputEmit: null // Protect against loops
}),
created () {
// Detect incoming change
this.$watch('value',
(newValue) => {
// Protect against loops
if (this.disableInputEmit) {
return
}
// Detect change
this.disableInputEmit = true
this.format()
this.$nextTick(function () {
this.disableInputEmit = false
})
}, {
immediate: true,
deep: true
})
},
methods: {
onInput (newValue = '') {
// Protect against loops
if (this.disableInputEmit) {
return
}
try {
this.disableInputEmit = true
const parsed = JSON.parse(newValue)
// Tell parent
this.$emit('input', parsed)
} catch (err) {
// Parse failed
// Tell parent
this.$emit('fail', err)
}
this.$nextTick(function () {
this.disableInputEmit = false
})
},
format () {
this.valueStringified = JSON.stringify(this.value, null, 2)
}
},
render (_c) {
const _vm = this
return _c('AceEditor', {
ref: 'editor',
attrs: { mode: 'json', value: _vm.valueStringified },
on: { input: _vm.onInput }
})
}
}