File size: 2,885 Bytes
1e92f2d |
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 |
const { ipcRenderer, contextBridge } = require( 'electron' );
// Outgoing IPC message channels from Renderer to Main process.
// Maintain this list in alphabetical order.
const sendChannels = [
'copy-text-to-clipboard',
'get-config',
'get-settings',
'log',
'request-site-response',
'clear-notices-count',
'back-button-clicked',
'forward-button-clicked',
'home-button-clicked',
'user-auth',
'user-login-status',
'view-post-clicked',
'print',
'secrets',
'toggle-dev-tools',
'title-bar-double-click',
'magic-link-set-password',
];
// Incoming IPC message channels from Main process to Renderer.
// Maintain this list in alphabetical order.
const receiveChannels = [
'app-config',
'cookie-auth-complete',
'is-calypso',
'is-calypso-response',
'navigate',
'new-post',
'notification-clicked',
'notifications-panel-refresh',
'notifications-panel-show',
'page-help',
'page-my-sites',
'page-profile',
'page-reader',
'request-site',
'request-user-login-status',
'signout',
'toggle-notification-bar',
];
function fflagOverrides() {
// Manually overriding feature flags for features not available in older app versions.
// They aren't able to be added to the wp-calypso/packages/calypso-config/src/desktop.ts
// file as they would be applied to all app versions.
const payload = {
'sign-in-with-apple': true,
'signup/social': true,
};
// Override feature flags from enviroment variables at run time
const fflags = process.env.WP_DESKTOP_DEBUG_FEATURES
? process.env.WP_DESKTOP_DEBUG_FEATURES.split( ',' )
: [];
for ( let i = 0; i < fflags.length; i++ ) {
const kv = fflags[ i ].split( ':' );
payload[ kv[ 0 ] ] = kv[ 1 ] === 'true' ? true : false;
}
return payload;
}
( async () => {
const config = await ipcRenderer.invoke( 'get-config' );
const styles = {
titleBarPaddingLeft: process.platform !== 'darwin' ? '0px' : '77px',
};
const features = fflagOverrides();
contextBridge.exposeInMainWorld( 'electron', {
send: ( channel, ...args ) => {
if ( sendChannels.includes( channel ) ) {
ipcRenderer.send( channel, ...args );
}
},
receive: ( channel, onReceived ) => {
if ( receiveChannels.includes( channel ) ) {
// exclude event with sender info
const callback = ( _, ...args ) => onReceived( ...args );
ipcRenderer.on( channel, callback );
}
},
logger: ( namespace, options ) => {
const send = ( level, message, meta ) => {
ipcRenderer.send( 'log', level, namespace, options, message, meta );
};
return {
error: ( message, meta ) => send( 'error', message, meta ),
warn: ( message, meta ) => send( 'warn', message, meta ),
info: ( message, meta ) => send( 'info', message, meta ),
debug: ( message, meta ) => send( 'debug', message, meta ),
silly: ( message, meta ) => send( 'silly', message, meta ),
};
},
config,
styles,
features,
} );
} )();
|