-
Notifications
You must be signed in to change notification settings - Fork 8
/
app_launcher.js
175 lines (155 loc) · 4.74 KB
/
app_launcher.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview
* AppLauncher is an interface that allows the client code to launch and close
* the app without knowing the implementation difference between a v1 app and
* a v2 app.
*
* To launch an app:
* var appLauncher = new remoting.V1AppLauncher();
* var appId = "";
* appLauncher.launch({arg1:'someValue'}).then(function(id){
* appId = id;
* });
*
* To close an app:
* appLauncher.close(appId);
*/
/** @suppress {duplicate} */
var remoting = remoting || {};
(function() {
'use strict';
/** @interface */
remoting.AppLauncher = function() {};
/**
* @param {Object=} opt_launchArgs
* @return {Promise} The promise will resolve when the app is launched. It will
* provide the caller with the appId (which is either the id of the hosting tab
* or window). The caller can use the appId to close the app.
*/
remoting.AppLauncher.prototype.launch = function(opt_launchArgs) { };
/**
* @param {string} id The id of the app to close.
* @return {Promise} The promise will resolve when the app is closed.
*/
remoting.AppLauncher.prototype.close = function(id) {};
/**
* @constructor
* @implements {remoting.AppLauncher}
*/
remoting.V1AppLauncher = function() {};
remoting.V1AppLauncher.prototype.launch = function(opt_launchArgs) {
var url = base.urlJoin('main.html', opt_launchArgs);
/**
* @param {function(*=):void} resolve
* @param {function(*=):void} reject
*/
return new Promise(function(resolve, reject) {
chrome.tabs.create({ url: url, selected: true },
/** @param {chrome.Tab} tab The created tab. */
function(tab) {
if (!tab) {
reject(new Error(chrome.runtime.lastError.message));
} else {
resolve(String(tab.id));
}
});
});
};
remoting.V1AppLauncher.prototype.close = function(id) {
/**
* @param {function(*=):void} resolve
* @param {function(*=):void} reject
*/
return new Promise(function(resolve, reject) {
/** @param {chrome.Tab} tab The retrieved tab. */
chrome.tabs.get(id, function(tab) {
if (!tab) {
reject(new Error(chrome.runtime.lastError.message));
} else {
chrome.tabs.remove(tab.id, /** @type {function(*=):void} */ (resolve));
}
});
});
};
/**
* @constructor
* @implements {remoting.AppLauncher}
*/
remoting.V2AppLauncher = function() {};
var APP_MAIN_URL = 'main.html';
/**
* @param {string} id
*/
remoting.V2AppLauncher.prototype.restart = function(id) {
this.close(id).then(function() {
// Not using the launch() method because we want to launch a new window with
// the same id, such that the size and positioning of the original window
// can be preserved.
return chrome.app.window.create(APP_MAIN_URL, {'id' : id, 'frame': 'none'});
});
};
remoting.V2AppLauncher.prototype.launch = function(opt_launchArgs) {
var url = base.urlJoin(APP_MAIN_URL, opt_launchArgs);
/**
* @param {function(*=):void} resolve
* @param {function(*=):void} reject
*/
return new Promise(function(resolve, reject) {
var START_FULLSCREEN = 'start-fullscreen';
/** @param {Object} values */
var onValues = function(values) {
/** @type {string} */
var state = values[START_FULLSCREEN] ? 'fullscreen' : 'normal';
chrome.app.window.create(url, {
'width': 800,
'height': 600,
'frame': 'none',
'id': String(getNextWindowId()),
'state': state
},
/** @param {AppWindow=} appWindow */
function(appWindow) {
if (!appWindow) {
reject(new Error(chrome.runtime.lastError.message));
} else {
resolve(appWindow.id);
}
});
};
chrome.storage.local.get(START_FULLSCREEN, onValues);
});
};
remoting.V2AppLauncher.prototype.close = function(id) {
/**
* @param {function(*=):void} resolve
* @param {function(*=):void} reject
*/
return new Promise(function(resolve, reject) {
var appWindow = chrome.app.window.get(id);
if (!appWindow) {
return Promise.reject(new Error(chrome.runtime.lastError.message));
}
appWindow.onClosed.addListener(resolve);
appWindow.close();
});
};
/**
* @return {number} the next available window id.
*/
function getNextWindowId() {
var appWindows = chrome.app.window.getAll();
var lastId = /** @type(number) */ (0);
appWindows.forEach(function(appWindow) {
base.debug.assert(Number.isInteger(appWindow.id),
"Window Id should be an integer");
var id = parseInt(appWindow.id, 10);
if (lastId <= id) {
lastId = id;
}
});
return ++lastId;
}
})();