Pretty solid build

This commit is contained in:
Devine Lu Linvega
2017-11-15 19:13:29 +13:00
parent aa64d70870
commit 516a91bfc5
8 changed files with 31 additions and 73 deletions

View File

@@ -22,10 +22,8 @@ function Commander()
for(setting_id in q.settings){
var setting_value = q.settings[setting_id];
if(!ronin.modules[q.module].settings[setting_id]){ console.log("Missing setting",setting_id); return; }
ronin.modules[q.module].settings[setting_id] = setting_value;
}
ronin.modules[q.module].routes = q.routes;
// Run methods
@@ -80,12 +78,7 @@ function Commander()
{
var target_module = ronin.commander.query().module;
if(ronin.modules[target_module]){
var ac = ronin.hint.find_autocomplete(ronin.modules[target_module].methods,":");
}
else{
var ac = ronin.hint.find_autocomplete(ronin.modules," ");
}
var ac = ronin.modules[target_module] ? ronin.hint.find_autocomplete(ronin.modules[target_module].methods,":") : ronin.hint.find_autocomplete(ronin.modules," ")
if(ac.lenght < 1 || !ac[0]){ return; }

View File

@@ -13,14 +13,6 @@ function Docs()
html += this.print_modules(ronin.modules);
html += this.print_license();
// dialog.showSaveDialog((fileName) => {
// if (fileName === undefined){ return; }
// console.log(fileName)
// fs.writeFile(fileName, html, (err) => {
// if(err){ alert("An error ocurred creating the file "+ err.message); return; }
// });
// });
fs.writeFile("/Users/VillaMoirai/Github/HundredRabbits/Ronin/README.md", html, (err) => {
if(err){ alert("An error ocurred creating the file "+ err.message); return; }
});
@@ -46,7 +38,6 @@ function Docs()
html += module.docs+"\n\n";
html += this.print_methods(module.methods)+"\n";
html += this.print_settings(module.settings)+"\n";
html += this.print_ports(module.ports)+"\n";
}
return html+"\n";
}
@@ -73,18 +64,6 @@ function Docs()
return html;
}
this.print_ports = function(ports)
{
var html = "### Ports\n";
for(port_name in ports){
var port = ports[port_name];
html += "- `"+(port.input ? '->' : '')+""+port.name+""+(port.output ? '->' : '')+"` **("+port.value+"/"+port.max+")** "+port.docs+".\n";
}
return html;
}
this.print_license = function()
{
html = "## License\n";

View File

@@ -9,7 +9,7 @@ function Hint()
{
ronin.commander.el.appendChild(this.el);
ronin.commander.el.appendChild(this.cursor_hint_el);
this.cursor_hint_el.innerHTML = "Hello";
this.cursor_hint_el.innerHTML = "";
}
this.find_autocomplete = function(collection,append = "")

View File

@@ -18,6 +18,7 @@ function Keyboard()
ronin.commander.input_el.value = "";
ronin.guide.update();
ronin.guide.clear();
ronin.guide.inspect = false;
ronin.preview.clear();
}
@@ -38,6 +39,8 @@ function Keyboard()
if(e.key == "n" && (e.ctrlKey || e.metaKey)){
e.preventDefault();
ronin.guide.inspect = false;
ronin.guide.clear();
ronin.render.clear();
}