-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcloud9-editor-proxy.js
252 lines (221 loc) · 7.52 KB
/
cloud9-editor-proxy.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
/*!
* Emmet for the Cloud9 IDE.
*
* Cloud9 Editor Proxy for Emmet.
*
* @copyright 2013, Rubens Mariuzzo, Mariuzzo.com
* @license GPLv3 <http://www.gnu.org/licenses/gpl.txt>
*/
// RequireJS configuration for non AMD dependencies.
requirejs.config({
shim: {
'./vendors/underscore.js': {
exports: '_'
},
'./vendors/emmet-full.js': {
deps: ['_'],
exports: 'emmet'
}
}
});
// Emmet Editor proxy implementation AMD definition.
define(function(require, exports, module) {
// ACE dependencies.
var Range = require('ace/range');
// Extension's dependencies.
require('./vendors/underscore.js');
require('./vendors/emmet-full.js');
// IEmmetEditor.js proxy implementation.
var editorProxy = {
syntaxMap: {
'css': 'css',
'html': 'html',
'xml': 'xml',
'less': 'css'
},
// The current editor.
editor: null,
// IEmmetEditor interface functions //
//----------------------------------//
/**
* Returns character indexes of selected text: object with <code>start</code>
* and <code>end</code> properties. If there's no selection, should return
* object with <code>start</code> and <code>end</code> properties referring
* to current caret position
* @return {Object}
* @example
* var selection = editor.getSelectionRange();
* alert(selection.start + ', ' + selection.end);
*/
getSelectionRange: function() {
var range = this.editor.getSelection().getRange();
return {
start: range.start.column,
end: range.end.column
};
},
/**
* Creates selection from <code>start</code> to <code>end</code> character
* indexes. If <code>end</code> is omitted, this method should place caret
* and <code>start</code> index
* @param {Number} start
* @param {Number} [end]
* @example
* editor.createSelection(10, 40);
*
* //move caret to 15th character
* editor.createSelection(15);
*/
createSelection: function(start, end) {
var row = this.editor.getCursorPosition().row;
if (start === end) this.editor.moveCursorTo(row, start);
else this.editor.selection.setSelectionRange({
start: {
row: row,
column: start
},
end: {
row: row,
column: end
}
});
},
/**
* Returns current line's start and end indexes as object with <code>start</code>
* and <code>end</code> properties
* @return {Object}
* @example
* var range = editor.getCurrentLineRange();
* alert(range.start + ', ' + range.end);
*/
getCurrentLineRange: function() {
return {
start: 0,
end: this.getCurrentLine().length
};
},
/**
* Returns current caret position
* @return {Number|null}
*/
getCaretPos: function() {
return this.editor.getCursorPosition().row;
},
/**
* Set new caret position
* @param {Number} pos Caret position
*/
setCaretPos: function(pos) {
this.editor.moveCursorTo(this.editor.getCursorPosition().row, pos);
},
/**
* Returns content of current line
* @return {String}
*/
getCurrentLine: function() {
return this.editor.session.getLine(this.editor.getCursorPosition().row);
},
/**
* Replace editor's content or it's part (from <code>start</code> to
* <code>end</code> index). If <code>value</code> contains
* <code>caret_placeholder</code>, the editor will put caret into
* this position. If you skip <code>start</code> and <code>end</code>
* arguments, the whole target's content will be replaced with
* <code>value</code>.
*
* If you pass <code>start</code> argument only,
* the <code>value</code> will be placed at <code>start</code> string
* index of current content.
*
* If you pass <code>start</code> and <code>end</code> arguments,
* the corresponding substring of current target's content will be
* replaced with <code>value</code>.
* @param {String} value Content you want to paste
* @param {Number} [start] Start index of editor's content
* @param {Number} [end] End index of editor's content
* @param {Boolean} [no_indent] Do not auto indent <code>value</code>
*/
replaceContent: function(value, start, end, no_indent) {
end = end || start || 0;
var row = this.editor.getCursorPosition().row;
// Find new caret position.
var tabstopData = emmet.require('tabStops').extract(value, {
escape: function(ch) {
return ch;
}
});
value = tabstopData.text;
this.editor.selection.setSelectionRange({
start: {
row: row,
column: start
},
end: {
row: row,
column: end
}
});
this.editor.insert(value);
},
/**
* Returns editor's content
* @return {String}
*/
getContent: function() {
return this.getCurrentLine();
},
/**
* Returns current editor's syntax mode
* @return {String}
*/
getSyntax: function() {
var syntax = this.editor.session.syntax;
return syntax in this.syntaxMap ? this.syntaxMap[syntax] : 'plain';
},
/**
* Returns current output profile name (see profile module).
* In most cases, this method should return <code>null</code> and let
* Emmet guess best profile name for current syntax and user data.
* In case you're using advanced editor with access to syntax scopes
* (like Sublime Text 2), you can return syntax name for current scope.
* For example, you may return `line` profile when editor caret is inside
* string of programming language.
*
* @return {String}
*/
getProfileName: function() {
return emmet.require('actionUtils').detectProfile(this);
},
/**
* Ask user to enter something
* @param {String} title Dialog title
* @return {String} Entered data
* @since 0.65
*/
prompt: function(title) {
return prompt(title);
},
/**
* Returns current selection
* @return {String}
* @since 0.65
*/
getSelection: function() {
return this.editor.session.getTextRange(this.editor.selection.getRange());
},
/**
* Returns current editor's file path
* @return {String}
* @since 0.65
*/
getFilePath: function() {
return location.href;
},
// Custom functions //
//------------------//
setEditor: function(editor) {
this.editor = editor;
}
};
return editorProxy;
});