Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ext-emmet.js 41KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190
  1. ace.define("ace/snippets",["require","exports","module","ace/lib/oop","ace/lib/event_emitter","ace/lib/lang","ace/range","ace/anchor","ace/keyboard/hash_handler","ace/tokenizer","ace/lib/dom","ace/editor"], function(require, exports, module) {
  2. "use strict";
  3. var oop = require("./lib/oop");
  4. var EventEmitter = require("./lib/event_emitter").EventEmitter;
  5. var lang = require("./lib/lang");
  6. var Range = require("./range").Range;
  7. var Anchor = require("./anchor").Anchor;
  8. var HashHandler = require("./keyboard/hash_handler").HashHandler;
  9. var Tokenizer = require("./tokenizer").Tokenizer;
  10. var comparePoints = Range.comparePoints;
  11. var SnippetManager = function() {
  12. this.snippetMap = {};
  13. this.snippetNameMap = {};
  14. };
  15. (function() {
  16. oop.implement(this, EventEmitter);
  17. this.getTokenizer = function() {
  18. function TabstopToken(str, _, stack) {
  19. str = str.substr(1);
  20. if (/^\d+$/.test(str) && !stack.inFormatString)
  21. return [{tabstopId: parseInt(str, 10)}];
  22. return [{text: str}];
  23. }
  24. function escape(ch) {
  25. return "(?:[^\\\\" + ch + "]|\\\\.)";
  26. }
  27. SnippetManager.$tokenizer = new Tokenizer({
  28. start: [
  29. {regex: /:/, onMatch: function(val, state, stack) {
  30. if (stack.length && stack[0].expectIf) {
  31. stack[0].expectIf = false;
  32. stack[0].elseBranch = stack[0];
  33. return [stack[0]];
  34. }
  35. return ":";
  36. }},
  37. {regex: /\\./, onMatch: function(val, state, stack) {
  38. var ch = val[1];
  39. if (ch == "}" && stack.length) {
  40. val = ch;
  41. }else if ("`$\\".indexOf(ch) != -1) {
  42. val = ch;
  43. } else if (stack.inFormatString) {
  44. if (ch == "n")
  45. val = "\n";
  46. else if (ch == "t")
  47. val = "\n";
  48. else if ("ulULE".indexOf(ch) != -1) {
  49. val = {changeCase: ch, local: ch > "a"};
  50. }
  51. }
  52. return [val];
  53. }},
  54. {regex: /}/, onMatch: function(val, state, stack) {
  55. return [stack.length ? stack.shift() : val];
  56. }},
  57. {regex: /\$(?:\d+|\w+)/, onMatch: TabstopToken},
  58. {regex: /\$\{[\dA-Z_a-z]+/, onMatch: function(str, state, stack) {
  59. var t = TabstopToken(str.substr(1), state, stack);
  60. stack.unshift(t[0]);
  61. return t;
  62. }, next: "snippetVar"},
  63. {regex: /\n/, token: "newline", merge: false}
  64. ],
  65. snippetVar: [
  66. {regex: "\\|" + escape("\\|") + "*\\|", onMatch: function(val, state, stack) {
  67. stack[0].choices = val.slice(1, -1).split(",");
  68. }, next: "start"},
  69. {regex: "/(" + escape("/") + "+)/(?:(" + escape("/") + "*)/)(\\w*):?",
  70. onMatch: function(val, state, stack) {
  71. var ts = stack[0];
  72. ts.fmtString = val;
  73. val = this.splitRegex.exec(val);
  74. ts.guard = val[1];
  75. ts.fmt = val[2];
  76. ts.flag = val[3];
  77. return "";
  78. }, next: "start"},
  79. {regex: "`" + escape("`") + "*`", onMatch: function(val, state, stack) {
  80. stack[0].code = val.splice(1, -1);
  81. return "";
  82. }, next: "start"},
  83. {regex: "\\?", onMatch: function(val, state, stack) {
  84. if (stack[0])
  85. stack[0].expectIf = true;
  86. }, next: "start"},
  87. {regex: "([^:}\\\\]|\\\\.)*:?", token: "", next: "start"}
  88. ],
  89. formatString: [
  90. {regex: "/(" + escape("/") + "+)/", token: "regex"},
  91. {regex: "", onMatch: function(val, state, stack) {
  92. stack.inFormatString = true;
  93. }, next: "start"}
  94. ]
  95. });
  96. SnippetManager.prototype.getTokenizer = function() {
  97. return SnippetManager.$tokenizer;
  98. };
  99. return SnippetManager.$tokenizer;
  100. };
  101. this.tokenizeTmSnippet = function(str, startState) {
  102. return this.getTokenizer().getLineTokens(str, startState).tokens.map(function(x) {
  103. return x.value || x;
  104. });
  105. };
  106. this.$getDefaultValue = function(editor, name) {
  107. if (/^[A-Z]\d+$/.test(name)) {
  108. var i = name.substr(1);
  109. return (this.variables[name[0] + "__"] || {})[i];
  110. }
  111. if (/^\d+$/.test(name)) {
  112. return (this.variables.__ || {})[name];
  113. }
  114. name = name.replace(/^TM_/, "");
  115. if (!editor)
  116. return;
  117. var s = editor.session;
  118. switch(name) {
  119. case "CURRENT_WORD":
  120. var r = s.getWordRange();
  121. case "SELECTION":
  122. case "SELECTED_TEXT":
  123. return s.getTextRange(r);
  124. case "CURRENT_LINE":
  125. return s.getLine(editor.getCursorPosition().row);
  126. case "PREV_LINE": // not possible in textmate
  127. return s.getLine(editor.getCursorPosition().row - 1);
  128. case "LINE_INDEX":
  129. return editor.getCursorPosition().column;
  130. case "LINE_NUMBER":
  131. return editor.getCursorPosition().row + 1;
  132. case "SOFT_TABS":
  133. return s.getUseSoftTabs() ? "YES" : "NO";
  134. case "TAB_SIZE":
  135. return s.getTabSize();
  136. case "FILENAME":
  137. case "FILEPATH":
  138. return "";
  139. case "FULLNAME":
  140. return "Ace";
  141. }
  142. };
  143. this.variables = {};
  144. this.getVariableValue = function(editor, varName) {
  145. if (this.variables.hasOwnProperty(varName))
  146. return this.variables[varName](editor, varName) || "";
  147. return this.$getDefaultValue(editor, varName) || "";
  148. };
  149. this.tmStrFormat = function(str, ch, editor) {
  150. var flag = ch.flag || "";
  151. var re = ch.guard;
  152. re = new RegExp(re, flag.replace(/[^gi]/, ""));
  153. var fmtTokens = this.tokenizeTmSnippet(ch.fmt, "formatString");
  154. var _self = this;
  155. var formatted = str.replace(re, function() {
  156. _self.variables.__ = arguments;
  157. var fmtParts = _self.resolveVariables(fmtTokens, editor);
  158. var gChangeCase = "E";
  159. for (var i = 0; i < fmtParts.length; i++) {
  160. var ch = fmtParts[i];
  161. if (typeof ch == "object") {
  162. fmtParts[i] = "";
  163. if (ch.changeCase && ch.local) {
  164. var next = fmtParts[i + 1];
  165. if (next && typeof next == "string") {
  166. if (ch.changeCase == "u")
  167. fmtParts[i] = next[0].toUpperCase();
  168. else
  169. fmtParts[i] = next[0].toLowerCase();
  170. fmtParts[i + 1] = next.substr(1);
  171. }
  172. } else if (ch.changeCase) {
  173. gChangeCase = ch.changeCase;
  174. }
  175. } else if (gChangeCase == "U") {
  176. fmtParts[i] = ch.toUpperCase();
  177. } else if (gChangeCase == "L") {
  178. fmtParts[i] = ch.toLowerCase();
  179. }
  180. }
  181. return fmtParts.join("");
  182. });
  183. this.variables.__ = null;
  184. return formatted;
  185. };
  186. this.resolveVariables = function(snippet, editor) {
  187. var result = [];
  188. for (var i = 0; i < snippet.length; i++) {
  189. var ch = snippet[i];
  190. if (typeof ch == "string") {
  191. result.push(ch);
  192. } else if (typeof ch != "object") {
  193. continue;
  194. } else if (ch.skip) {
  195. gotoNext(ch);
  196. } else if (ch.processed < i) {
  197. continue;
  198. } else if (ch.text) {
  199. var value = this.getVariableValue(editor, ch.text);
  200. if (value && ch.fmtString)
  201. value = this.tmStrFormat(value, ch);
  202. ch.processed = i;
  203. if (ch.expectIf == null) {
  204. if (value) {
  205. result.push(value);
  206. gotoNext(ch);
  207. }
  208. } else {
  209. if (value) {
  210. ch.skip = ch.elseBranch;
  211. } else
  212. gotoNext(ch);
  213. }
  214. } else if (ch.tabstopId != null) {
  215. result.push(ch);
  216. } else if (ch.changeCase != null) {
  217. result.push(ch);
  218. }
  219. }
  220. function gotoNext(ch) {
  221. var i1 = snippet.indexOf(ch, i + 1);
  222. if (i1 != -1)
  223. i = i1;
  224. }
  225. return result;
  226. };
  227. this.insertSnippetForSelection = function(editor, snippetText) {
  228. var cursor = editor.getCursorPosition();
  229. var line = editor.session.getLine(cursor.row);
  230. var tabString = editor.session.getTabString();
  231. var indentString = line.match(/^\s*/)[0];
  232. if (cursor.column < indentString.length)
  233. indentString = indentString.slice(0, cursor.column);
  234. var tokens = this.tokenizeTmSnippet(snippetText);
  235. tokens = this.resolveVariables(tokens, editor);
  236. tokens = tokens.map(function(x) {
  237. if (x == "\n")
  238. return x + indentString;
  239. if (typeof x == "string")
  240. return x.replace(/\t/g, tabString);
  241. return x;
  242. });
  243. var tabstops = [];
  244. tokens.forEach(function(p, i) {
  245. if (typeof p != "object")
  246. return;
  247. var id = p.tabstopId;
  248. var ts = tabstops[id];
  249. if (!ts) {
  250. ts = tabstops[id] = [];
  251. ts.index = id;
  252. ts.value = "";
  253. }
  254. if (ts.indexOf(p) !== -1)
  255. return;
  256. ts.push(p);
  257. var i1 = tokens.indexOf(p, i + 1);
  258. if (i1 === -1)
  259. return;
  260. var value = tokens.slice(i + 1, i1);
  261. var isNested = value.some(function(t) {return typeof t === "object"});
  262. if (isNested && !ts.value) {
  263. ts.value = value;
  264. } else if (value.length && (!ts.value || typeof ts.value !== "string")) {
  265. ts.value = value.join("");
  266. }
  267. });
  268. tabstops.forEach(function(ts) {ts.length = 0});
  269. var expanding = {};
  270. function copyValue(val) {
  271. var copy = [];
  272. for (var i = 0; i < val.length; i++) {
  273. var p = val[i];
  274. if (typeof p == "object") {
  275. if (expanding[p.tabstopId])
  276. continue;
  277. var j = val.lastIndexOf(p, i - 1);
  278. p = copy[j] || {tabstopId: p.tabstopId};
  279. }
  280. copy[i] = p;
  281. }
  282. return copy;
  283. }
  284. for (var i = 0; i < tokens.length; i++) {
  285. var p = tokens[i];
  286. if (typeof p != "object")
  287. continue;
  288. var id = p.tabstopId;
  289. var i1 = tokens.indexOf(p, i + 1);
  290. if (expanding[id]) {
  291. if (expanding[id] === p)
  292. expanding[id] = null;
  293. continue;
  294. }
  295. var ts = tabstops[id];
  296. var arg = typeof ts.value == "string" ? [ts.value] : copyValue(ts.value);
  297. arg.unshift(i + 1, Math.max(0, i1 - i));
  298. arg.push(p);
  299. expanding[id] = p;
  300. tokens.splice.apply(tokens, arg);
  301. if (ts.indexOf(p) === -1)
  302. ts.push(p);
  303. }
  304. var row = 0, column = 0;
  305. var text = "";
  306. tokens.forEach(function(t) {
  307. if (typeof t === "string") {
  308. if (t[0] === "\n"){
  309. column = t.length - 1;
  310. row ++;
  311. } else
  312. column += t.length;
  313. text += t;
  314. } else {
  315. if (!t.start)
  316. t.start = {row: row, column: column};
  317. else
  318. t.end = {row: row, column: column};
  319. }
  320. });
  321. var range = editor.getSelectionRange();
  322. var end = editor.session.replace(range, text);
  323. var tabstopManager = new TabstopManager(editor);
  324. var selectionId = editor.inVirtualSelectionMode && editor.selection.index;
  325. tabstopManager.addTabstops(tabstops, range.start, end, selectionId);
  326. };
  327. this.insertSnippet = function(editor, snippetText) {
  328. var self = this;
  329. if (editor.inVirtualSelectionMode)
  330. return self.insertSnippetForSelection(editor, snippetText);
  331. editor.forEachSelection(function() {
  332. self.insertSnippetForSelection(editor, snippetText);
  333. }, null, {keepOrder: true});
  334. if (editor.tabstopManager)
  335. editor.tabstopManager.tabNext();
  336. };
  337. this.$getScope = function(editor) {
  338. var scope = editor.session.$mode.$id || "";
  339. scope = scope.split("/").pop();
  340. if (scope === "html" || scope === "php") {
  341. if (scope === "php" && !editor.session.$mode.inlinePhp)
  342. scope = "html";
  343. var c = editor.getCursorPosition();
  344. var state = editor.session.getState(c.row);
  345. if (typeof state === "object") {
  346. state = state[0];
  347. }
  348. if (state.substring) {
  349. if (state.substring(0, 3) == "js-")
  350. scope = "javascript";
  351. else if (state.substring(0, 4) == "css-")
  352. scope = "css";
  353. else if (state.substring(0, 4) == "php-")
  354. scope = "php";
  355. }
  356. }
  357. return scope;
  358. };
  359. this.getActiveScopes = function(editor) {
  360. var scope = this.$getScope(editor);
  361. var scopes = [scope];
  362. var snippetMap = this.snippetMap;
  363. if (snippetMap[scope] && snippetMap[scope].includeScopes) {
  364. scopes.push.apply(scopes, snippetMap[scope].includeScopes);
  365. }
  366. scopes.push("_");
  367. return scopes;
  368. };
  369. this.expandWithTab = function(editor, options) {
  370. var self = this;
  371. var result = editor.forEachSelection(function() {
  372. return self.expandSnippetForSelection(editor, options);
  373. }, null, {keepOrder: true});
  374. if (result && editor.tabstopManager)
  375. editor.tabstopManager.tabNext();
  376. return result;
  377. };
  378. this.expandSnippetForSelection = function(editor, options) {
  379. var cursor = editor.getCursorPosition();
  380. var line = editor.session.getLine(cursor.row);
  381. var before = line.substring(0, cursor.column);
  382. var after = line.substr(cursor.column);
  383. var snippetMap = this.snippetMap;
  384. var snippet;
  385. this.getActiveScopes(editor).some(function(scope) {
  386. var snippets = snippetMap[scope];
  387. if (snippets)
  388. snippet = this.findMatchingSnippet(snippets, before, after);
  389. return !!snippet;
  390. }, this);
  391. if (!snippet)
  392. return false;
  393. if (options && options.dryRun)
  394. return true;
  395. editor.session.doc.removeInLine(cursor.row,
  396. cursor.column - snippet.replaceBefore.length,
  397. cursor.column + snippet.replaceAfter.length
  398. );
  399. this.variables.M__ = snippet.matchBefore;
  400. this.variables.T__ = snippet.matchAfter;
  401. this.insertSnippetForSelection(editor, snippet.content);
  402. this.variables.M__ = this.variables.T__ = null;
  403. return true;
  404. };
  405. this.findMatchingSnippet = function(snippetList, before, after) {
  406. for (var i = snippetList.length; i--;) {
  407. var s = snippetList[i];
  408. if (s.startRe && !s.startRe.test(before))
  409. continue;
  410. if (s.endRe && !s.endRe.test(after))
  411. continue;
  412. if (!s.startRe && !s.endRe)
  413. continue;
  414. s.matchBefore = s.startRe ? s.startRe.exec(before) : [""];
  415. s.matchAfter = s.endRe ? s.endRe.exec(after) : [""];
  416. s.replaceBefore = s.triggerRe ? s.triggerRe.exec(before)[0] : "";
  417. s.replaceAfter = s.endTriggerRe ? s.endTriggerRe.exec(after)[0] : "";
  418. return s;
  419. }
  420. };
  421. this.snippetMap = {};
  422. this.snippetNameMap = {};
  423. this.register = function(snippets, scope) {
  424. var snippetMap = this.snippetMap;
  425. var snippetNameMap = this.snippetNameMap;
  426. var self = this;
  427. if (!snippets)
  428. snippets = [];
  429. function wrapRegexp(src) {
  430. if (src && !/^\^?\(.*\)\$?$|^\\b$/.test(src))
  431. src = "(?:" + src + ")";
  432. return src || "";
  433. }
  434. function guardedRegexp(re, guard, opening) {
  435. re = wrapRegexp(re);
  436. guard = wrapRegexp(guard);
  437. if (opening) {
  438. re = guard + re;
  439. if (re && re[re.length - 1] != "$")
  440. re = re + "$";
  441. } else {
  442. re = re + guard;
  443. if (re && re[0] != "^")
  444. re = "^" + re;
  445. }
  446. return new RegExp(re);
  447. }
  448. function addSnippet(s) {
  449. if (!s.scope)
  450. s.scope = scope || "_";
  451. scope = s.scope;
  452. if (!snippetMap[scope]) {
  453. snippetMap[scope] = [];
  454. snippetNameMap[scope] = {};
  455. }
  456. var map = snippetNameMap[scope];
  457. if (s.name) {
  458. var old = map[s.name];
  459. if (old)
  460. self.unregister(old);
  461. map[s.name] = s;
  462. }
  463. snippetMap[scope].push(s);
  464. if (s.tabTrigger && !s.trigger) {
  465. if (!s.guard && /^\w/.test(s.tabTrigger))
  466. s.guard = "\\b";
  467. s.trigger = lang.escapeRegExp(s.tabTrigger);
  468. }
  469. s.startRe = guardedRegexp(s.trigger, s.guard, true);
  470. s.triggerRe = new RegExp(s.trigger, "", true);
  471. s.endRe = guardedRegexp(s.endTrigger, s.endGuard, true);
  472. s.endTriggerRe = new RegExp(s.endTrigger, "", true);
  473. }
  474. if (snippets && snippets.content)
  475. addSnippet(snippets);
  476. else if (Array.isArray(snippets))
  477. snippets.forEach(addSnippet);
  478. this._signal("registerSnippets", {scope: scope});
  479. };
  480. this.unregister = function(snippets, scope) {
  481. var snippetMap = this.snippetMap;
  482. var snippetNameMap = this.snippetNameMap;
  483. function removeSnippet(s) {
  484. var nameMap = snippetNameMap[s.scope||scope];
  485. if (nameMap && nameMap[s.name]) {
  486. delete nameMap[s.name];
  487. var map = snippetMap[s.scope||scope];
  488. var i = map && map.indexOf(s);
  489. if (i >= 0)
  490. map.splice(i, 1);
  491. }
  492. }
  493. if (snippets.content)
  494. removeSnippet(snippets);
  495. else if (Array.isArray(snippets))
  496. snippets.forEach(removeSnippet);
  497. };
  498. this.parseSnippetFile = function(str) {
  499. str = str.replace(/\r/g, "");
  500. var list = [], snippet = {};
  501. var re = /^#.*|^({[\s\S]*})\s*$|^(\S+) (.*)$|^((?:\n*\t.*)+)/gm;
  502. var m;
  503. while (m = re.exec(str)) {
  504. if (m[1]) {
  505. try {
  506. snippet = JSON.parse(m[1]);
  507. list.push(snippet);
  508. } catch (e) {}
  509. } if (m[4]) {
  510. snippet.content = m[4].replace(/^\t/gm, "");
  511. list.push(snippet);
  512. snippet = {};
  513. } else {
  514. var key = m[2], val = m[3];
  515. if (key == "regex") {
  516. var guardRe = /\/((?:[^\/\\]|\\.)*)|$/g;
  517. snippet.guard = guardRe.exec(val)[1];
  518. snippet.trigger = guardRe.exec(val)[1];
  519. snippet.endTrigger = guardRe.exec(val)[1];
  520. snippet.endGuard = guardRe.exec(val)[1];
  521. } else if (key == "snippet") {
  522. snippet.tabTrigger = val.match(/^\S*/)[0];
  523. if (!snippet.name)
  524. snippet.name = val;
  525. } else {
  526. snippet[key] = val;
  527. }
  528. }
  529. }
  530. return list;
  531. };
  532. this.getSnippetByName = function(name, editor) {
  533. var snippetMap = this.snippetNameMap;
  534. var snippet;
  535. this.getActiveScopes(editor).some(function(scope) {
  536. var snippets = snippetMap[scope];
  537. if (snippets)
  538. snippet = snippets[name];
  539. return !!snippet;
  540. }, this);
  541. return snippet;
  542. };
  543. }).call(SnippetManager.prototype);
  544. var TabstopManager = function(editor) {
  545. if (editor.tabstopManager)
  546. return editor.tabstopManager;
  547. editor.tabstopManager = this;
  548. this.$onChange = this.onChange.bind(this);
  549. this.$onChangeSelection = lang.delayedCall(this.onChangeSelection.bind(this)).schedule;
  550. this.$onChangeSession = this.onChangeSession.bind(this);
  551. this.$onAfterExec = this.onAfterExec.bind(this);
  552. this.attach(editor);
  553. };
  554. (function() {
  555. this.attach = function(editor) {
  556. this.index = 0;
  557. this.ranges = [];
  558. this.tabstops = [];
  559. this.$openTabstops = null;
  560. this.selectedTabstop = null;
  561. this.editor = editor;
  562. this.editor.on("change", this.$onChange);
  563. this.editor.on("changeSelection", this.$onChangeSelection);
  564. this.editor.on("changeSession", this.$onChangeSession);
  565. this.editor.commands.on("afterExec", this.$onAfterExec);
  566. this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
  567. };
  568. this.detach = function() {
  569. this.tabstops.forEach(this.removeTabstopMarkers, this);
  570. this.ranges = null;
  571. this.tabstops = null;
  572. this.selectedTabstop = null;
  573. this.editor.removeListener("change", this.$onChange);
  574. this.editor.removeListener("changeSelection", this.$onChangeSelection);
  575. this.editor.removeListener("changeSession", this.$onChangeSession);
  576. this.editor.commands.removeListener("afterExec", this.$onAfterExec);
  577. this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
  578. this.editor.tabstopManager = null;
  579. this.editor = null;
  580. };
  581. this.onChange = function(e) {
  582. var changeRange = e.data.range;
  583. var isRemove = e.data.action[0] == "r";
  584. var start = changeRange.start;
  585. var end = changeRange.end;
  586. var startRow = start.row;
  587. var endRow = end.row;
  588. var lineDif = endRow - startRow;
  589. var colDiff = end.column - start.column;
  590. if (isRemove) {
  591. lineDif = -lineDif;
  592. colDiff = -colDiff;
  593. }
  594. if (!this.$inChange && isRemove) {
  595. var ts = this.selectedTabstop;
  596. var changedOutside = ts && !ts.some(function(r) {
  597. return comparePoints(r.start, start) <= 0 && comparePoints(r.end, end) >= 0;
  598. });
  599. if (changedOutside)
  600. return this.detach();
  601. }
  602. var ranges = this.ranges;
  603. for (var i = 0; i < ranges.length; i++) {
  604. var r = ranges[i];
  605. if (r.end.row < start.row)
  606. continue;
  607. if (isRemove && comparePoints(start, r.start) < 0 && comparePoints(end, r.end) > 0) {
  608. this.removeRange(r);
  609. i--;
  610. continue;
  611. }
  612. if (r.start.row == startRow && r.start.column > start.column)
  613. r.start.column += colDiff;
  614. if (r.end.row == startRow && r.end.column >= start.column)
  615. r.end.column += colDiff;
  616. if (r.start.row >= startRow)
  617. r.start.row += lineDif;
  618. if (r.end.row >= startRow)
  619. r.end.row += lineDif;
  620. if (comparePoints(r.start, r.end) > 0)
  621. this.removeRange(r);
  622. }
  623. if (!ranges.length)
  624. this.detach();
  625. };
  626. this.updateLinkedFields = function() {
  627. var ts = this.selectedTabstop;
  628. if (!ts || !ts.hasLinkedRanges)
  629. return;
  630. this.$inChange = true;
  631. var session = this.editor.session;
  632. var text = session.getTextRange(ts.firstNonLinked);
  633. for (var i = ts.length; i--;) {
  634. var range = ts[i];
  635. if (!range.linked)
  636. continue;
  637. var fmt = exports.snippetManager.tmStrFormat(text, range.original);
  638. session.replace(range, fmt);
  639. }
  640. this.$inChange = false;
  641. };
  642. this.onAfterExec = function(e) {
  643. if (e.command && !e.command.readOnly)
  644. this.updateLinkedFields();
  645. };
  646. this.onChangeSelection = function() {
  647. if (!this.editor)
  648. return;
  649. var lead = this.editor.selection.lead;
  650. var anchor = this.editor.selection.anchor;
  651. var isEmpty = this.editor.selection.isEmpty();
  652. for (var i = this.ranges.length; i--;) {
  653. if (this.ranges[i].linked)
  654. continue;
  655. var containsLead = this.ranges[i].contains(lead.row, lead.column);
  656. var containsAnchor = isEmpty || this.ranges[i].contains(anchor.row, anchor.column);
  657. if (containsLead && containsAnchor)
  658. return;
  659. }
  660. this.detach();
  661. };
  662. this.onChangeSession = function() {
  663. this.detach();
  664. };
  665. this.tabNext = function(dir) {
  666. var max = this.tabstops.length;
  667. var index = this.index + (dir || 1);
  668. index = Math.min(Math.max(index, 1), max);
  669. if (index == max)
  670. index = 0;
  671. this.selectTabstop(index);
  672. if (index === 0)
  673. this.detach();
  674. };
  675. this.selectTabstop = function(index) {
  676. this.$openTabstops = null;
  677. var ts = this.tabstops[this.index];
  678. if (ts)
  679. this.addTabstopMarkers(ts);
  680. this.index = index;
  681. ts = this.tabstops[this.index];
  682. if (!ts || !ts.length)
  683. return;
  684. this.selectedTabstop = ts;
  685. if (!this.editor.inVirtualSelectionMode) {
  686. var sel = this.editor.multiSelect;
  687. sel.toSingleRange(ts.firstNonLinked.clone());
  688. for (var i = ts.length; i--;) {
  689. if (ts.hasLinkedRanges && ts[i].linked)
  690. continue;
  691. sel.addRange(ts[i].clone(), true);
  692. }
  693. if (sel.ranges[0])
  694. sel.addRange(sel.ranges[0].clone());
  695. } else {
  696. this.editor.selection.setRange(ts.firstNonLinked);
  697. }
  698. this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
  699. };
  700. this.addTabstops = function(tabstops, start, end) {
  701. if (!this.$openTabstops)
  702. this.$openTabstops = [];
  703. if (!tabstops[0]) {
  704. var p = Range.fromPoints(end, end);
  705. moveRelative(p.start, start);
  706. moveRelative(p.end, start);
  707. tabstops[0] = [p];
  708. tabstops[0].index = 0;
  709. }
  710. var i = this.index;
  711. var arg = [i + 1, 0];
  712. var ranges = this.ranges;
  713. tabstops.forEach(function(ts, index) {
  714. var dest = this.$openTabstops[index] || ts;
  715. for (var i = ts.length; i--;) {
  716. var p = ts[i];
  717. var range = Range.fromPoints(p.start, p.end || p.start);
  718. movePoint(range.start, start);
  719. movePoint(range.end, start);
  720. range.original = p;
  721. range.tabstop = dest;
  722. ranges.push(range);
  723. if (dest != ts)
  724. dest.unshift(range);
  725. else
  726. dest[i] = range;
  727. if (p.fmtString) {
  728. range.linked = true;
  729. dest.hasLinkedRanges = true;
  730. } else if (!dest.firstNonLinked)
  731. dest.firstNonLinked = range;
  732. }
  733. if (!dest.firstNonLinked)
  734. dest.hasLinkedRanges = false;
  735. if (dest === ts) {
  736. arg.push(dest);
  737. this.$openTabstops[index] = dest;
  738. }
  739. this.addTabstopMarkers(dest);
  740. }, this);
  741. if (arg.length > 2) {
  742. if (this.tabstops.length)
  743. arg.push(arg.splice(2, 1)[0]);
  744. this.tabstops.splice.apply(this.tabstops, arg);
  745. }
  746. };
  747. this.addTabstopMarkers = function(ts) {
  748. var session = this.editor.session;
  749. ts.forEach(function(range) {
  750. if (!range.markerId)
  751. range.markerId = session.addMarker(range, "ace_snippet-marker", "text");
  752. });
  753. };
  754. this.removeTabstopMarkers = function(ts) {
  755. var session = this.editor.session;
  756. ts.forEach(function(range) {
  757. session.removeMarker(range.markerId);
  758. range.markerId = null;
  759. });
  760. };
  761. this.removeRange = function(range) {
  762. var i = range.tabstop.indexOf(range);
  763. range.tabstop.splice(i, 1);
  764. i = this.ranges.indexOf(range);
  765. this.ranges.splice(i, 1);
  766. this.editor.session.removeMarker(range.markerId);
  767. if (!range.tabstop.length) {
  768. i = this.tabstops.indexOf(range.tabstop);
  769. if (i != -1)
  770. this.tabstops.splice(i, 1);
  771. if (!this.tabstops.length)
  772. this.detach();
  773. }
  774. };
  775. this.keyboardHandler = new HashHandler();
  776. this.keyboardHandler.bindKeys({
  777. "Tab": function(ed) {
  778. if (exports.snippetManager && exports.snippetManager.expandWithTab(ed)) {
  779. return;
  780. }
  781. ed.tabstopManager.tabNext(1);
  782. },
  783. "Shift-Tab": function(ed) {
  784. ed.tabstopManager.tabNext(-1);
  785. },
  786. "Esc": function(ed) {
  787. ed.tabstopManager.detach();
  788. },
  789. "Return": function(ed) {
  790. return false;
  791. }
  792. });
  793. }).call(TabstopManager.prototype);
  794. var changeTracker = {};
  795. changeTracker.onChange = Anchor.prototype.onChange;
  796. changeTracker.setPosition = function(row, column) {
  797. this.pos.row = row;
  798. this.pos.column = column;
  799. };
  800. changeTracker.update = function(pos, delta, $insertRight) {
  801. this.$insertRight = $insertRight;
  802. this.pos = pos;
  803. this.onChange(delta);
  804. };
  805. var movePoint = function(point, diff) {
  806. if (point.row == 0)
  807. point.column += diff.column;
  808. point.row += diff.row;
  809. };
  810. var moveRelative = function(point, start) {
  811. if (point.row == start.row)
  812. point.column -= start.column;
  813. point.row -= start.row;
  814. };
  815. require("./lib/dom").importCssString("\
  816. .ace_snippet-marker {\
  817. -moz-box-sizing: border-box;\
  818. box-sizing: border-box;\
  819. background: rgba(194, 193, 208, 0.09);\
  820. border: 1px dotted rgba(211, 208, 235, 0.62);\
  821. position: absolute;\
  822. }");
  823. exports.snippetManager = new SnippetManager();
  824. var Editor = require("./editor").Editor;
  825. (function() {
  826. this.insertSnippet = function(content, options) {
  827. return exports.snippetManager.insertSnippet(this, content, options);
  828. };
  829. this.expandSnippet = function(options) {
  830. return exports.snippetManager.expandWithTab(this, options);
  831. };
  832. }).call(Editor.prototype);
  833. });
  834. ace.define("ace/ext/emmet",["require","exports","module","ace/keyboard/hash_handler","ace/editor","ace/snippets","ace/range","resources","resources","range","tabStops","resources","utils","actions","ace/config","ace/config"], function(require, exports, module) {
  835. "use strict";
  836. var HashHandler = require("ace/keyboard/hash_handler").HashHandler;
  837. var Editor = require("ace/editor").Editor;
  838. var snippetManager = require("ace/snippets").snippetManager;
  839. var Range = require("ace/range").Range;
  840. var emmet, emmetPath;
  841. function AceEmmetEditor() {}
  842. AceEmmetEditor.prototype = {
  843. setupContext: function(editor) {
  844. this.ace = editor;
  845. this.indentation = editor.session.getTabString();
  846. if (!emmet)
  847. emmet = window.emmet;
  848. emmet.require("resources").setVariable("indentation", this.indentation);
  849. this.$syntax = null;
  850. this.$syntax = this.getSyntax();
  851. },
  852. getSelectionRange: function() {
  853. var range = this.ace.getSelectionRange();
  854. var doc = this.ace.session.doc;
  855. return {
  856. start: doc.positionToIndex(range.start),
  857. end: doc.positionToIndex(range.end)
  858. };
  859. },
  860. createSelection: function(start, end) {
  861. var doc = this.ace.session.doc;
  862. this.ace.selection.setRange({
  863. start: doc.indexToPosition(start),
  864. end: doc.indexToPosition(end)
  865. });
  866. },
  867. getCurrentLineRange: function() {
  868. var ace = this.ace;
  869. var row = ace.getCursorPosition().row;
  870. var lineLength = ace.session.getLine(row).length;
  871. var index = ace.session.doc.positionToIndex({row: row, column: 0});
  872. return {
  873. start: index,
  874. end: index + lineLength
  875. };
  876. },
  877. getCaretPos: function(){
  878. var pos = this.ace.getCursorPosition();
  879. return this.ace.session.doc.positionToIndex(pos);
  880. },
  881. setCaretPos: function(index){
  882. var pos = this.ace.session.doc.indexToPosition(index);
  883. this.ace.selection.moveToPosition(pos);
  884. },
  885. getCurrentLine: function() {
  886. var row = this.ace.getCursorPosition().row;
  887. return this.ace.session.getLine(row);
  888. },
  889. replaceContent: function(value, start, end, noIndent) {
  890. if (end == null)
  891. end = start == null ? this.getContent().length : start;
  892. if (start == null)
  893. start = 0;
  894. var editor = this.ace;
  895. var doc = editor.session.doc;
  896. var range = Range.fromPoints(doc.indexToPosition(start), doc.indexToPosition(end));
  897. editor.session.remove(range);
  898. range.end = range.start;
  899. value = this.$updateTabstops(value);
  900. snippetManager.insertSnippet(editor, value);
  901. },
  902. getContent: function(){
  903. return this.ace.getValue();
  904. },
  905. getSyntax: function() {
  906. if (this.$syntax)
  907. return this.$syntax;
  908. var syntax = this.ace.session.$modeId.split("/").pop();
  909. if (syntax == "html" || syntax == "php") {
  910. var cursor = this.ace.getCursorPosition();
  911. var state = this.ace.session.getState(cursor.row);
  912. if (typeof state != "string")
  913. state = state[0];
  914. if (state) {
  915. state = state.split("-");
  916. if (state.length > 1)
  917. syntax = state[0];
  918. else if (syntax == "php")
  919. syntax = "html";
  920. }
  921. }
  922. return syntax;
  923. },
  924. getProfileName: function() {
  925. switch(this.getSyntax()) {
  926. case "css": return "css";
  927. case "xml":
  928. case "xsl":
  929. return "xml";
  930. case "html":
  931. var profile = emmet.require("resources").getVariable("profile");
  932. if (!profile)
  933. profile = this.ace.session.getLines(0,2).join("").search(/<!DOCTYPE[^>]+XHTML/i) != -1 ? "xhtml": "html";
  934. return profile;
  935. }
  936. return "xhtml";
  937. },
  938. prompt: function(title) {
  939. return prompt(title);
  940. },
  941. getSelection: function() {
  942. return this.ace.session.getTextRange();
  943. },
  944. getFilePath: function() {
  945. return "";
  946. },
  947. $updateTabstops: function(value) {
  948. var base = 1000;
  949. var zeroBase = 0;
  950. var lastZero = null;
  951. var range = emmet.require('range');
  952. var ts = emmet.require('tabStops');
  953. var settings = emmet.require('resources').getVocabulary("user");
  954. var tabstopOptions = {
  955. tabstop: function(data) {
  956. var group = parseInt(data.group, 10);
  957. var isZero = group === 0;
  958. if (isZero)
  959. group = ++zeroBase;
  960. else
  961. group += base;
  962. var placeholder = data.placeholder;
  963. if (placeholder) {
  964. placeholder = ts.processText(placeholder, tabstopOptions);
  965. }
  966. var result = '${' + group + (placeholder ? ':' + placeholder : '') + '}';
  967. if (isZero) {
  968. lastZero = range.create(data.start, result);
  969. }
  970. return result;
  971. },
  972. escape: function(ch) {
  973. if (ch == '$') return '\\$';
  974. if (ch == '\\') return '\\\\';
  975. return ch;
  976. }
  977. };
  978. value = ts.processText(value, tabstopOptions);
  979. if (settings.variables['insert_final_tabstop'] && !/\$\{0\}$/.test(value)) {
  980. value += '${0}';
  981. } else if (lastZero) {
  982. value = emmet.require('utils').replaceSubstring(value, '${0}', lastZero);
  983. }
  984. return value;
  985. }
  986. };
  987. var keymap = {
  988. expand_abbreviation: {"mac": "ctrl+alt+e", "win": "alt+e"},
  989. match_pair_outward: {"mac": "ctrl+d", "win": "ctrl+,"},
  990. match_pair_inward: {"mac": "ctrl+j", "win": "ctrl+shift+0"},
  991. matching_pair: {"mac": "ctrl+alt+j", "win": "alt+j"},
  992. next_edit_point: "alt+right",
  993. prev_edit_point: "alt+left",
  994. toggle_comment: {"mac": "command+/", "win": "ctrl+/"},
  995. split_join_tag: {"mac": "shift+command+'", "win": "shift+ctrl+`"},
  996. remove_tag: {"mac": "command+'", "win": "shift+ctrl+;"},
  997. evaluate_math_expression: {"mac": "shift+command+y", "win": "shift+ctrl+y"},
  998. increment_number_by_1: "ctrl+up",
  999. decrement_number_by_1: "ctrl+down",
  1000. increment_number_by_01: "alt+up",
  1001. decrement_number_by_01: "alt+down",
  1002. increment_number_by_10: {"mac": "alt+command+up", "win": "shift+alt+up"},
  1003. decrement_number_by_10: {"mac": "alt+command+down", "win": "shift+alt+down"},
  1004. select_next_item: {"mac": "shift+command+.", "win": "shift+ctrl+."},
  1005. select_previous_item: {"mac": "shift+command+,", "win": "shift+ctrl+,"},
  1006. reflect_css_value: {"mac": "shift+command+r", "win": "shift+ctrl+r"},
  1007. encode_decode_data_url: {"mac": "shift+ctrl+d", "win": "ctrl+'"},
  1008. expand_abbreviation_with_tab: "Tab",
  1009. wrap_with_abbreviation: {"mac": "shift+ctrl+a", "win": "shift+ctrl+a"}
  1010. };
  1011. var editorProxy = new AceEmmetEditor();
  1012. exports.commands = new HashHandler();
  1013. exports.runEmmetCommand = function(editor) {
  1014. try {
  1015. editorProxy.setupContext(editor);
  1016. if (editorProxy.getSyntax() == "php")
  1017. return false;
  1018. var actions = emmet.require("actions");
  1019. if (this.action == "expand_abbreviation_with_tab") {
  1020. if (!editor.selection.isEmpty())
  1021. return false;
  1022. }
  1023. if (this.action == "wrap_with_abbreviation") {
  1024. return setTimeout(function() {
  1025. actions.run("wrap_with_abbreviation", editorProxy);
  1026. }, 0);
  1027. }
  1028. var pos = editor.selection.lead;
  1029. var token = editor.session.getTokenAt(pos.row, pos.column);
  1030. if (token && /\btag\b/.test(token.type))
  1031. return false;
  1032. var result = actions.run(this.action, editorProxy);
  1033. } catch(e) {
  1034. editor._signal("changeStatus", typeof e == "string" ? e : e.message);
  1035. console.log(e);
  1036. result = false;
  1037. }
  1038. return result;
  1039. };
  1040. for (var command in keymap) {
  1041. exports.commands.addCommand({
  1042. name: "emmet:" + command,
  1043. action: command,
  1044. bindKey: keymap[command],
  1045. exec: exports.runEmmetCommand,
  1046. multiSelectAction: "forEach"
  1047. });
  1048. }
  1049. exports.updateCommands = function(editor, enabled) {
  1050. if (enabled) {
  1051. editor.keyBinding.addKeyboardHandler(exports.commands);
  1052. } else {
  1053. editor.keyBinding.removeKeyboardHandler(exports.commands);
  1054. }
  1055. };
  1056. exports.isSupportedMode = function(modeId) {
  1057. return modeId && /css|less|scss|sass|stylus|html|php|twig|ejs/.test(modeId);
  1058. };
  1059. var onChangeMode = function(e, target) {
  1060. var editor = target;
  1061. if (!editor)
  1062. return;
  1063. var enabled = exports.isSupportedMode(editor.session.$modeId);
  1064. if (e.enableEmmet === false)
  1065. enabled = false;
  1066. if (enabled) {
  1067. if (typeof emmetPath == "string") {
  1068. require("ace/config").loadModule(emmetPath, function() {
  1069. emmetPath = null;
  1070. });
  1071. }
  1072. }
  1073. exports.updateCommands(editor, enabled);
  1074. };
  1075. exports.AceEmmetEditor = AceEmmetEditor;
  1076. require("ace/config").defineOptions(Editor.prototype, "editor", {
  1077. enableEmmet: {
  1078. set: function(val) {
  1079. this[val ? "on" : "removeListener"]("changeMode", onChangeMode);
  1080. onChangeMode({enableEmmet: !!val}, this);
  1081. },
  1082. value: true
  1083. }
  1084. });
  1085. exports.setCore = function(e) {
  1086. if (typeof e == "string")
  1087. emmetPath = e;
  1088. else
  1089. emmet = e;
  1090. };
  1091. });
  1092. (function() {
  1093. ace.require(["ace/ext/emmet"], function() {});
  1094. })();