mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
fix tabs for electron/notion update
This commit is contained in:
parent
7ef483a7f1
commit
4807cfd339
@ -26,12 +26,12 @@ const url = require('url'),
|
|||||||
ReactDOM = require(`${__notion}/app/node_modules/react-dom/index.js`),
|
ReactDOM = require(`${__notion}/app/node_modules/react-dom/index.js`),
|
||||||
{ toKeyEvent } = require('keyboardevent-from-electron-accelerator');
|
{ toKeyEvent } = require('keyboardevent-from-electron-accelerator');
|
||||||
|
|
||||||
const insertCSP = `
|
const insertCSP = `{
|
||||||
const csp = document.createElement('meta');
|
const csp = document.createElement('meta');
|
||||||
csp.httpEquiv = 'Content-Security-Policy';
|
csp.httpEquiv = 'Content-Security-Policy';
|
||||||
csp.content = "script-src 'self' 'unsafe-inline' 'unsafe-eval' enhancement: https://gist.github.com https://apis.google.com https://api.amplitude.com https://widget.intercom.io https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so https://checkout.stripe.com https://embed.typeform.com https://admin.typeform.com https://platform.twitter.com https://cdn.syndication.twimg.com; connect-src 'self' https://msgstore.www.notion.so wss://msgstore.www.notion.so https://notion-emojis.s3-us-west-2.amazonaws.com https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com https://api.segment.io https://api.pgncs.notion.so https://checkout.stripe.com https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net https://api.unsplash.com https://boards-api.greenhouse.io; font-src 'self' data: enhancement: https: http:; img-src 'self' data: blob: https: https://platform.twitter.com https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com; style-src 'self' 'unsafe-inline' enhancement: https: http:; frame-src https: http:; media-src https: http:";
|
csp.content = "script-src 'self' 'unsafe-inline' 'unsafe-eval' enhancement: https://gist.github.com https://apis.google.com https://api.amplitude.com https://widget.intercom.io https://js.intercomcdn.com https://logs-01.loggly.com https://cdn.segment.com https://analytics.pgncs.notion.so https://checkout.stripe.com https://embed.typeform.com https://admin.typeform.com https://platform.twitter.com https://cdn.syndication.twimg.com; connect-src 'self' https://msgstore.www.notion.so wss://msgstore.www.notion.so https://notion-emojis.s3-us-west-2.amazonaws.com https://s3-us-west-2.amazonaws.com https://s3.us-west-2.amazonaws.com https://notion-production-snapshots-2.s3.us-west-2.amazonaws.com https: http: https://api.amplitude.com https://api.embed.ly https://js.intercomcdn.com https://api-iam.intercom.io wss://nexus-websocket-a.intercom.io https://logs-01.loggly.com https://api.segment.io https://api.pgncs.notion.so https://checkout.stripe.com https://cdn.contentful.com https://preview.contentful.com https://images.ctfassets.net https://api.unsplash.com https://boards-api.greenhouse.io; font-src 'self' data: enhancement: https: http:; img-src 'self' data: blob: https: https://platform.twitter.com https://syndication.twitter.com https://pbs.twimg.com https://ton.twimg.com; style-src 'self' 'unsafe-inline' enhancement: https: http:; frame-src https: http:; media-src https: http:";
|
||||||
document.head.appendChild(csp);
|
document.head.appendChild(csp);
|
||||||
`,
|
}`,
|
||||||
idToNotionURL = (id) =>
|
idToNotionURL = (id) =>
|
||||||
`notion://www.notion.so/${
|
`notion://www.notion.so/${
|
||||||
url.parse(id).pathname.split('/').reverse()[0] || ''
|
url.parse(id).pathname.split('/').reverse()[0] || ''
|
||||||
@ -193,19 +193,17 @@ module.exports = (store, __exports) => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
electronWindow.addListener('app-command', (e, cmd) => {
|
electronWindow.addListener('app-command', (e, cmd) => {
|
||||||
const webContents = this.views.current.$el().getWebContents();
|
|
||||||
if (cmd === 'browser-backward' && webContents.canGoBack()) {
|
if (cmd === 'browser-backward' && webContents.canGoBack()) {
|
||||||
webContents.goBack();
|
this.views.current.$el().goBack();
|
||||||
} else if (cmd === 'browser-forward' && webContents.canGoForward()) {
|
} else if (cmd === 'browser-forward' && webContents.canGoForward()) {
|
||||||
webContents.goForward();
|
this.views.current.$el().goForward();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
electronWindow.addListener('swipe', (e, dir) => {
|
electronWindow.addListener('swipe', (e, dir) => {
|
||||||
const webContents = this.views.current.$el().getWebContents();
|
|
||||||
if (dir === 'left' && webContents.canGoBack()) {
|
if (dir === 'left' && webContents.canGoBack()) {
|
||||||
webContents.goBack();
|
this.views.current.$el().goBack();
|
||||||
} else if (dir === 'right' && webContents.canGoForward()) {
|
} else if (dir === 'right' && webContents.canGoForward()) {
|
||||||
webContents.goForward();
|
this.views.current.$el().goForward();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
electronWindow.addListener('focus', (e) => {
|
electronWindow.addListener('focus', (e) => {
|
||||||
@ -442,14 +440,14 @@ module.exports = (store, __exports) => {
|
|||||||
this.lastSearchQuery = undefined;
|
this.lastSearchQuery = undefined;
|
||||||
this.views.current
|
this.views.current
|
||||||
.$el()
|
.$el()
|
||||||
.getWebContents()
|
|
||||||
.stopFindInPage('clearSelection');
|
.stopFindInPage('clearSelection');
|
||||||
notionIpc.sendIndexToNotion(this.views.current.$el(), 'search:stopped');
|
notionIpc.sendIndexToNotion(this.views.current.$el(), 'search:stopped');
|
||||||
}
|
}
|
||||||
nextSearch(query) {
|
nextSearch(query) {
|
||||||
this.views.current
|
this.views.current
|
||||||
.$el()
|
.$el()
|
||||||
.getWebContents()
|
|
||||||
.findInPage(query, {
|
.findInPage(query, {
|
||||||
forward: true,
|
forward: true,
|
||||||
findNext: query === this.lastSearchQuery,
|
findNext: query === this.lastSearchQuery,
|
||||||
@ -459,7 +457,7 @@ module.exports = (store, __exports) => {
|
|||||||
prevSearch(query) {
|
prevSearch(query) {
|
||||||
this.views.current
|
this.views.current
|
||||||
.$el()
|
.$el()
|
||||||
.getWebContents()
|
|
||||||
.findInPage(query, {
|
.findInPage(query, {
|
||||||
forward: false,
|
forward: false,
|
||||||
findNext: query === this.lastSearchQuery,
|
findNext: query === this.lastSearchQuery,
|
||||||
@ -470,14 +468,14 @@ module.exports = (store, __exports) => {
|
|||||||
this.lastSearchQuery = undefined;
|
this.lastSearchQuery = undefined;
|
||||||
this.views.current
|
this.views.current
|
||||||
.$el()
|
.$el()
|
||||||
.getWebContents()
|
|
||||||
.stopFindInPage('clearSelection');
|
.stopFindInPage('clearSelection');
|
||||||
}
|
}
|
||||||
doneSearch() {
|
doneSearch() {
|
||||||
this.lastSearchQuery = undefined;
|
this.lastSearchQuery = undefined;
|
||||||
this.views.current
|
this.views.current
|
||||||
.$el()
|
.$el()
|
||||||
.getWebContents()
|
|
||||||
.stopFindInPage('clearSelection');
|
.stopFindInPage('clearSelection');
|
||||||
this.setState({ searching: false });
|
this.setState({ searching: false });
|
||||||
if (document.activeElement instanceof HTMLElement) {
|
if (document.activeElement instanceof HTMLElement) {
|
||||||
@ -582,9 +580,9 @@ module.exports = (store, __exports) => {
|
|||||||
this.setState({ error: true });
|
this.setState({ error: true });
|
||||||
});
|
});
|
||||||
$notion.addEventListener('dom-ready', () => {
|
$notion.addEventListener('dom-ready', () => {
|
||||||
$notion.getWebContents().executeJavaScript(insertCSP);
|
// $notion.executeJavaScript(insertCSP);
|
||||||
$notion
|
electron.remote.webContents
|
||||||
.getWebContents()
|
.fromId($notion.getWebContentsId())
|
||||||
.addListener('found-in-page', (event, result) => {
|
.addListener('found-in-page', (event, result) => {
|
||||||
const matches = result
|
const matches = result
|
||||||
? {
|
? {
|
||||||
@ -615,8 +613,8 @@ module.exports = (store, __exports) => {
|
|||||||
$notion,
|
$notion,
|
||||||
'zoom',
|
'zoom',
|
||||||
(zoomFactor) => {
|
(zoomFactor) => {
|
||||||
$notion.getWebContents().setZoomFactor(zoomFactor);
|
$notion.setZoomFactor(zoomFactor);
|
||||||
this.$search.getWebContents().setZoomFactor(zoomFactor);
|
this.$search.setZoomFactor(zoomFactor);
|
||||||
this.setState({ zoomFactor });
|
this.setState({ zoomFactor });
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@ -753,6 +751,7 @@ module.exports = (store, __exports) => {
|
|||||||
partition: constants.electronSessionPartition,
|
partition: constants.electronSessionPartition,
|
||||||
preload: path.resolve(`${__notion}/app/renderer/preload.js`),
|
preload: path.resolve(`${__notion}/app/renderer/preload.js`),
|
||||||
src: this.props.notionUrl,
|
src: this.props.notionUrl,
|
||||||
|
webpreferences: 'spellcheck=yes, enableremotemodule=yes',
|
||||||
}),
|
}),
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
@ -811,6 +810,7 @@ module.exports = (store, __exports) => {
|
|||||||
src: `file://${path.resolve(
|
src: `file://${path.resolve(
|
||||||
`${__notion}/app/renderer/search.html`
|
`${__notion}/app/renderer/search.html`
|
||||||
)}`,
|
)}`,
|
||||||
|
webpreferences: 'spellcheck=no, enableremotemodule=yes',
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -1057,10 +1057,7 @@ module.exports = (store, __exports) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.getElementById('notion').addEventListener('dom-ready', () => {
|
document.getElementById('notion').addEventListener('dom-ready', () => {
|
||||||
document
|
// document.getElementById('notion').executeJavaScript(insertCSP);
|
||||||
.getElementById('notion')
|
|
||||||
.getWebContents()
|
|
||||||
.executeJavaScript(insertCSP);
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user