Bug 1011530 - [appmgr v2] Remove the logs from the main UI. r=janx r=ochameau

This commit is contained in:
Paul Rouget 2014-05-22 09:14:54 +02:00
Родитель 31f725c890
Коммит 263196efad
8 изменённых файлов: 127 добавлений и 163 удалений

Просмотреть файл

@ -5,8 +5,8 @@
const Cc = Components.classes; const Cc = Components.classes;
const Cu = Components.utils; const Cu = Components.utils;
const Ci = Components.interfaces; const Ci = Components.interfaces;
Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource://gre/modules/Services.jsm");
Cu.import("resource://gre/modules/XPCOMUtils.jsm"); Cu.import("resource://gre/modules/XPCOMUtils.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "ZipUtils", "resource://gre/modules/ZipUtils.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "ZipUtils", "resource://gre/modules/ZipUtils.jsm");
@ -100,18 +100,18 @@ function doOK() {
let projectName = document.querySelector("#project-name").value; let projectName = document.querySelector("#project-name").value;
if (!projectName) { if (!projectName) {
AppManager.console.error("No project name"); console.error("No project name");
return false; return false;
} }
if (!gTemplateList) { if (!gTemplateList) {
AppManager.console.error("No template index"); console.error("No template index");
return false; return false;
} }
let templatelistNode = document.querySelector("#templatelist"); let templatelistNode = document.querySelector("#templatelist");
if (templatelistNode.selectedIndex < 0) { if (templatelistNode.selectedIndex < 0) {
AppManager.console.error("No template selected"); console.error("No template selected");
return false; return false;
} }
@ -126,7 +126,7 @@ function doOK() {
fp.init(window, "Select directory where to create app directory", Ci.nsIFilePicker.modeGetFolder); fp.init(window, "Select directory where to create app directory", Ci.nsIFilePicker.modeGetFolder);
let res = fp.show(); let res = fp.show();
if (res == Ci.nsIFilePicker.returnCancel) { if (res == Ci.nsIFilePicker.returnCancel) {
AppManager.console.error("No directory selected"); console.error("No directory selected");
return false; return false;
} }
folder = fp.file; folder = fp.file;
@ -139,7 +139,7 @@ function doOK() {
try { try {
folder.create(Ci.nsIFile.DIRECTORY_TYPE, FileUtils.PERMS_DIRECTORY); folder.create(Ci.nsIFile.DIRECTORY_TYPE, FileUtils.PERMS_DIRECTORY);
} catch(e) { } catch(e) {
AppManager.console.error(e); console.error(e);
return false; return false;
} }
@ -150,7 +150,7 @@ function doOK() {
target.append(subfolder + ".zip"); target.append(subfolder + ".zip");
let bail = (e) => { let bail = (e) => {
AppManager.console.error(e); console.error(e);
window.close(); window.close();
}; };

Просмотреть файл

@ -22,6 +22,7 @@ const ProjectEditor = require("projecteditor/projecteditor");
const Strings = Services.strings.createBundle("chrome://webide/content/webide.properties"); const Strings = Services.strings.createBundle("chrome://webide/content/webide.properties");
const HTML = "http://www.w3.org/1999/xhtml"; const HTML = "http://www.w3.org/1999/xhtml";
const HELP_URL = "https://developer.mozilla.org/Firefox_OS/Using_the_App_Manager#Troubleshooting";
window.addEventListener("load", function onLoad() { window.addEventListener("load", function onLoad() {
window.removeEventListener("load", onLoad); window.removeEventListener("load", onLoad);
@ -43,8 +44,6 @@ let UI = {
this.appManagerUpdate = this.appManagerUpdate.bind(this); this.appManagerUpdate = this.appManagerUpdate.bind(this);
AppManager.on("app-manager-update", this.appManagerUpdate); AppManager.on("app-manager-update", this.appManagerUpdate);
this.logNode = document.querySelector("#logs");
this.updateCommands(); this.updateCommands();
this.updateRuntimeList(); this.updateRuntimeList();
@ -64,11 +63,6 @@ let UI = {
} catch(e) { } catch(e) {
AppManager.selectedProject = null; AppManager.selectedProject = null;
} }
document.querySelector("#toggle-logs").addEventListener("click", function() {
document.querySelector("#logs").classList.toggle("expand");
UI.logNode.scrollTop = UI.logNode.scrollTopMax;
});
}, },
uninit: function() { uninit: function() {
@ -92,12 +86,6 @@ let UI = {
appManagerUpdate: function(event, what, details) { appManagerUpdate: function(event, what, details) {
// Got a message from app-manager.js // Got a message from app-manager.js
switch (what) { switch (what) {
case "console":
if (details.level == "log") this.console.log(details.message);
if (details.level == "warning") this.console.warning(details.message);
if (details.level == "error") this.console.error(details.message);
if (details.level == "success") this.console.success(details.message);
break;
case "runtimelist": case "runtimelist":
this.updateRuntimeList(); this.updateRuntimeList();
break; break;
@ -172,7 +160,7 @@ let UI = {
this.hidePanels(); this.hidePanels();
let timeout = setTimeout(() => { let timeout = setTimeout(() => {
this.unbusy(); this.unbusy();
this.console.error("Operation timeout: " + operationDescription); UI.reportError("error_operationTimeout", operationDescription);
}, 30000); }, 30000);
this.busy(); this.busy();
promise.then(() => { promise.then(() => {
@ -180,12 +168,38 @@ let UI = {
this.unbusy(); this.unbusy();
}, (e) => { }, (e) => {
clearTimeout(timeout); clearTimeout(timeout);
this.console.error("Error while processing: " + operationDescription + ": " + e); UI.reportError("error_operationFail", operationDescription);
console.error(e);
this.unbusy(); this.unbusy();
}); });
return promise; return promise;
}, },
reportError: function(l10nProperty, ...l10nArgs) {
let text;
if (l10nArgs.length > 0) {
text = Strings.formatStringFromName(l10nProperty, l10nArgs, l10nArgs.length);
} else {
text = Strings.GetStringFromName(l10nProperty);
}
console.error(text);
let buttons = [{
label: Strings.GetStringFromName("notification_showTroubleShooting_label"),
accessKey: Strings.GetStringFromName("notification_showTroubleShooting_accesskey"),
callback: function () {
Cmds.showTroubleShooting();
}
}];
let nbox = document.querySelector("#body");
nbox.removeAllNotifications(true);
nbox.appendNotification(text, "webide:errornotification", null,
nbox.PRIORITY_WARNING_LOW, buttons);
},
/********** RUNTIME **********/ /********** RUNTIME **********/
updateRuntimeList: function() { updateRuntimeList: function() {
@ -195,8 +209,6 @@ let UI = {
USBListNode.firstChild.remove(); USBListNode.firstChild.remove();
} }
this.console.log("Found " + AppManager.runtimeList.usb.length + " USB devices.");
this.console.log("Found " + AppManager.runtimeList.simulator.length + " simulators.");
for (let runtime of AppManager.runtimeList.usb) { for (let runtime of AppManager.runtimeList.usb) {
let panelItemNode = document.createElement("toolbarbutton"); let panelItemNode = document.createElement("toolbarbutton");
panelItemNode.className = "panel-item runtime-panel-item-usbruntime"; panelItemNode.className = "panel-item runtime-panel-item-usbruntime";
@ -229,11 +241,7 @@ let UI = {
connectToRuntime: function(runtime) { connectToRuntime: function(runtime) {
let name = runtime.getName(); let name = runtime.getName();
let promise = AppManager.connectToRuntime(runtime); let promise = AppManager.connectToRuntime(runtime);
this.busyUntil(promise, "connecting to runtime"); return this.busyUntil(promise, "connecting to runtime");
promise.then(
() => {this.console.success("Connected to " + name)},
() => {this.console.error("Can't connect to " + name)});
return promise;
}, },
updateRuntimeButton: function() { updateRuntimeButton: function() {
@ -303,9 +311,19 @@ let UI = {
return; return;
} }
// Make sure the directory exist before we show Project Editor
let forceDetailsOnly = false;
if (project.type == "packaged") {
let directory = new FileUtils.File(project.location);
forceDetailsOnly = !directory.exists();
}
// Show only the details screen // Show only the details screen
if (project.type != "packaged" || !this.isProjectEditorEnabled()) { if (project.type != "packaged" ||
!this.isProjectEditorEnabled() ||
forceDetailsOnly) {
detailsIframe.removeAttribute("hidden"); detailsIframe.removeAttribute("hidden");
projecteditorIframe.setAttribute("hidden", "true"); projecteditorIframe.setAttribute("hidden", "true");
document.commandDispatcher.focusedElement = document.documentElement; document.commandDispatcher.focusedElement = document.documentElement;
@ -323,7 +341,7 @@ let UI = {
iconUrl: project.icon, iconUrl: project.icon,
projectOverviewURL: "chrome://webide/content/details.xhtml" projectOverviewURL: "chrome://webide/content/details.xhtml"
}); });
}, UI.console.error); }, console.error);
if (project.location) { if (project.location) {
Services.prefs.setCharPref("devtools.webide.lastprojectlocation", project.location); Services.prefs.setCharPref("devtools.webide.lastprojectlocation", project.location);
@ -439,7 +457,7 @@ let UI = {
this.closeToolboxUI(); this.closeToolboxUI();
break; break;
} }
} catch(e) { Cu.reportError(e); } } catch(e) { console.error(e); }
}, },
closeToolbox: function() { closeToolbox: function() {
@ -447,7 +465,7 @@ let UI = {
this.toolboxPromise.then(toolbox => { this.toolboxPromise.then(toolbox => {
toolbox.destroy(); toolbox.destroy();
this.toolboxPromise = null; this.toolboxPromise = null;
}, this.console.error); }, console.error);
} }
}, },
@ -488,32 +506,6 @@ let UI = {
splitter.setAttribute("hidden", "true"); splitter.setAttribute("hidden", "true");
document.querySelector("#action-button-debug").removeAttribute("active"); document.querySelector("#action-button-debug").removeAttribute("active");
}, },
console: {
_log: function(msg, classname) {
let li = document.createElementNS(HTML, "p");
li.textContent = msg;
li.className = classname;
UI.logNode.appendChild(li);
UI.logNode.scrollTop = UI.logNode.scrollTopMax;
},
log: function(msg) {
UI.console._log(msg, "log");
console.log(msg);
},
warning: function(msg) {
UI.console._log(msg, "warning");
console.warning(msg);
},
error: function(msg) {
UI.console._log(msg, "error");
console.error(msg);
},
success: function(msg) {
UI.console._log(msg, "success");
console.log(msg);
},
},
} }
@ -672,8 +664,6 @@ let Cmds = {
runtimeAppsNode.firstChild.remove(); runtimeAppsNode.firstChild.remove();
} }
UI.console.log("Found " + AppManager.webAppsStore.object.all.length + " apps");
for (let i = 0; i < AppManager.webAppsStore.object.all.length; i++) { for (let i = 0; i < AppManager.webAppsStore.object.all.length; i++) {
let app = AppManager.webAppsStore.object.all[i]; let app = AppManager.webAppsStore.object.all[i];
let panelItemNode = document.createElement("toolbarbutton"); let panelItemNode = document.createElement("toolbarbutton");
@ -717,7 +707,7 @@ let Cmds = {
takeScreenshot: function() { takeScreenshot: function() {
return UI.busyUntil(AppManager.deviceFront.screenshotToDataURL().then(longstr => { return UI.busyUntil(AppManager.deviceFront.screenshotToDataURL().then(longstr => {
return longstr.string().then(dataURL => { return longstr.string().then(dataURL => {
longstr.release().then(null, UI.console.error); longstr.release().then(null, console.error);
UI.openInBrowser(dataURL); UI.openInBrowser(dataURL);
}); });
}), "taking screenshot"); }), "taking screenshot");
@ -825,7 +815,7 @@ let Cmds = {
} else { } else {
UI.toolboxPromise = AppManager.getTarget().then((target) => { UI.toolboxPromise = AppManager.getTarget().then((target) => {
return UI.showToolbox(target); return UI.showToolbox(target);
}, UI.console.error); }, console.error);
UI.busyUntil(UI.toolboxPromise, "opening toolbox"); UI.busyUntil(UI.toolboxPromise, "opening toolbox");
return UI.toolboxPromise; return UI.toolboxPromise;
} }
@ -836,6 +826,11 @@ let Cmds = {
}, },
toggleEditors: function() { toggleEditors: function() {
// Toggle Itchpad Services.prefs.setBoolPref("devtools.webide.showProjectEditor", !UI.isProjectEditorEnabled());
UI.openProject();
},
showTroubleShooting: function() {
UI.openInBrowser(HELP_URL);
}, },
} }

Просмотреть файл

@ -148,18 +148,13 @@
</popupset> </popupset>
<vbox flex="1" id="body"> <notificationbox flex="1" id="body">
<iframe id="details" flex="1" hidden="true" src="details.xhtml"/> <iframe id="details" flex="1" hidden="true" src="details.xhtml"/>
<iframe id="projecteditor" flex="1" hidden="true"/> <iframe id="projecteditor" flex="1" hidden="true"/>
</vbox> </notificationbox>
<splitter hidden="true" class="devtools-horizontal-splitter" orient="vertical"/> <splitter hidden="true" class="devtools-horizontal-splitter" orient="vertical"/>
<!-- toolbox iframe will be inserted here --> <!-- toolbox iframe will be inserted here -->
<html:div id="logs-container">
<html:pre id="logs"></html:pre>
<html:button id="toggle-logs">&logs;</html:button>
</html:div>
</window> </window>

Просмотреть файл

@ -61,9 +61,6 @@
<!ENTITY runtimePanel_USBDevices "USB Devices"> <!ENTITY runtimePanel_USBDevices "USB Devices">
<!ENTITY runtimePanel_simulators "Simulators"> <!ENTITY runtimePanel_simulators "Simulators">
<!ENTITY logs "Logs">
<!-- Lense --> <!-- Lense -->
<!ENTITY details_valid_header "valid"> <!ENTITY details_valid_header "valid">
<!ENTITY details_warning_header "warnings"> <!ENTITY details_warning_header "warnings">

Просмотреть файл

@ -11,3 +11,13 @@ projectButton_label=Open App
importPackagedApp_title=Select directory importPackagedApp_title=Select directory
importHostedApp_title=Open Hosted App importHostedApp_title=Open Hosted App
importHostedApp_header=Enter Manifest URL importHostedApp_header=Enter Manifest URL
notification_showTroubleShooting_label=troubleshooting
notification_showTroubleShooting_accesskey=t
error_operationTimeout=Operation timed out: %1$S
error_operationFail=Operation failed: %1$S
error_listRunningApps=Can't get app list from device
error_cantConnectToApp=Can't connect to app: %1$S
error_cantInstallNotFullyConnected=Can't install project. Not fully connected.
error_cantInstallValidationErrors=Can't install project. Validation errors.

Просмотреть файл

@ -19,6 +19,8 @@ const {ConnectionManager, Connection} = require("devtools/client/connection-mana
const AppActorFront = require("devtools/app-actor-front"); const AppActorFront = require("devtools/app-actor-front");
const {getDeviceFront} = require("devtools/server/actors/device"); const {getDeviceFront} = require("devtools/server/actors/device");
const Strings = Services.strings.createBundle("chrome://webide/content/webide.properties");
exports.AppManager = AppManager = { exports.AppManager = AppManager = {
// FIXME: will break when devtools/app-manager will be removed: // FIXME: will break when devtools/app-manager will be removed:
@ -55,26 +57,33 @@ exports.AppManager = AppManager = {
this.connection = null; this.connection = null;
}, },
console: {
// Forward console.* calls to the UI
log: function(msg) { AppManager.update("console", {level: "log", message: msg}); },
warning: function(msg) { AppManager.update("console", {level: "warning", message: msg}); },
error: function(msg) { AppManager.update("console", {level: "error", message: msg}); },
success: function(msg) { AppManager.update("console", {level: "success", message: msg}); },
},
update: function(what, details) { update: function(what, details) {
// Anything we want to forward to the UI // Anything we want to forward to the UI
this.emit("app-manager-update", what, details); this.emit("app-manager-update", what, details);
}, },
reportError: function(l10nProperty, ...l10nArgs) {
let win = Services.wm.getMostRecentWindow("devtools:webide");
if (win) {
win.UI.reportError(l10nProperty, ...l10nArgs);
} else {
let text;
if (l10nArgs.length > 0) {
text = Strings.formatStringFromName(l10nProperty, l10nArgs, l10nArgs.length);
} else {
text = Strings.GetStringFromName(l10nProperty);
}
console.error(text);
}
},
onConnectionChanged: function() { onConnectionChanged: function() {
if (this.connection.status == Connection.Status.DISCONNECTED) { if (this.connection.status == Connection.Status.DISCONNECTED) {
this.selectedRuntime = null; this.selectedRuntime = null;
} }
if (this.connection.status != Connection.Status.CONNECTED) { if (this.connection.status != Connection.Status.CONNECTED) {
AppManager.console.log("Connection status changed: " + this.connection.status); console.log("Connection status changed: " + this.connection.status);
this._runningApps.clear(); this._runningApps.clear();
this._unlistenToApps(); this._unlistenToApps();
this._listTabsResponse = null; this._listTabsResponse = null;
@ -101,7 +110,8 @@ exports.AppManager = AppManager = {
}; };
client.request(request, (res) => { client.request(request, (res) => {
if (res.error) { if (res.error) {
AppManager.console.error("listRunningApps error: " + res.error); this.reportError("error_listRunningApps");
console.error("listRunningApps error: " + res.error);
} }
for (let m of res.apps) { for (let m of res.apps) {
this._runningApps.add(m); this._runningApps.add(m);
@ -112,19 +122,16 @@ exports.AppManager = AppManager = {
_listenToApps: function() { _listenToApps: function() {
let client = this.connection.client; let client = this.connection.client;
client.addListener("appOpen", (type, { manifestURL }) => { client.addListener("appOpen", (type, { manifestURL }) => {
AppManager.console.log("App open: " + manifestURL);
this._runningApps.add(manifestURL); this._runningApps.add(manifestURL);
this.checkIfProjectIsRunning(); this.checkIfProjectIsRunning();
}); });
client.addListener("appClose", (type, { manifestURL }) => { client.addListener("appClose", (type, { manifestURL }) => {
AppManager.console.log("App close: " + manifestURL);
this._runningApps.delete(manifestURL); this._runningApps.delete(manifestURL);
this.checkIfProjectIsRunning(); this.checkIfProjectIsRunning();
}); });
client.addListener("appUninstall", (type, { manifestURL }) => { client.addListener("appUninstall", (type, { manifestURL }) => {
AppManager.console.log("App uninstall: " + manifestURL);
this._runningApps.delete(manifestURL); this._runningApps.delete(manifestURL);
this.checkIfProjectIsRunning(); this.checkIfProjectIsRunning();
}); });
@ -142,15 +149,9 @@ exports.AppManager = AppManager = {
checkIfProjectIsRunning: function() { checkIfProjectIsRunning: function() {
if (this.selectedProject) { if (this.selectedProject) {
if (this.isProjectRunning()) { if (this.isProjectRunning()) {
AppManager.console.log("Project is running on " + this.selectedRuntime.getName());
this.update("project-is-running"); this.update("project-is-running");
this._notRunningLogged = false;
} else { } else {
this.update("project-is-not-running"); this.update("project-is-not-running");
if (!this._notRunningLogged) {
this._notRunningLogged = true;
AppManager.console.log("Project is not running");
}
} }
} }
}, },
@ -163,12 +164,15 @@ exports.AppManager = AppManager = {
let actor = this._listTabsResponse.webappsActor; let actor = this._listTabsResponse.webappsActor;
let promise = AppActorFront.getTargetForApp(client, actor, manifest); let promise = AppActorFront.getTargetForApp(client, actor, manifest);
promise.then(( ) => { AppManager.console.log("Connected to app: " + name) }, promise.then(( ) => { },
(e) => { AppManager.console.error("Can't connect to app: " + e) }); (e) => {
this.reportError("error_cantConnectToApp", manifestURL);
console.error("Can't connect to app: " + e)
});
return promise; return promise;
} }
AppManager.console.error("Can't find manifestURL for selected project"); console.error("Can't find manifestURL for selected project");
return promise.reject(); return promise.reject();
}, },
@ -196,14 +200,11 @@ exports.AppManager = AppManager = {
this._selectedProject = value; this._selectedProject = value;
if (this.selectedProject) { if (this.selectedProject) {
AppManager.console.log("New project selected: " + this.selectedProject.name);
if (this.selectedProject.type == "runtimeApp") { if (this.selectedProject.type == "runtimeApp") {
this.runRuntimeApp(); this.runRuntimeApp();
} else { } else {
this.validateProject(this.selectedProject); this.validateProject(this.selectedProject);
} }
} else {
AppManager.console.log("No project selected");
} }
this.update("project"); this.update("project");
@ -243,7 +244,6 @@ exports.AppManager = AppManager = {
this.selectedRuntime = runtime; this.selectedRuntime = runtime;
let deferred = promise.defer(); let deferred = promise.defer();
AppManager.console.log("Connecting to " + runtime.getName());
let onConnectedOrDisconnected = () => { let onConnectedOrDisconnected = () => {
this.connection.off(Connection.Events.CONNECTED, onConnectedOrDisconnected); this.connection.off(Connection.Events.CONNECTED, onConnectedOrDisconnected);
this.connection.off(Connection.Events.DISCONNECTED, onConnectedOrDisconnected); this.connection.off(Connection.Events.DISCONNECTED, onConnectedOrDisconnected);
@ -293,19 +293,19 @@ exports.AppManager = AppManager = {
let project = this.selectedProject; let project = this.selectedProject;
if (!project || (project.type != "packaged" && project.type != "hosted")) { if (!project || (project.type != "packaged" && project.type != "hosted")) {
AppManager.console.error("Can't install project. Unknown type of project."); console.error("Can't install project. Unknown type of project.");
return promise.reject("Can't install"); return promise.reject("Can't install");
} }
if (!this._listTabsResponse) { if (!this._listTabsResponse) {
AppManager.console.error("Can't install project. Not fully connected."); this.reportError("error_cantInstallNotFullyConnected");
return promise.reject("Can't install"); return promise.reject("Can't install");
} }
return this.validateProject(project).then(() => { return this.validateProject(project).then(() => {
if (project.errorsCount > 0) { if (project.errorsCount > 0) {
AppManager.console.error("Can't install project. Validation errors."); this.reportError("error_cantInstallValidationErrors");
return; return;
} }
@ -342,15 +342,15 @@ exports.AppManager = AppManager = {
return installPromise.then(() => { return installPromise.then(() => {
let manifest = this.getProjectManifestURL(project); let manifest = this.getProjectManifestURL(project);
if (!this._runningApps.has(manifest)) { if (!this._runningApps.has(manifest)) {
AppManager.console.log("Launching app: " + project.name); console.log("Launching app: " + project.name);
AppActorFront.launchApp(client, actor, manifest); AppActorFront.launchApp(client, actor, manifest);
} else { } else {
AppManager.console.log("Reloading app: " + project.name); console.log("Reloading app: " + project.name);
AppActorFront.reloadApp(client, actor, manifest); AppActorFront.reloadApp(client, actor, manifest);
} }
}); });
}, AppManager.console.error); }, console.error);
}, },
stopRunningApp: function() { stopRunningApp: function() {
@ -411,22 +411,18 @@ exports.AppManager = AppManager = {
project.warningsCount = validation.warnings.length; project.warningsCount = validation.warnings.length;
project.warnings = validation.warnings; project.warnings = validation.warnings;
project.validationStatus = "warning"; project.validationStatus = "warning";
AppManager.console.warning("Validation (" + project.name + "): found " + validation.warnings.length + " warnings.");
} else { } else {
project.warnings = ""; project.warnings = "";
project.warningsCount = 0; project.warningsCount = 0;
AppManager.console.log("Validation (" + project.name + "): no warnings found.");
} }
if (validation.errors.length > 0) { if (validation.errors.length > 0) {
project.errorsCount = validation.errors.length; project.errorsCount = validation.errors.length;
project.errors = validation.errors; project.errors = validation.errors;
project.validationStatus = "error"; project.validationStatus = "error";
AppManager.console.error("Validation (" + project.name + "): found " + validation.errors.length + " errors.");
} else { } else {
project.errors = ""; project.errors = "";
project.errorsCount = 0; project.errorsCount = 0;
AppManager.console.log("Validation (" + project.name + "): no errors found.");
} }
if (project.warningsCount && project.errorsCount) { if (project.warningsCount && project.errorsCount) {
@ -442,7 +438,7 @@ exports.AppManager = AppManager = {
} }
return project; return project;
}, AppManager.console.error); }, console.error);
}, },
/* RUNTIME LIST */ /* RUNTIME LIST */
@ -515,7 +511,7 @@ USBRuntime.prototype = {
connect: function(connection) { connect: function(connection) {
let device = Devices.getByName(this.id); let device = Devices.getByName(this.id);
if (!device) { if (!device) {
AppManager.console.error("Can't find device: " + id); console.error("Can't find device: " + id);
return promise.reject(); return promise.reject();
} }
return device.connect().then((port) => { return device.connect().then((port) => {
@ -541,7 +537,7 @@ SimulatorRuntime.prototype = {
let port = ConnectionManager.getFreeTCPPort(); let port = ConnectionManager.getFreeTCPPort();
let simulator = Simulator.getByVersion(this.version); let simulator = Simulator.getByVersion(this.version);
if (!simulator || !simulator.launch) { if (!simulator || !simulator.launch) {
AppManager.console.error("Can't find simulator: " + this.version); console.error("Can't find simulator: " + this.version);
return promise.reject(); return promise.reject();
} }
return simulator.launch({port: port}).then(() => { return simulator.launch({port: port}).then(() => {

Просмотреть файл

@ -18,21 +18,34 @@
window.onload = function() { window.onload = function() {
SimpleTest.waitForExplicitFinish(); SimpleTest.waitForExplicitFinish();
openWebIDE().then((win) => { Task.spawn(function* () {
let win = yield openWebIDE();
ok(win, "Found a window"); ok(win, "Found a window");
ok(win.AppManager, "App Manager accessible"); ok(win.AppManager, "App Manager accessible");
let appmgr = win.AppManager; let appmgr = win.AppManager;
ok(appmgr.connection, "App Manager connection ready"); ok(appmgr.connection, "App Manager connection ready");
ok(appmgr.runtimeList, "Runtime list ready"); ok(appmgr.runtimeList, "Runtime list ready");
ok(appmgr.webAppsStore, "WebApps store ready"); ok(appmgr.webAppsStore, "WebApps store ready");
closeWebIDE(win).then(() => {
ok(!appmgr.connection, "App Manager connection destroyed");
ok(!appmgr.runtimeList, "Runtime list destroyed");
ok(!appmgr.webAppsStore, "WebApps store destroyed");
SimpleTest.finish();
});
});
// test error reporting
let nbox = win.document.querySelector("#body");
let notification = nbox.getNotificationWithValue("webide:errornotification");
ok(!notification, "No notification yet");
let deferred = promise.defer();
nextTick().then(() => {
deferred.reject("BOOM!");
});
try {
yield win.UI.busyUntil(deferred.promise, "xx");
} catch(e) {/* This *will* fail */}
notification = nbox.getNotificationWithValue("webide:errornotification");
ok(notification, "Error has been reported");
yield closeWebIDE(win);
SimpleTest.finish();
});
} }
</script> </script>
</body> </body>

Просмотреть файл

@ -235,45 +235,3 @@ panel > .panel-arrowcontainer > .panel-arrowcontent {
position: relative; position: relative;
border-bottom: 1px solid #aaa; border-bottom: 1px solid #aaa;
} }
/* Logs */
#logs-container {
position: relative;
}
#logs {
overflow: auto;
padding: 0 6px;
margin: 0;
line-height: 12px;
font-size: 8px;
background-color: #1F1F1F;
color: #8fa1b2;
height: 24px;
}
#logs.expand {
height: 300px;
}
#logs:not(.expand) > .log {
display: none;
}
#toggle-logs {
height: 24px;
border-width: 0;
background-color: #0881C7;
color: white;
margin: 0;
display: block;
position: absolute;
bottom: 0;
right: 0;
}
#logs > p { margin: 0; }
#logs > .warning { color: #d99b28; }
#logs > .error { color: #eb5368; }
#logs > .success { color: #70bf53; }