- onenote.git
- src
- electron
- window
- onenote
- ipc
- handler.js
This file ( 3kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const {ipcRenderer} = require('electron');
const setProxy = require('../action/set-proxy');
const multiActions = require('../action/multi-actions');
const handler = (options) => {
const {webview} = options;
ipcRenderer.on('p3x-onenote-onload-user', function (event, data) {
if (data !== null && data !== undefined) {
global.p3x.onenote.data = data;
}
//console.log('p3x-onenote-onload-user', data)
if (typeof (global.p3x.onenote.data) === 'object' && global.p3x.onenote.data.hasOwnProperty('url') && global.p3x.onenote.data.url !== 'about:blank') {
webview.src = global.p3x.onenote.data.url;
} else {
webview.src = 'https://www.onenote.com/notebooks'
}
if (global.p3x.onenote.data.proxy.trim() !== '') {
require('../action/load-proxy')();
}
})
ipcRenderer.on('p3x-onenote-action', function (event, data) {
multiActions(data);
})
ipcRenderer.on('p3x-onenote-action-set-proxy', (event, data) => {
setProxy(data);
})
ipcRenderer.on('p3x-onenote-language', async (event, data) => {
global.p3x.onenote.lang = global.p3x.onenote.translations[data.translation]
global.p3x.onenote.toast.action(global.p3x.onenote.lang.menu.language.alert)
let type = '';
let cancelled = false;
try {
type = await global.p3x.onenote.prompt.configureLanguge(data);
type = type === undefined ? '' : type.trim();
} catch (e) {
if (e !== undefined) {
console.error(e);
} else {
cancelled = true;
}
} finally {
if (!cancelled) {
if (type === 'corporate') {
global.p3x.onenote.webview.src = 'https://www.onenote.com/notebooks?auth=2&auth_upn=my_corporate_email_address&omkt=' + data.translation
} else {
global.p3x.onenote.webview.src = 'https://www.onenote.com/notebooks?omkt=' + data.translation
}
}
}
})
ipcRenderer.on('p3x-onenote-action-open-url', async (event, data) => {
let url = '';
let cancelled = false;
try {
url = await global.p3x.onenote.prompt.goToUrl();
url = url === undefined ? '' : url.trim();
if (!url.startsWith('http')) {
url = 'https://' + url
}
} catch (e) {
if (e !== undefined) {
console.error(e);
} else {
cancelled = true;
}
} finally {
if (!cancelled) {
global.p3x.onenote.webview.src = url
}
}
})
}
module.exports = handler