-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWindowManager.js
More file actions
441 lines (375 loc) · 10.4 KB
/
WindowManager.js
File metadata and controls
441 lines (375 loc) · 10.4 KB
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
var Alloy = require('alloy'),
_ = Alloy._,
Backbone = Alloy.Backbone;
var WM = module.exports = {
navWindows: [],
/**
* Open given Window in a new Ti.UI.iOS.NavigationWindow on iOS and return it. Do nothing on other platforms
*
* @param {Ti.UI.Window} win Window to open in NavigationWindow
*
* @return {Ti.UI.iOS.NavigationWindow} Created NavigationWindow
*/
createNewNavWindow: function(win) {
if (OS_IOS) {
var navWindow = Ti.UI.iOS.createNavigationWindow({
backgroundColor: '#fff',
window: win
});
navWindow.id = 'navWindow_' + _.uniqueId();
WM.navWindows.push(navWindow);
// Store reference in the root Window to the NavigationWindow
win.navWin = navWindow;
return navWindow;
} else
return win;
},
/**
* Open given Window in a the last created Ti.UI.iOS.NavigationWindow on iOS. Just open the Window on other platforms
*
* @param {Ti.UI.Window} win Window to open in NavigationWindow
*/
openWinInActiveNavWindow: function(win) {
if (OS_IOS) {
if (!WM.navWindows.length) {
if (Alloy.Globals.tabGroup) {
Alloy.Globals.tabGroup.activeTab.open(win);
win.tabGroup = true;
}
else
WM.createNewNavWindow(win).open();
} else
_.last(WM.navWindows).openWindow(win);
} else
win.open();
},
/**
* Open the given Window.
*
* @param {Ti.UI.Window} win Window to open
*/
openWin: function(win) {
if (win.createStack) {
addWinToStack(win.createStack, win);
} else if (win.addToStack) {
addWinToStack(win.addToStack, win);
}
if (OS_IOS) {
// Sometimes we accidentally set modal and navGroup to true.
// In that case 'modal' should be preferred, because modal windows are always opened in a new NavWindow
if (win.navGroup && win.modalWin)
win.navGroup = false;
// Show SideMenu button and replace current centerWindow with this new Window
if (win.showSideMenu) {
// Show sideMenu button
var sideMenuButton = Alloy.createWidget(Alloy.CFG.SideMenu.buttonWidget || 'rebel.MenuBarButton', {
buttonType: 'hamburger',
delay: 200
});
win.leftNavButton = sideMenuButton.getView();
sideMenuButton.on('click', WM.toggleLeftNavDrawer);
// Create SideMenu if not yet created.
// Else replace current centerWindow with this Window
setupNavDrawer({
centerWin: WM.createNewNavWindow(win)
});
}
// If window should be Modal Window
// Also add it to a new navigationGroup
else if (win.modalWin) {
WM.createNewNavWindow(win).open({
modal: true
});
}
// If window should be part of NavigationGroup
else if (win.newNavGroup) {
WM.createNewNavWindow(win).open();
}
// If window should be part of NavigationGroup
else if (win.navGroup) {
WM.openWinInActiveNavWindow(win);
}
// Else, just open the Window
else
win.open();
} else if (OS_ANDROID) {
if(win.facebook) {
win.fbProxy = require('facebook').createActivityWorker({lifecycleContainer: win});
}
if (win.showSideMenu) {
// Create SideMenu if not yet created.
setupNavDrawer({
centerWin: win
});
win.addEventListener('open', onOpenTopWindow);
win.open();
} else if(win.topWindow) {
win.addEventListener('open', onOpenTopWindow);
win.open();
} else if(win.apiName == 'Ti.UI.TabGroup') {
win.addEventListener('open', onOpenTopWindow);
win.open();
} else {
win.addEventListener('open', onOpenSubWindow);
win.open();
}
} else
win.open();
},
/**
* Close the given Window
* @param {Ti.UI.Window} win Window to close
*/
closeWin: function(win) {
if (OS_IOS) {
// If Window is a NavigationWindow, clean up root Window as well
if (win.window) {
win.window.fireEvent('close');
if (win.window.leftNavButton)
win.window.leftNavButton.removeEventListener('click', WM.toggleLeftNavDrawer);
win.window = null;
// WM.navWindows.pop();
var index = WM.navWindows.indexOf(win);
WM.navWindows.splice(index, 1);
win.close();
}
// If Window is a root Window of a NavigationWindow, close the NavigationWindow instead
else if (win.navWin) {
var navWin = win.navWin;
delete win.navWin;
WM.closeWin(navWin);
// If Window is part of tabGroup, close via TabGroup
} else if (win.tabGroup) {
Alloy.Globals.tabGroup.activeTab.close(win);
}
// Else just close the Window
else {
win.close();
}
} else
win.close();
},
/**
* Open or Close the left-side Navigation Drawer (if exists)
*/
toggleLeftNavDrawer: function() {
if (_navDrawer)
_navDrawer.toggleLeftWindow();
},
/**
* Close the Stack of Windows with given name
*
* @param {String} name Name of Stack to close
*/
killStack: function(name) {
if (_windowStacks[name]) {
_.each(_windowStacks[name], function(win) {
Ti.API.info('Closing ' + name + ' ' + win.id);
WM.closeWin(win);
});
}
},
destruct: function() {
_.each(WM.navWindows, function(win) {
WM.closeWin(win);
});
if (Alloy.Globals.tabGroup) {
Alloy.Globals.tabGroup.close();
delete Alloy.Globals.tabGroup;
}
if (_navDrawer) {
if (_navDrawer.destruct)
_navDrawer.destruct();
_navDrawer = null;
}
}
};
_.extend(WM, Backbone.Events);
/**
* @property {Object} _windowStacks Dictionary of stacks of Windows. Each element contains an array of one or more windows
*/
var _windowStacks = {};
/**
* Add given Window to stack with given name
* @private
*
* @param {String} name Stack to add given Window to
* @param {Ti.UI.Window} win Window to add
*/
function addWinToStack(name, win) {
if (!_windowStacks[name])
_windowStacks[name] = [];
_windowStacks[name].push(win);
}
if (OS_ANDROID) {
/**
* On Android: Handle open event of Sub window. It adds the Android backbutton and closes it on click
* @private
*
* @param {Object} evt Event details
*/
var onOpenSubWindow = function(evt) {
var win = this;
if (this.activity) {
//Setup the ActionBar for 1> level windows
var actionBar = this.activity.actionBar;
if (actionBar) {
if(!this.navBarHidden) {
actionBar.displayHomeAsUp = true;
actionBar.icon = '/images/generic/logoTransparentSmall.png';
actionBar.onHomeIconItemSelected = function() {
win.close();
};
}
else {
actionBar.hide();
}
}
// this.activity.onPrepareOptionsMenu = createOptionsMenu;
//
// this.activity.invalidateOptionsMenu();
}
};
/**
* On Android: Handle open event of Top window. It opens the NavigationDrawer
* @private
*
* @param {Object} evt Event details
*/
var onOpenTopWindow = function(evt) {
if (this.activity) {
//Setup ActionBar for level 1 windows
var actionBar = this.activity.actionBar;
if (actionBar) {
if(!this.navBarHidden) {
actionBar.displayHomeAsUp = false;
actionBar.icon = '/images/generic/hamburger.png';
actionBar.onHomeIconItemSelected = function() {
if (_navDrawer) {
_navDrawer.toggleDrawer();
}
};
}
else {
actionBar.hide();
}
}
// Close app when clicking back button
this.addEventListener('androidback', onBackButtonClick);
// this.activity.onPrepareOptionsMenu = createOptionsMenu;
//
// this.activity.invalidateOptionsMenu();
}
};
var onBackButtonClick = function(evt) {
// this.removeEventListener('androidback', onBackButtonClick);
// Go back to home
// Ti.Android.currentActivity.finish();
var intent = Ti.Android.createIntent({
action: Ti.Android.ACTION_MAIN
});
intent.addCategory(Ti.Android.CATEGORY_HOME);
Ti.Android.currentActivity.startActivity(intent);
};
var createOptionsMenu = function(evt) {
var menu = evt.menu,
menuItem;
// Settings
// if (F.load('Acl').isLoggedin() && !menu.findItem(998)) {
// menuItem = menu.add({
// itemId: 998,
// title: L('menuSettings'),
// showAsAction: Ti.Android.SHOW_AS_ACTION_NEVER,
// order: 998
// });
// menuItem.addEventListener('click', onOpenSettings);
// }
// Feedback
// if (!menu.findItem(998)) {
// menuItem = menu.add({
// itemId: 998,
// title: L('menuSettings'),
// showAsAction: Ti.Android.SHOW_AS_ACTION_NEVER,
// order: 998
// });
// menuItem.addEventListener('click', onOpenSettings);
// }
// Help
// if (!menu.findItem(999)) {
// menuItem = menu.add({
// itemId: 999,
// title: L('Help'),
// showAsAction: Ti.Android.SHOW_AS_ACTION_NEVER,
// order: 999
// });
// menuItem.addEventListener('click', onOpenHelp);
// }
// this.invalidateOptionsMenu();
};
var onOpenSettings = function() {
Alloy.createController('Settings');
};
var onOpenHelp = function() {
var Acl = require('Acl'),
emailDialog = Ti.UI.createEmailDialog();
emailDialog.subject = "I could use some help!";
emailDialog.toRecipients = [Alloy.CFG.supportEmail];
var message = "\n\r\n\r\n\r --- \n\r";
if (Acl.isLoggedin()) {
var user = Acl.getLoggedinUser();
message = message + 'User: ' + user.get('name') + ' (' + user.id + ')' + "\n\r";
}
message = message + 'Version: ' + Ti.App.getVersion() + "\n\r" +
'Phone model: ' + Ti.Platform.model + "\n\r" +
'OS: ' + Ti.Platform.osname + ' ' + Ti.Platform.version + "\n\r" +
'';
emailDialog.messageBody = message;
emailDialog.open();
};
}
/**
* @property {Ti.UI.Window} _navDrawer The Navigation Drawer window
* @private
*/
var _navDrawer,
_centerWin;
/**
* Setup Navigation Drawer module
* @private
*
* @param {Object} config Configuration for module
*/
function setupNavDrawer(config) {
// Setup NavDrawer module on iOS
if (OS_IOS) {
if (!_navDrawer) {
_navDrawer = require('RebelFrame/SideMenu/' + Alloy.CFG.SideMenu.type);
_navDrawer.setup(config);
_navDrawer.on('open', onNavBarOpen);
_navDrawer.on('close', onNavBarClose);
} else {
// Replace current centerWindow with new centerWindow
_navDrawer.setCenterWindow(config.centerWin);
}
} else if (OS_ANDROID) {
if (!_navDrawer) {
// Make reference to new centerWindow, so we can close later
_centerWin = config.centerWin;
// Create NavigationDrawer for Android
_navDrawer = Alloy.createWidget(Alloy.CFG.SideMenu.menuWidget);
_navDrawer.attach(config.centerWin);
} else {
_navDrawer.attach(config.centerWin);
// Close old centerWindow
WM.closeWin(_centerWin);
// Make reference to new centerWindow, so we can close later
_centerWin = config.centerWin;
}
}
}
function onNavBarOpen(evt) {
WM.trigger('navbaropen', evt);
}
function onNavBarClose(evt) {
WM.trigger('navbarclose', evt);
}