2013-09-11 06:15:04 +00:00
|
|
|
define([
|
|
|
|
"sessions",
|
|
|
|
"command",
|
|
|
|
"editor",
|
|
|
|
"settings!menus",
|
|
|
|
"dom2"
|
|
|
|
], function(sessions, command, editor, Settings) {
|
2013-09-11 03:34:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
2013-09-11 04:52:50 +00:00
|
|
|
TODO:
|
|
|
|
- add reference mode
|
2013-09-14 01:11:47 +00:00
|
|
|
- add search mode
|
2013-09-11 04:52:50 +00:00
|
|
|
|
2013-09-11 03:34:28 +00:00
|
|
|
*/
|
2013-09-10 16:19:14 +00:00
|
|
|
|
|
|
|
var resultTemplate = document.find("#palette-result").content;
|
2013-09-11 06:15:04 +00:00
|
|
|
|
2013-09-10 16:19:14 +00:00
|
|
|
var re = {
|
|
|
|
file: /^([^:#@]*)/,
|
|
|
|
line: /:(\d*)/,
|
|
|
|
reference: /@([^:#]*)/,
|
|
|
|
search: /#([^:@]*)/
|
|
|
|
};
|
|
|
|
|
|
|
|
var prefixes = {
|
|
|
|
":": "line",
|
|
|
|
"@": "reference",
|
|
|
|
"#": "search"
|
|
|
|
};
|
|
|
|
|
|
|
|
var modes = {
|
|
|
|
"line": ":",
|
|
|
|
"search": "#",
|
|
|
|
"reference": "@"
|
|
|
|
};
|
|
|
|
|
2013-09-11 06:15:04 +00:00
|
|
|
var Palette = function() {
|
|
|
|
this.results = [];
|
|
|
|
this.selected = 0;
|
|
|
|
this.element = document.find(".palette");
|
|
|
|
this.input = this.element.find("input");
|
|
|
|
this.resultList = this.element.find(".results");
|
|
|
|
this.commandMode = false;
|
|
|
|
this.bindInput();
|
|
|
|
};
|
|
|
|
Palette.prototype = {
|
|
|
|
bindInput: function() {
|
|
|
|
var input = this.input;
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
input.on("blur", function() {
|
|
|
|
self.deactivate();
|
|
|
|
});
|
2013-09-11 03:34:28 +00:00
|
|
|
|
2013-09-11 06:15:04 +00:00
|
|
|
input.on("keydown", function(e) {
|
|
|
|
if (e.keyCode == 27) {
|
|
|
|
sessions.restoreLocation();
|
|
|
|
return input.blur();
|
|
|
|
}
|
|
|
|
if (e.keyCode == 13) {
|
|
|
|
e.stopImmediatePropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
self.executeCurrent();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (e.keyCode == 38 || e.keyCode == 40) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopImmediatePropagation();
|
|
|
|
self.navigateList(e.keyCode == 38 ? -1 : 1);
|
|
|
|
self.render();
|
|
|
|
}
|
|
|
|
});
|
2013-09-11 03:34:28 +00:00
|
|
|
|
2013-09-11 06:15:04 +00:00
|
|
|
input.on("keyup", function(e) {
|
|
|
|
self.parse(input.value);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
parse: function(query) {
|
|
|
|
var startsWith = query[0];
|
|
|
|
if (startsWith in prefixes) {
|
|
|
|
this.commandMode = false;
|
|
|
|
}
|
|
|
|
if (this.commandMode) {
|
|
|
|
this.findCommands(query);
|
|
|
|
} else {
|
|
|
|
this.findLocations(query);
|
|
|
|
}
|
|
|
|
this.render();
|
|
|
|
},
|
|
|
|
findCommands: function(query) {
|
|
|
|
if (query.length == 0) return this.results = [];
|
|
|
|
var fuzzyCommand = new RegExp(query.split("").join(".*"), "i");
|
|
|
|
var results = [];
|
|
|
|
var menus = Settings.get("menus");
|
|
|
|
var menuWalker = function(menu) {
|
|
|
|
for (var i = 0; i < menu.length; i++) {
|
|
|
|
var item = menu[i];
|
|
|
|
if (fuzzyCommand.test(item.label)) {
|
|
|
|
results.push(item);
|
|
|
|
}
|
|
|
|
if (item.sub) {
|
|
|
|
menuWalker(item.sub);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
menuWalker(menus);
|
|
|
|
this.results = results;
|
|
|
|
},
|
|
|
|
findLocations: function(query) {
|
2013-09-11 03:34:28 +00:00
|
|
|
var file = re.file.test(query) && re.file.exec(query)[1];
|
2013-09-11 04:52:50 +00:00
|
|
|
var line = re.line.test(query) && Number(re.line.exec(query)[1]) - 1;
|
2013-09-11 03:34:28 +00:00
|
|
|
var search = re.search.test(query) && re.search.exec(query)[1];
|
|
|
|
var reference = re.reference.test(query) && re.reference.exec(query)[1];
|
2013-09-11 06:15:04 +00:00
|
|
|
var results = [];
|
2013-09-11 03:34:28 +00:00
|
|
|
|
|
|
|
var openFileNames = sessions.getFilenames();
|
|
|
|
var tabs;
|
|
|
|
|
|
|
|
if (file) {
|
2013-09-11 06:15:04 +00:00
|
|
|
var fuzzyFile = new RegExp(file.split("").join(".*"), "i");
|
2013-09-11 03:34:28 +00:00
|
|
|
var matches = openFileNames.filter(function(name) {
|
|
|
|
return fuzzyFile.test(name);
|
|
|
|
});
|
2013-09-11 04:52:50 +00:00
|
|
|
results = matches.map(sessions.getTabByName);
|
2013-09-11 03:34:28 +00:00
|
|
|
} else {
|
2013-09-11 04:52:50 +00:00
|
|
|
results = [ sessions.getCurrent() ];
|
2013-09-11 03:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (search) {
|
2013-09-11 06:15:04 +00:00
|
|
|
results = results.filter(function(t) {
|
|
|
|
return t.getValue().toLowerCase().indexOf(search.toLowerCase()) > -1;
|
|
|
|
});
|
2013-09-11 03:34:28 +00:00
|
|
|
}
|
2013-09-11 06:15:04 +00:00
|
|
|
|
|
|
|
this.results = results;
|
|
|
|
|
|
|
|
if (results.length) {
|
|
|
|
results[this.selected].raiseBlurred();
|
|
|
|
if (line) {
|
|
|
|
editor.clearSelection();
|
|
|
|
editor.moveCursorTo(line, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
executeCurrent: function() {
|
|
|
|
var current = this.results[this.selected];
|
|
|
|
if (!current) return;
|
|
|
|
if (this.commandMode) {
|
|
|
|
command.fire(current.command, current.argument);
|
|
|
|
}
|
|
|
|
this.deactivate();
|
|
|
|
editor.focus();
|
|
|
|
},
|
|
|
|
activate: function(mode) {
|
|
|
|
this.results = [];
|
|
|
|
this.selected = 0;
|
2013-09-20 06:45:04 +00:00
|
|
|
this.input.value = "";
|
|
|
|
this.commandMode = mode == "command";
|
|
|
|
this.input.value = modes[mode] || "";
|
2013-09-11 06:15:04 +00:00
|
|
|
this.render();
|
|
|
|
this.element.classList.add("active");
|
|
|
|
this.input.focus();
|
|
|
|
},
|
|
|
|
deactivate: function() {
|
|
|
|
this.element.classList.remove("active");
|
|
|
|
},
|
|
|
|
navigateList: function(interval) {
|
|
|
|
this.selected = (this.selected + interval) % this.results.length;
|
|
|
|
if (this.selected < 0) {
|
|
|
|
this.selected = this.results.length + this.selected;
|
2013-09-11 04:52:50 +00:00
|
|
|
}
|
2013-09-11 06:15:04 +00:00
|
|
|
var current = this.results[this.selected];
|
|
|
|
if (current && current.raise) {
|
|
|
|
current.raiseBlurred(true);
|
|
|
|
}
|
|
|
|
this.render();
|
|
|
|
},
|
|
|
|
render: function() {
|
|
|
|
var self = this;
|
|
|
|
this.element.find(".mode").innerHTML = this.commandMode ? "Command:" : "Go To:";
|
|
|
|
this.resultList.innerHTML = "";
|
|
|
|
this.results.slice(0, 10).forEach(function(r, i) {
|
|
|
|
var element = resultTemplate.cloneNode(true).find("li");
|
|
|
|
element.innerHTML = r.fileName || r.label;
|
|
|
|
if (i == self.selected) {
|
|
|
|
element.classList.add("current");
|
|
|
|
}
|
|
|
|
self.resultList.appendChild(element);
|
|
|
|
});
|
2013-09-11 03:34:28 +00:00
|
|
|
}
|
2013-09-10 16:19:14 +00:00
|
|
|
};
|
|
|
|
|
2013-09-11 06:15:04 +00:00
|
|
|
var palette = new Palette();
|
2013-09-10 16:19:14 +00:00
|
|
|
|
|
|
|
command.on("palette:open", function(mode) {
|
2013-09-11 03:34:28 +00:00
|
|
|
sessions.saveLocation();
|
2013-09-11 06:15:04 +00:00
|
|
|
palette.activate(mode);
|
2013-09-10 16:19:14 +00:00
|
|
|
});
|
2013-09-11 06:15:04 +00:00
|
|
|
|
|
|
|
return palette;
|
2013-09-10 16:19:14 +00:00
|
|
|
|
|
|
|
});
|