mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
tabs: restore prev. hotkey
This commit is contained in:
parent
af977b1bfa
commit
ab300633ec
@ -9,8 +9,16 @@
|
|||||||
export default async function ({ web, electron }, db) {
|
export default async function ({ web, electron }, db) {
|
||||||
const newTabHotkey = await db.get(['new_tab']),
|
const newTabHotkey = await db.get(['new_tab']),
|
||||||
closeTabHotkey = await db.get(['close_tab']),
|
closeTabHotkey = await db.get(['close_tab']),
|
||||||
|
restoreTabHotkey = await db.get(['restore_tab']),
|
||||||
selectTabModifier = await db.get(['select_modifier']);
|
selectTabModifier = await db.get(['select_modifier']);
|
||||||
web.addHotkeyListener(newTabHotkey, () => electron.sendMessageToHost('new-tab'));
|
web.addHotkeyListener(newTabHotkey, () => {
|
||||||
|
electron.sendMessageToHost('new-tab');
|
||||||
|
console.log('new-tab');
|
||||||
|
});
|
||||||
|
web.addHotkeyListener(restoreTabHotkey, () => {
|
||||||
|
electron.sendMessageToHost('restore-tab');
|
||||||
|
console.log('restore-tab');
|
||||||
|
});
|
||||||
web.addHotkeyListener(closeTabHotkey, () => electron.sendMessageToHost('close-tab'));
|
web.addHotkeyListener(closeTabHotkey, () => electron.sendMessageToHost('close-tab'));
|
||||||
for (let i = 1; i < 10; i++) {
|
for (let i = 1; i < 10; i++) {
|
||||||
web.addHotkeyListener([selectTabModifier, i.toString()], () => {
|
web.addHotkeyListener([selectTabModifier, i.toString()], () => {
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
let focusedTab;
|
let focusedTab;
|
||||||
|
|
||||||
module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache) {
|
module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache = new Map()) {
|
||||||
const electron = require('electron'),
|
const electron = require('electron'),
|
||||||
electronWindow = electron.remote.getCurrentWindow(),
|
electronWindow = electron.remote.getCurrentWindow(),
|
||||||
notionIpc = env.notionRequire('helpers/notionIpc'),
|
notionIpc = env.notionRequire('helpers/notionIpc'),
|
||||||
@ -55,23 +55,21 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
cancelAnimation = false,
|
cancelAnimation = false,
|
||||||
icon = '',
|
icon = '',
|
||||||
title = 'notion.so',
|
title = 'notion.so',
|
||||||
|
cache = tabCache,
|
||||||
} = {}
|
} = {}
|
||||||
) {
|
) {
|
||||||
|
this.tabCache = cache;
|
||||||
this.$tabList = $tabList;
|
this.$tabList = $tabList;
|
||||||
this.$tabContainer = $tabContainer;
|
this.$tabContainer = $tabContainer;
|
||||||
|
|
||||||
this.$notion.src = notionUrl;
|
this.$notion.src = notionUrl;
|
||||||
this.$tabTitle.innerText = title;
|
this.$tabTitle.innerText = title;
|
||||||
this.setIcon(icon);
|
this.setIcon(icon);
|
||||||
tabCache.set(this.$tab.id, this);
|
this.tabCache.set(this.$tab.id, this);
|
||||||
|
|
||||||
web.render($tabList, this.$tab);
|
|
||||||
web.render($tabContainer, this.$search);
|
|
||||||
web.render($tabContainer, this.$notion);
|
|
||||||
electronWindow.on('focus', () => {
|
electronWindow.on('focus', () => {
|
||||||
if (focusedTab === this) this.$notion.focus();
|
if (focusedTab === this) this.$notion.focus();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$tab.addEventListener('click', (event) => {
|
this.$tab.addEventListener('click', (event) => {
|
||||||
if (event.target !== this.$closeTab && !this.$closeTab.contains(event.target)) {
|
if (event.target !== this.$closeTab && !this.$closeTab.contains(event.target)) {
|
||||||
this.focus();
|
this.focus();
|
||||||
@ -79,6 +77,16 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
});
|
});
|
||||||
this.$closeTab.addEventListener('click', () => this.close());
|
this.$closeTab.addEventListener('click', () => this.close());
|
||||||
|
|
||||||
|
this.open(cancelAnimation);
|
||||||
|
this.addNotionListeners();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
open(cancelAnimation = false) {
|
||||||
|
this.closed = false;
|
||||||
|
web.render(this.$tabList, this.$tab);
|
||||||
|
web.render(this.$tabContainer, this.$search);
|
||||||
|
web.render(this.$tabContainer, this.$notion);
|
||||||
if (!cancelAnimation) {
|
if (!cancelAnimation) {
|
||||||
this.$tab.animate([{ width: '0px' }, { width: `${this.$tab.clientWidth}px` }], {
|
this.$tab.animate([{ width: '0px' }, { width: `${this.$tab.clientWidth}px` }], {
|
||||||
duration: 100,
|
duration: 100,
|
||||||
@ -86,10 +94,7 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
}).finished;
|
}).finished;
|
||||||
}
|
}
|
||||||
this.focus();
|
this.focus();
|
||||||
this.addNotionListeners();
|
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async focus() {
|
async focus() {
|
||||||
document.querySelectorAll('.notion-webview, .search-webview').forEach(($webview) => {
|
document.querySelectorAll('.notion-webview, .search-webview').forEach(($webview) => {
|
||||||
if (![this.$notion, this.$search].includes($webview)) $webview.style.display = '';
|
if (![this.$notion, this.$search].includes($webview)) $webview.style.display = '';
|
||||||
@ -100,12 +105,13 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
this.$tab.classList.add('current');
|
this.$tab.classList.add('current');
|
||||||
this.$notion.style.display = 'flex';
|
this.$notion.style.display = 'flex';
|
||||||
this.$search.style.display = 'flex';
|
this.$search.style.display = 'flex';
|
||||||
this.focusNotion();
|
if (this.domReady) this.focusNotion();
|
||||||
focusedTab = this;
|
focusedTab = this;
|
||||||
}
|
}
|
||||||
async close() {
|
async close() {
|
||||||
const $sibling = this.$tab.nextElementSibling || this.$tab.previousElementSibling;
|
const $sibling = this.$tab.nextElementSibling || this.$tab.previousElementSibling;
|
||||||
if ($sibling) {
|
if ($sibling) {
|
||||||
|
this.closed = Date.now();
|
||||||
if (!focusedTab || focusedTab === this) $sibling.click();
|
if (!focusedTab || focusedTab === this) $sibling.click();
|
||||||
const width = `${this.$tab.clientWidth}px`;
|
const width = `${this.$tab.clientWidth}px`;
|
||||||
this.$tab.style.width = 0;
|
this.$tab.style.width = 0;
|
||||||
@ -117,6 +123,9 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
this.$tab.remove();
|
this.$tab.remove();
|
||||||
this.$notion.remove();
|
this.$notion.remove();
|
||||||
this.$search.remove();
|
this.$search.remove();
|
||||||
|
this.$tab.style.width = '';
|
||||||
|
this.$tab.style.pointerEvents = '';
|
||||||
|
this.domReady = false;
|
||||||
} else electronWindow.close();
|
} else electronWindow.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -149,6 +158,7 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
this.$search.focus();
|
this.$search.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
domReady = false;
|
||||||
addNotionListeners() {
|
addNotionListeners() {
|
||||||
const fromNotion = (channel, listener) =>
|
const fromNotion = (channel, listener) =>
|
||||||
notionIpc.receiveIndexFromNotion.addListener(this.$notion, channel, listener),
|
notionIpc.receiveIndexFromNotion.addListener(this.$notion, channel, listener),
|
||||||
@ -157,7 +167,8 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
toSearch = (channel, data) => notionIpc.sendIndexToSearch(this.$search, channel, data);
|
toSearch = (channel, data) => notionIpc.sendIndexToSearch(this.$search, channel, data);
|
||||||
|
|
||||||
this.$notion.addEventListener('dom-ready', () => {
|
this.$notion.addEventListener('dom-ready', () => {
|
||||||
this.focusNotion();
|
if (focusedTab === this) this.focus();
|
||||||
|
this.domReady = true;
|
||||||
|
|
||||||
const navigateHistory = (event, cmd) => {
|
const navigateHistory = (event, cmd) => {
|
||||||
const swipe = event === 'swipe',
|
const swipe = event === 'swipe',
|
||||||
@ -201,6 +212,12 @@ module.exports = async function ({ components, env, web, fmt, fs }, db, tabCache
|
|||||||
() => new this.constructor(this.$tabList, this.$tabContainer)
|
() => new this.constructor(this.$tabList, this.$tabContainer)
|
||||||
);
|
);
|
||||||
fromNotion('notion-enhancer:close-tab', () => this.close());
|
fromNotion('notion-enhancer:close-tab', () => this.close());
|
||||||
|
fromNotion('notion-enhancer:restore-tab', () => {
|
||||||
|
const tab = [...this.tabCache.values()]
|
||||||
|
.filter((tab) => tab.closed)
|
||||||
|
.sort((a, b) => b.closed - a.closed)[0];
|
||||||
|
if (tab) tab.open();
|
||||||
|
});
|
||||||
fromNotion('notion-enhancer:select-tab', (i) => {
|
fromNotion('notion-enhancer:select-tab', (i) => {
|
||||||
const $tab = i === 9 ? this.$tabList.lastElementChild : this.$tabList.children[i - 1];
|
const $tab = i === 9 ? this.$tabList.lastElementChild : this.$tabList.children[i - 1];
|
||||||
if ($tab) $tab.click();
|
if ($tab) $tab.click();
|
||||||
|
Loading…
Reference in New Issue
Block a user