aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacobo Aragunde Pérez <jaragunde@igalia.com>2019-07-15 12:13:51 +0200
committerJacobo Aragunde Pérez <jaragunde@igalia.com>2019-07-16 12:44:51 +0200
commit146044a5d19ef0b6f0c5cbcfce7470bf5292167b (patch)
tree794eed394f198b5e3c9699c9ed10232adfef0670
parent2c4bce6ac4149a9be348d83aa2f69d5580d50e73 (diff)
FUNCT Call homescreen/showWindow after app is launched
FIXME: this should work, according to the documentation, but it does not.
-rw-r--r--src/js/app.js24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/js/app.js b/src/js/app.js
index 3df6674..48c2b57 100644
--- a/src/js/app.js
+++ b/src/js/app.js
@@ -87,6 +87,27 @@ function load_application_list() {
});
}
+export function display(app) {
+ var appId = app.getAttribute('app-id');
+ var ws = new afb.ws(function() {
+ var api_verb = "homescreen/showWindow";
+ var request = {application_id: appId, area: "normal.full"};
+ ws.call(api_verb, request).then(
+ function(obj) {
+ log("success: " + obj.response);
+ },
+ function(obj) {
+ //TODO Manage errors
+ log("failure on display");
+ }
+ );
+ },
+ function() {
+ //TODO Manage errors
+ log("ws aborted");
+ });
+}
+
export function launch(app) {
var appId = app.getAttribute('app-id');
var ws = new afb.ws(function() {
@@ -95,10 +116,11 @@ export function launch(app) {
ws.call(api_verb, request).then(
function(obj) {
log("success: " + obj.response);
+ display(app);
},
function(obj) {
//TODO Manage errors
- log("failure");
+ log("failure on launch");
}
);
},