From 7a0f2c9ce314f3f9ebef95434ab4cae34e8e29fe Mon Sep 17 00:00:00 2001 From: Brian Jian Zhao Date: Thu, 20 Feb 2020 17:15:39 +1100 Subject: [PATCH] add electron webFrame API to preloadJS --- preload.js | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/preload.js b/preload.js index 7f2c54bbb..927ac7b32 100644 --- a/preload.js +++ b/preload.js @@ -2,6 +2,7 @@ /* global window: false */ const path = require('path'); const electron = require('electron'); +const {webFrame} = electron; const semver = require('semver'); const { deferredToPromise } = require('./js/modules/deferred_to_promise'); @@ -69,6 +70,7 @@ window.CONSTANTS = { MAX_CONNECTION_DURATION: 5000, }; + window.versionInfo = { environment: window.getEnvironment(), version: window.getVersion(), @@ -82,10 +84,15 @@ const ipc = electron.ipcRenderer; const localeMessages = ipc.sendSync('locale-data'); -Window.updateScaling = (number) => { - ipc.s +window.setScaling = (number) => { + return webFrame.setZoomFactor(number); +} + +window.getScaling = () => { + return webFrame.getZoomFactor(); } + window.setBadgeCount = count => ipc.send('set-badge-count', count); // Set the password for the database @@ -185,7 +192,7 @@ ipc.on('set-up-as-standalone', () => { // Settings-related events -console.log(window.getSettingValue('zoom-factor-setting'), 'from preloadJS and get the setting value'); + window.showSettings = () => ipc.send('show-settings'); @@ -229,6 +236,9 @@ window.setSettingValue = (settingID, value) => { window.storage.put(settingID, value); }; + + + installGetter('device-name', 'getDeviceName'); installGetter('theme-setting', 'getThemeSetting');