separate search working for tabs

This commit is contained in:
dragonwocky 2020-10-06 22:12:25 +11:00
parent 5bec4e31b6
commit 157d440254
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
4 changed files with 164 additions and 118 deletions

View File

@ -55,7 +55,6 @@ module.exports = (store, __exports) => {
electron.session electron.session
.fromPartition('persist:notion') .fromPartition('persist:notion')
.webRequest.onHeadersReceived((details, callback) => { .webRequest.onHeadersReceived((details, callback) => {
alert(1);
callback({ callback({
responseHeaders: { responseHeaders: {
...details.responseHeaders, ...details.responseHeaders,

View File

@ -27,8 +27,7 @@ const insertCSP = `
`; `;
module.exports = (store, __exports) => { module.exports = (store, __exports) => {
if (store().tabs) { if (!store().tabs) {
let $currentTab;
class Index extends React.PureComponent { class Index extends React.PureComponent {
constructor() { constructor() {
super(...arguments); super(...arguments);
@ -39,64 +38,186 @@ module.exports = (store, __exports) => {
zoomFactor: 1, zoomFactor: 1,
tabs: [], tabs: [],
}; };
this.$currentTab;
this.tabCache = {
react: {},
active: [],
loading: [],
};
this.notionElm = []; this.notionElm = [];
this.loadedElms = []; this.loadedElms = [];
this.reactTabs = {}; this.reactTabs = {};
this.handleNotionRef = (notionElm) => { this.handleNotionRef = ($notion) => {
this.notionElm.push(notionElm); this.tabCache.loading.push($notion);
}; };
this.searchElm = null; this.$search = null;
this.handleSearchRef = (searchElm) => { this.handleSearchRef = (searchElm) => {
this.searchElm = searchElm; this.$search = searchElm;
}; };
this.handleReload = () => { this.handleReload = () => {
this.setState({ error: false }); this.setState({ error: false });
setTimeout(() => { setTimeout(() => {
if (this.notionElm.length) { this.tabCache.loading.forEach(($notion) => {
this.notionElm.forEach(($notion) => { if ($notion.isWaitingForResponse()) $notion.reload();
if ($notion.isWaitingForResponse()) $notion.reload(); });
});
}
}, 50); }, 50);
}; };
this.startSearch = this.startSearch.bind(this);
this.stopSearch = this.stopSearch.bind(this);
this.nextSearch = this.nextSearch.bind(this);
this.prevSearch = this.prevSearch.bind(this);
this.clearSearch = this.clearSearch.bind(this);
this.doneSearch = this.doneSearch.bind(this);
window['tab'] = (id) => { window['tab'] = (id) => {
if (!id && id !== 0) return; if (!id && id !== 0) return;
this.setState({ tabs: [...new Set([...this.state.tabs, id])] }); this.setState({ tabs: [...new Set([...this.state.tabs, id])] });
setTimeout(() => { setTimeout(() => {
this.addListeners(); this.loadListeners();
this.blurListeners();
if (document.querySelector(`#tab-${id}`)) { if (document.querySelector(`#tab-${id}`)) {
$currentTab = document.querySelector(`#tab-${id}`); this.tabCache.active.forEach(($notion) => {
$currentTab.focus(); $notion.style.display = 'none';
});
this.$currentTab = document.querySelector(`#tab-${id}`);
this.$currentTab.style.display = 'flex';
this.focusListeners();
} }
}, 100); }, 1000);
}; };
} }
componentDidMount() { componentDidMount() {
this.addListeners(); this.loadListeners();
try { try {
electron.remote.getCurrentWindow().on('focus', (e) => { electron.remote.getCurrentWindow().on('focus', (e) => {
$notion.focus(); this.$currentTab.focus();
}); });
} catch {} } catch {}
} }
addListeners() { startSearch(isPeekView) {
const searchElm = this.searchElm; this.setState({
const notionElm = this.notionElm; searching: true,
if (!searchElm || !notionElm.length) { searchingPeekView: isPeekView,
return; });
if (document.activeElement instanceof HTMLElement)
document.activeElement.blur();
this.$search.focus();
notionIpc.sendIndexToSearch(this.$search, 'search:start');
notionIpc.sendIndexToNotion(this.$search, 'search:started');
}
stopSearch() {
notionIpc.sendIndexToSearch(this.$search, 'search:reset');
this.setState({
searching: false,
});
this.lastSearchQuery = undefined;
this.$currentTab.getWebContents().stopFindInPage('clearSelection');
notionIpc.sendIndexToNotion(this.$currentTab, 'search:stopped');
}
nextSearch(query) {
this.$currentTab.getWebContents().findInPage(query, {
forward: true,
findNext: query === this.lastSearchQuery,
});
this.lastSearchQuery = query;
}
prevSearch(query) {
this.$currentTab.getWebContents().findInPage(query, {
forward: false,
findNext: query === this.lastSearchQuery,
});
this.lastSearchQuery = query;
}
clearSearch() {
this.lastSearchQuery = undefined;
this.$currentTab.getWebContents().stopFindInPage('clearSelection');
}
doneSearch() {
this.lastSearchQuery = undefined;
this.$currentTab.getWebContents().stopFindInPage('clearSelection');
this.setState({ searching: false });
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
} }
this.$currentTab.focus();
notionElm notionIpc.sendIndexToNotion(this.$currentTab, 'search:stopped');
.filter(($notion) => !this.loadedElms.includes($notion)) }
blurListeners() {
if (!this.$currentTab) return;
if (this.state.searching) this.stopSearch();
notionIpc.receiveIndexFromNotion.removeListener(
this.$currentTab,
'search:start',
this.startSearch
);
notionIpc.receiveIndexFromNotion.removeListener(
this.$currentTab,
'search:stop',
this.stopSearch
);
notionIpc.receiveIndexFromSearch.removeListener(
this.$search,
'search:next',
this.nextSearch
);
notionIpc.receiveIndexFromSearch.removeListener(
this.$search,
'search:prev',
this.prevSearch
);
notionIpc.receiveIndexFromSearch.removeListener(
this.$search,
'search:clear',
this.clearSearch
);
notionIpc.receiveIndexFromSearch.removeListener(
this.$search,
'search:stop',
this.doneSearch
);
}
focusListeners() {
notionIpc.receiveIndexFromNotion.addListener(
this.$currentTab,
'search:start',
this.startSearch
);
notionIpc.receiveIndexFromNotion.addListener(
this.$currentTab,
'search:stop',
this.stopSearch
);
notionIpc.receiveIndexFromSearch.addListener(
this.$search,
'search:next',
this.nextSearch
);
notionIpc.receiveIndexFromSearch.addListener(
this.$search,
'search:prev',
this.prevSearch
);
notionIpc.receiveIndexFromSearch.addListener(
this.$search,
'search:clear',
this.clearSearch
);
notionIpc.receiveIndexFromSearch.addListener(
this.$search,
'search:stop',
this.doneSearch
);
}
loadListeners() {
if (!this.$search) return;
this.tabCache.loading
.filter(($notion) => !this.tabCache.active.includes($notion))
.forEach(($notion) => { .forEach(($notion) => {
this.loadedElms.push($notion); this.tabCache.active.push($notion);
$notion.addEventListener('did-fail-load', (error) => { $notion.addEventListener('did-fail-load', (error) => {
// logger.info('Failed to load:', error); // logger.info('Failed to load:', error);
if (error.errorCode === -3) {
return;
}
if ( if (
error.errorCode === -3 ||
!error.validatedURL.startsWith( !error.validatedURL.startsWith(
schemeHelpers.getSchemeUrl({ schemeHelpers.getSchemeUrl({
httpUrl: config.default.baseURL, httpUrl: config.default.baseURL,
@ -108,81 +229,8 @@ module.exports = (store, __exports) => {
} }
this.setState({ error: true }); this.setState({ error: true });
}); });
notionIpc.receiveIndexFromNotion.addListener(
$notion,
'search:start',
(isPeekView) => {
this.setState({
searching: true,
searchingPeekView: isPeekView,
});
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
searchElm.focus();
notionIpc.sendIndexToSearch(searchElm, 'search:start');
notionIpc.sendIndexToNotion(searchElm, 'search:started');
}
);
notionIpc.receiveIndexFromNotion.addListener(
$notion,
'search:stop',
() => {
notionIpc.sendIndexToSearch(searchElm, 'search:reset');
this.setState({
searching: false,
});
this.lastSearchQuery = undefined;
$notion.getWebContents().stopFindInPage('clearSelection');
notionIpc.sendIndexToNotion($notion, 'search:stopped');
}
);
notionIpc.receiveIndexFromSearch.addListener(
searchElm,
'search:next',
(query) => {
$notion.getWebContents().findInPage(query, {
forward: true,
findNext: query === this.lastSearchQuery,
});
this.lastSearchQuery = query;
}
);
notionIpc.receiveIndexFromSearch.addListener(
searchElm,
'search:prev',
(query) => {
$notion.getWebContents().findInPage(query, {
forward: false,
findNext: query === this.lastSearchQuery,
});
this.lastSearchQuery = query;
}
);
notionIpc.receiveIndexFromSearch.addListener(
searchElm,
'search:clear',
() => {
this.lastSearchQuery = undefined;
$notion.getWebContents().stopFindInPage('clearSelection');
}
);
notionIpc.receiveIndexFromSearch.addListener(
searchElm,
'search:stop',
() => {
this.lastSearchQuery = undefined;
$notion.getWebContents().stopFindInPage('clearSelection');
this.setState({ searching: false });
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
$notion.focus();
notionIpc.sendIndexToNotion($notion, 'search:stopped');
}
);
$notion.addEventListener('dom-ready', () => { $notion.addEventListener('dom-ready', () => {
$notion.executeJavaScript(insertCSP); $notion.getWebContents().executeJavaScript(insertCSP);
$notion $notion
.getWebContents() .getWebContents()
.addListener('found-in-page', (event, result) => { .addListener('found-in-page', (event, result) => {
@ -193,25 +241,19 @@ module.exports = (store, __exports) => {
} }
: { count: 0, index: 0 }; : { count: 0, index: 0 };
notionIpc.sendIndexToSearch( notionIpc.sendIndexToSearch(
searchElm, this.$search,
'search:result', 'search:result',
matches matches
); );
}); });
notionIpc.proxyAllMainToNotion($notion); notionIpc.proxyAllMainToNotion($notion);
if ($notion !== $currentTab) return;
if (document.activeElement instanceof HTMLElement) {
document.activeElement.blur();
}
$notion.blur();
$notion.focus();
}); });
notionIpc.receiveIndexFromNotion.addListener( notionIpc.receiveIndexFromNotion.addListener(
$notion, $notion,
'search:set-theme', 'search:set-theme',
(theme) => { (theme) => {
notionIpc.sendIndexToSearch( notionIpc.sendIndexToSearch(
searchElm, this.$search,
'search:set-theme', 'search:set-theme',
theme theme
); );
@ -222,7 +264,7 @@ module.exports = (store, __exports) => {
'zoom', 'zoom',
(zoomFactor) => { (zoomFactor) => {
$notion.getWebContents().setZoomFactor(zoomFactor); $notion.getWebContents().setZoomFactor(zoomFactor);
searchElm.getWebContents().setZoomFactor(zoomFactor); this.$search.getWebContents().setZoomFactor(zoomFactor);
this.setState({ zoomFactor }); this.setState({ zoomFactor });
} }
); );
@ -284,6 +326,7 @@ module.exports = (store, __exports) => {
sendFullScreenChangeEvent sendFullScreenChangeEvent
); );
}); });
this.tabCache.loading = [];
} }
renderSearchContainer() { renderSearchContainer() {
return React.createElement( return React.createElement(
@ -311,6 +354,7 @@ module.exports = (store, __exports) => {
this.reactTabs[id] || this.reactTabs[id] ||
React.createElement('webview', { React.createElement('webview', {
className: 'notion', className: 'notion',
id: `tab-${id}`,
style: Index.notionWebviewStyle, style: Index.notionWebviewStyle,
ref: this.handleNotionRef, ref: this.handleNotionRef,
partition: constants.electronSessionPartition, partition: constants.electronSessionPartition,
@ -391,7 +435,7 @@ module.exports = (store, __exports) => {
this.renderSearchContainer(), this.renderSearchContainer(),
this.renderErrorContainer() this.renderErrorContainer()
); );
this.addListeners(); this.loadListeners();
return result; return result;
} }
getNotionContainerStyle() { getNotionContainerStyle() {
@ -487,6 +531,7 @@ module.exports = (store, __exports) => {
Index.notionWebviewStyle = { Index.notionWebviewStyle = {
width: '100%', width: '100%',
height: '100%', height: '100%',
display: 'none',
}; };
Index.dragRegionStyle = { Index.dragRegionStyle = {
position: 'absolute', position: 'absolute',
@ -534,7 +579,6 @@ module.exports = (store, __exports) => {
}; };
} else { } else {
const __start = window['__start']; const __start = window['__start'];
window['__start'] = () => { window['__start'] = () => {
__start(); __start();
const dragarea = document.querySelector( const dragarea = document.querySelector(
@ -557,7 +601,10 @@ module.exports = (store, __exports) => {
}); });
document.getElementById('notion').addEventListener('dom-ready', () => { document.getElementById('notion').addEventListener('dom-ready', () => {
document.getElementById('notion').executeJavaScript(insertCSP); document
.getElementById('notion')
.getWebContents()
.executeJavaScript(insertCSP);
}); });
} }
}; };

View File

@ -117,7 +117,7 @@ module.exports = async function ({ overwrite_version, friendly_errors } = {}) {
`file access forbidden - ${ `file access forbidden - ${
process.platform === 'win32' process.platform === 'win32'
? 'make sure your user has elevated permissions.' ? 'make sure your user has elevated permissions.'
: `try running "chown -R $USER ${err.path}"` : `try running "sudo chmod a+wr -R ${err.path}"`
}` }`
); );
} else if (['EIO', 'EBUSY'].includes(err.code) && friendly_errors) { } else if (['EIO', 'EBUSY'].includes(err.code) && friendly_errors) {

View File

@ -119,7 +119,7 @@ module.exports = async function ({
`file access forbidden - ${ `file access forbidden - ${
process.platform === 'win32' process.platform === 'win32'
? 'make sure your user has elevated permissions.' ? 'make sure your user has elevated permissions.'
: `try running "chown -R $USER ${err.path}"` : `try running "sudo chmod a+wr -R ${err.path}"`
}` }`
); );
} else if (['EIO', 'EBUSY'].includes(err.code) && friendly_errors) { } else if (['EIO', 'EBUSY'].includes(err.code) && friendly_errors) {