Caret/js/ui/cli.js
Thomas Wilburn 74a38bb9b6 Fixes #292
2014-08-30 23:56:33 -07:00

47 lines
No EOL
1 KiB
JavaScript

define([
"command",
"editor",
"util/dom2"
], function(command, editor) {
var cli = document.find(".command-line");
var input = document.find(".command-line input");
input.on("keyup", function(e) {
switch (e.keyCode) {
case 13:
//on enter, execute command
var value = input.value;
var split = value.split(" ");
var cmd = split[0];
var arg = split[1];
if (arg) {
try {
arg = JSON.parse(arg);
} catch (e) {
//failure to parse isn't the end of the world.
}
}
if (cmd) {
command.fire(cmd, arg);
}
case 27:
//on escape, also hide the prompt
cli.removeClass("show");
editor.focus();
}
});
command.on("app:show-prompt", function() {
input.value = "";
cli.addClass("show");
input.focus();
});
command.on("app:hide-prompt", function() {
cli.removeClass("show");
editor.focus();
})
});