2016-03-10 19:54:17 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-01-14 22:20:06 +00:00
|
|
|
const ipcRenderer = require('electron').ipcRenderer;
|
|
|
|
const remote = require('electron').remote;
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-03-07 09:26:36 +00:00
|
|
|
// Cache browser window visibility
|
2016-03-08 17:36:41 +00:00
|
|
|
var _isVisible = true;
|
|
|
|
var _isMinimized = false;
|
|
|
|
(function() {
|
2016-03-07 09:26:36 +00:00
|
|
|
var currentWindow;
|
|
|
|
currentWindow = remote.getCurrentWindow();
|
2016-03-08 17:36:41 +00:00
|
|
|
_isVisible = currentWindow.isVisible();
|
|
|
|
_isMinimized = currentWindow.isMinimized();
|
2016-03-07 09:26:36 +00:00
|
|
|
})();
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Helper function to resolve relative url.
|
2016-01-14 22:20:06 +00:00
|
|
|
var a = window.top.document.createElement('a');
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 22:20:06 +00:00
|
|
|
var resolveURL = function(url) {
|
2016-01-12 02:40:23 +00:00
|
|
|
a.href = url;
|
|
|
|
return a.href;
|
|
|
|
};
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Window object returned by "window.open".
|
2016-01-14 22:20:06 +00:00
|
|
|
var BrowserWindowProxy = (function() {
|
2016-01-12 02:40:23 +00:00
|
|
|
BrowserWindowProxy.proxies = {};
|
|
|
|
|
|
|
|
BrowserWindowProxy.getOrCreate = function(guestId) {
|
|
|
|
var base;
|
|
|
|
return (base = this.proxies)[guestId] != null ? base[guestId] : base[guestId] = new BrowserWindowProxy(guestId);
|
|
|
|
};
|
|
|
|
|
|
|
|
BrowserWindowProxy.remove = function(guestId) {
|
|
|
|
return delete this.proxies[guestId];
|
|
|
|
};
|
|
|
|
|
|
|
|
function BrowserWindowProxy(guestId1) {
|
|
|
|
this.guestId = guestId1;
|
|
|
|
this.closed = false;
|
2016-03-10 19:54:17 +00:00
|
|
|
ipcRenderer.once("ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_CLOSED_" + this.guestId, () => {
|
|
|
|
BrowserWindowProxy.remove(this.guestId);
|
|
|
|
this.closed = true;
|
|
|
|
});
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BrowserWindowProxy.prototype.close = function() {
|
|
|
|
return ipcRenderer.send('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_CLOSE', this.guestId);
|
|
|
|
};
|
|
|
|
|
|
|
|
BrowserWindowProxy.prototype.focus = function() {
|
|
|
|
return ipcRenderer.send('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_METHOD', this.guestId, 'focus');
|
|
|
|
};
|
|
|
|
|
|
|
|
BrowserWindowProxy.prototype.blur = function() {
|
|
|
|
return ipcRenderer.send('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_METHOD', this.guestId, 'blur');
|
|
|
|
};
|
|
|
|
|
2016-03-13 00:05:01 +00:00
|
|
|
Object.defineProperty(BrowserWindowProxy.prototype, 'location', {
|
|
|
|
get: function() {
|
|
|
|
return ipcRenderer.sendSync('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_METHOD', this.guestId, 'getURL');
|
|
|
|
},
|
|
|
|
set: function(url) {
|
|
|
|
return ipcRenderer.sendSync('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_METHOD', this.guestId, 'loadURL', url);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-01-12 02:40:23 +00:00
|
|
|
BrowserWindowProxy.prototype.postMessage = function(message, targetOrigin) {
|
|
|
|
if (targetOrigin == null) {
|
|
|
|
targetOrigin = '*';
|
|
|
|
}
|
|
|
|
return ipcRenderer.send('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_POSTMESSAGE', this.guestId, message, targetOrigin, location.origin);
|
|
|
|
};
|
|
|
|
|
2016-03-18 18:51:02 +00:00
|
|
|
BrowserWindowProxy.prototype["eval"] = function(...args) {
|
|
|
|
return ipcRenderer.send.apply(ipcRenderer, ['ATOM_SHELL_GUEST_WINDOW_MANAGER_WEB_CONTENTS_METHOD', this.guestId, 'executeJavaScript'].concat(args));
|
2016-01-12 02:40:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return BrowserWindowProxy;
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
if (process.guestInstanceId == null) {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Override default window.close.
|
2016-01-12 02:40:23 +00:00
|
|
|
window.close = function() {
|
|
|
|
return remote.getCurrentWindow().close();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Make the browser window or guest view emit "new-window" event.
|
2016-01-12 02:40:23 +00:00
|
|
|
window.open = function(url, frameName, features) {
|
|
|
|
var feature, guestId, i, ints, j, len, len1, name, options, ref1, ref2, value;
|
|
|
|
if (frameName == null) {
|
|
|
|
frameName = '';
|
|
|
|
}
|
|
|
|
if (features == null) {
|
|
|
|
features = '';
|
|
|
|
}
|
|
|
|
options = {};
|
2016-03-16 18:03:50 +00:00
|
|
|
|
|
|
|
// TODO remove hyphenated options in both of the following arrays for 1.0
|
2016-03-16 18:00:15 +00:00
|
|
|
ints = ['x', 'y', 'width', 'height', 'min-width', 'max-width', 'min-height', 'minHeight', 'max-height', 'maxHeight', 'zoom-factor', 'zoomFactor'];
|
2016-03-16 17:59:47 +00:00
|
|
|
const webPreferences = ['zoom-factor', 'zoomFactor', 'node-integration', 'nodeIntegration', 'preload'];
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Make sure to get rid of excessive whitespace in the property name
|
2016-01-12 02:40:23 +00:00
|
|
|
ref1 = features.split(/,\s*/);
|
|
|
|
for (i = 0, len = ref1.length; i < len; i++) {
|
|
|
|
feature = ref1[i];
|
2016-03-07 09:26:36 +00:00
|
|
|
ref2 = feature.split(/\s*=/);
|
|
|
|
name = ref2[0];
|
|
|
|
value = ref2[1];
|
2016-03-16 17:59:47 +00:00
|
|
|
value = value === 'yes' || value === '1' ? true : value === 'no' || value === '0' ? false : value;
|
|
|
|
if (webPreferences.includes(name)) {
|
|
|
|
if (options.webPreferences == null) {
|
|
|
|
options.webPreferences = {};
|
|
|
|
}
|
|
|
|
options.webPreferences[name] = value;
|
|
|
|
} else {
|
|
|
|
options[name] = value;
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
if (options.left) {
|
|
|
|
if (options.x == null) {
|
|
|
|
options.x = options.left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (options.top) {
|
|
|
|
if (options.y == null) {
|
|
|
|
options.y = options.top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (options.title == null) {
|
|
|
|
options.title = frameName;
|
|
|
|
}
|
|
|
|
if (options.width == null) {
|
|
|
|
options.width = 800;
|
|
|
|
}
|
|
|
|
if (options.height == null) {
|
|
|
|
options.height = 600;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Resolve relative urls.
|
2016-01-12 02:40:23 +00:00
|
|
|
url = resolveURL(url);
|
|
|
|
for (j = 0, len1 = ints.length; j < len1; j++) {
|
|
|
|
name = ints[j];
|
|
|
|
if (options[name] != null) {
|
|
|
|
options[name] = parseInt(options[name], 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
guestId = ipcRenderer.sendSync('ATOM_SHELL_GUEST_WINDOW_MANAGER_WINDOW_OPEN', url, frameName, options);
|
|
|
|
if (guestId) {
|
|
|
|
return BrowserWindowProxy.getOrCreate(guestId);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Use the dialog API to implement alert().
|
2016-01-12 02:40:23 +00:00
|
|
|
window.alert = function(message, title) {
|
|
|
|
var buttons;
|
|
|
|
if (title == null) {
|
|
|
|
title = '';
|
|
|
|
}
|
|
|
|
buttons = ['OK'];
|
|
|
|
message = message.toString();
|
|
|
|
remote.dialog.showMessageBox(remote.getCurrentWindow(), {
|
|
|
|
message: message,
|
|
|
|
title: title,
|
|
|
|
buttons: buttons
|
|
|
|
});
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Alert should always return undefined.
|
2016-01-12 02:40:23 +00:00
|
|
|
};
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// And the confirm().
|
2016-01-12 02:40:23 +00:00
|
|
|
window.confirm = function(message, title) {
|
|
|
|
var buttons, cancelId;
|
|
|
|
if (title == null) {
|
|
|
|
title = '';
|
|
|
|
}
|
|
|
|
buttons = ['OK', 'Cancel'];
|
|
|
|
cancelId = 1;
|
|
|
|
return !remote.dialog.showMessageBox(remote.getCurrentWindow(), {
|
|
|
|
message: message,
|
|
|
|
title: title,
|
|
|
|
buttons: buttons,
|
|
|
|
cancelId: cancelId
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// But we do not support prompt().
|
2016-01-12 02:40:23 +00:00
|
|
|
window.prompt = function() {
|
|
|
|
throw new Error('prompt() is and will not be supported.');
|
|
|
|
};
|
|
|
|
|
|
|
|
if (process.openerId != null) {
|
|
|
|
window.opener = BrowserWindowProxy.getOrCreate(process.openerId);
|
|
|
|
}
|
|
|
|
|
2016-03-08 17:36:41 +00:00
|
|
|
ipcRenderer.on('ATOM_RENDERER_WINDOW_VISIBILITY_CHANGE', function (event, isVisible, isMinimized) {
|
|
|
|
var hasChanged = _isVisible != isVisible || _isMinimized != isMinimized;
|
2016-03-10 19:54:17 +00:00
|
|
|
|
2016-03-08 17:36:41 +00:00
|
|
|
if (hasChanged) {
|
|
|
|
_isVisible = isVisible;
|
|
|
|
_isMinimized = isMinimized;
|
2016-03-07 09:26:36 +00:00
|
|
|
|
2016-03-08 17:36:41 +00:00
|
|
|
document.dispatchEvent(new Event('visibilitychange'));
|
|
|
|
}
|
2016-03-07 09:26:36 +00:00
|
|
|
});
|
|
|
|
|
2016-01-12 02:40:23 +00:00
|
|
|
ipcRenderer.on('ATOM_SHELL_GUEST_WINDOW_POSTMESSAGE', function(event, sourceId, message, sourceOrigin) {
|
2016-01-14 18:35:29 +00:00
|
|
|
// Manually dispatch event instead of using postMessage because we also need to
|
|
|
|
// set event.source.
|
2016-01-12 02:40:23 +00:00
|
|
|
event = document.createEvent('Event');
|
|
|
|
event.initEvent('message', false, false);
|
|
|
|
event.data = message;
|
|
|
|
event.origin = sourceOrigin;
|
|
|
|
event.source = BrowserWindowProxy.getOrCreate(sourceId);
|
|
|
|
return window.dispatchEvent(event);
|
|
|
|
});
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Forward history operations to browser.
|
2016-03-18 18:51:02 +00:00
|
|
|
var sendHistoryOperation = function(...args) {
|
|
|
|
return ipcRenderer.send.apply(ipcRenderer, ['ATOM_SHELL_NAVIGATION_CONTROLLER'].concat(args));
|
2016-01-12 02:40:23 +00:00
|
|
|
};
|
|
|
|
|
2016-03-18 18:51:02 +00:00
|
|
|
var getHistoryOperation = function(...args) {
|
|
|
|
return ipcRenderer.sendSync.apply(ipcRenderer, ['ATOM_SHELL_SYNC_NAVIGATION_CONTROLLER'].concat(args));
|
2016-01-12 02:40:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
window.history.back = function() {
|
|
|
|
return sendHistoryOperation('goBack');
|
|
|
|
};
|
|
|
|
|
|
|
|
window.history.forward = function() {
|
|
|
|
return sendHistoryOperation('goForward');
|
|
|
|
};
|
|
|
|
|
|
|
|
window.history.go = function(offset) {
|
|
|
|
return sendHistoryOperation('goToOffset', offset);
|
|
|
|
};
|
|
|
|
|
|
|
|
Object.defineProperty(window.history, 'length', {
|
|
|
|
get: function() {
|
|
|
|
return getHistoryOperation('length');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-01-14 18:35:29 +00:00
|
|
|
// Make document.hidden and document.visibilityState return the correct value.
|
2016-01-12 02:40:23 +00:00
|
|
|
Object.defineProperty(document, 'hidden', {
|
2016-03-08 17:36:41 +00:00
|
|
|
get: function () {
|
|
|
|
return _isMinimized || !_isVisible;
|
|
|
|
}
|
2016-01-12 02:40:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(document, 'visibilityState', {
|
|
|
|
get: function() {
|
2016-03-08 17:36:41 +00:00
|
|
|
if (_isVisible && !_isMinimized) {
|
2016-01-12 02:40:23 +00:00
|
|
|
return "visible";
|
2016-03-07 09:26:36 +00:00
|
|
|
} else {
|
|
|
|
return "hidden";
|
2016-01-12 02:40:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|