mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
better tab picking on close: find closest/next instead of jumping to first
This commit is contained in:
parent
b10ec8f136
commit
ed5ededcbe
@ -225,7 +225,12 @@ module.exports = (store, __exports) => {
|
|||||||
openTab(id, state = new Map(this.state.tabs), load) {
|
openTab(id, state = new Map(this.state.tabs), load) {
|
||||||
if (!id && id !== 0) {
|
if (!id && id !== 0) {
|
||||||
if (state.get(this.views.current.id)[1]) return;
|
if (state.get(this.views.current.id)[1]) return;
|
||||||
id = [...state].find(([id, [title, open]]) => open)[0];
|
const currentIndex = [...state].findIndex(
|
||||||
|
([id, [title, open]]) => id === this.views.current.id
|
||||||
|
);
|
||||||
|
id = ([...state].find(
|
||||||
|
([id, [title, open]], tabIndex) => open && tabIndex > currentIndex
|
||||||
|
) || [...state].find(([id, [title, open]]) => open))[0];
|
||||||
}
|
}
|
||||||
const current_src = this.views.current.$el().src;
|
const current_src = this.views.current.$el().src;
|
||||||
this.views.current.id = id;
|
this.views.current.id = id;
|
||||||
@ -280,9 +285,7 @@ module.exports = (store, __exports) => {
|
|||||||
if (![...list].filter(([id, [title, open]]) => open).length)
|
if (![...list].filter(([id, [title, open]]) => open).length)
|
||||||
return electron.remote.getCurrentWindow().close();
|
return electron.remote.getCurrentWindow().close();
|
||||||
this.openTab(
|
this.openTab(
|
||||||
this.views.current.id === id
|
this.views.current.id === id ? null : this.views.current.id,
|
||||||
? null
|
|
||||||
: [...list].find(([id, [title, open]]) => open)[0],
|
|
||||||
list
|
list
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user