-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
55 lines (39 loc) · 1015 Bytes
/
index.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
'use strict';
// Dependencies
const ace = require('brace');
require('brace/mode/json');
require('brace/theme/solarized_dark');
function Ace (args) {
args = args || {};
let selector = args.selector || '.editor';
// setup editor
this.options = args.options || {};
this.editor = ace.edit(document.querySelector(selector));
this.editor.setOptions(this.options);
this.editor.setShowPrintMargin(false);
this.editor.getSession().setMode('ace/mode/json');
}
Ace.prototype.set = function (value) {
if (typeof value !== 'string') {
value = '';
}
if (!this.editor) {
return;
}
this.editor.setValue(value, 1);
};
Ace.prototype.setOptions = function (options) {
options = options || {};
if (!this.editor) {
return;
}
this.options = options;
this.editor.setOptions(options);
};
Ace.prototype.get = function () {
if (!this.editor) {
return;
}
return this.editor.getValue();
};
module.exports = Ace;