forked from adamkiss/InputfieldAceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputfieldAceEditor.js
106 lines (89 loc) · 3.07 KB
/
InputfieldAceEditor.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
// Generated by CoffeeScript 1.4.0
(function() {
var Editor, _c;
_c = {
part: {
tools: 'ace-editor-tools',
measure_node: 'hack_ace_measure_node'
},
status: {
active: 'is-active'
},
options: {
focus_mode: 'focus_mode'
},
size: {
normal: {
"class": 'setting-size-normal',
line_height: 28
}
}
};
/* --------------------------------------------
Begin editor.coffee
--------------------------------------------
*/
Editor = (function() {
function Editor(config) {
this.config = config;
this.setup_html();
this.setup_ace();
}
Editor.prototype.setup_html = function() {
this.$textarea = $("#" + this.config.id).hide();
this.$toolarea = this.$textarea.siblings("." + _c.part.tools);
return this.$ace = $('<div/>').attr('id', "" + this.config.id + "_ace").data('for', "#" + this.config.id).insertAfter(this.$toolarea).addClass(_c.size.normal["class"]).height(this.config.rows * _c.size.normal.line_height).text(this.$textarea.val());
};
Editor.prototype.setup_ace = function() {
this.ace = ace.edit(this.$ace.attr('id'));
this.$measure_node = $('>div:not([class])', this.$ace);
this.$measure_node.addClass(_c.part.measure_node);
this.ace.getSession().setMode("ace/mode/" + this.config.mode);
this.ace.setTheme("ace/theme/pw-light");
this.ace.setShowInvisibles(this.config.f_invisible_characters);
if (this.config.f_focus_mode === 1) {
this.$ace.addClass(_c.options.focus_mode);
}
this.ace.getSession().setUseWrapMode(true);
this.ace.getSession().setWrapLimitRange(null);
this.ace.setShowPrintMargin(false);
this.ace.renderer.setShowGutter(true);
this.ace.setSelectionStyle('text');
this.ace.setShowFoldWidgets(true);
this.ace.setHighlightActiveLine(false);
return this.setup_hooks();
};
Editor.prototype.setup_hooks = function() {
var _this = this;
this.ace.on('blur', function(e) {
return _this.$textarea.val(_this.ace.getValue().replace(/\s+$/g, ""));
});
return this.ace.on('changeSelection', function(e) {
return _this.highlight_active_line;
});
};
Editor.get_active_line_index = function() {
return this.ace.getCursorPosition().row - this.ace.getFirstVisibleRow();
};
Editor.prototype.highlight_line = function(index) {
return $('.ace_line_group', this.$ace).removeClass(_c.status.active).eq(index).addClass(_c.status.active);
};
Editor.prototype.highlight_active_line = function() {
return this.highlight_line(this.get_active_line_index());
};
return Editor;
})();
/* --------------------------------------------
Begin InputfieldAceEditor.coffee
--------------------------------------------
*/
$(function() {
var editors;
if (config.InputfieldAceEditor) {
editors = [];
return $.each(config.InputfieldAceEditor, function(i, el) {
return editors[el] = new Editor(config[el]);
});
}
});
}).call(this);