mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-27 17:31:36 -06:00
32 lines
982 B
JavaScript
32 lines
982 B
JavaScript
// script run before others and still has access to node integration, even
|
|
// when turned off - also us to leak only what want into window object.
|
|
// see: http://electron.atom.io/docs/api/browser-window/
|
|
//
|
|
// to leak some node module into:
|
|
// https://medium.com/@leonli/securing-embedded-external-content-in-electron-node-js-8b6ef665cd8e#.fex4e68p7
|
|
// https://slack.engineering/building-hybrid-applications-with-electron-dc67686de5fb#.tp6zz1nrk
|
|
//
|
|
// also to bring pieces of node.js:
|
|
// https://github.com/electron/electron/issues/2984
|
|
//
|
|
|
|
const { ipcRenderer } = require('electron');
|
|
|
|
// hold ref so doesn't get GC'ed
|
|
const local = {
|
|
ipcRenderer: ipcRenderer
|
|
}
|
|
|
|
// JS can detect if in container mode by looking for window.SYM_API obj
|
|
// API exposes by Symphony to main window:
|
|
window.SYM_API = {
|
|
openWindow: function(url) {
|
|
local.ipcRenderer.send('symphony-msg', {
|
|
cmd: 'open',
|
|
url: url
|
|
});
|
|
}
|
|
};
|
|
|
|
Object.freeze(window.SYM_API);
|