mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
enhancer icon next to tabs opens menu + less aggressive tab focusing so searching can actually work
This commit is contained in:
parent
d75368b020
commit
3493bfac24
@ -94,6 +94,8 @@ body,
|
|||||||
#titlebar button {
|
#titlebar button {
|
||||||
color: var(--theme--text);
|
color: var(--theme--text);
|
||||||
-webkit-app-region: no-drag;
|
-webkit-app-region: no-drag;
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
#titlebar .window-buttons-area {
|
#titlebar .window-buttons-area {
|
||||||
margin: 0.5em 0.55em 0.5em auto;
|
margin: 0.5em 0.55em 0.5em auto;
|
||||||
@ -102,10 +104,7 @@ body,
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tabs {
|
#open-enhancer-menu::before {
|
||||||
margin-top: auto;
|
|
||||||
}
|
|
||||||
#tabs::before {
|
|
||||||
content: '';
|
content: '';
|
||||||
height: 1.25em;
|
height: 1.25em;
|
||||||
width: 1.25em;
|
width: 1.25em;
|
||||||
@ -115,6 +114,9 @@ body,
|
|||||||
background-image: url('enhancement://core/icons/mac+linux.png');
|
background-image: url('enhancement://core/icons/mac+linux.png');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
#tabs {
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
#tabs .tab {
|
#tabs .tab {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
background: var(--theme--main);
|
background: var(--theme--main);
|
||||||
|
@ -42,6 +42,7 @@ module.exports = (store, __exports) => {
|
|||||||
this.$titlebar = null;
|
this.$titlebar = null;
|
||||||
this.$dragging = null;
|
this.$dragging = null;
|
||||||
this.views = {
|
this.views = {
|
||||||
|
active: null,
|
||||||
current: {
|
current: {
|
||||||
$el: () => this.views.html[this.views.current.id],
|
$el: () => this.views.html[this.views.current.id],
|
||||||
id: 0,
|
id: 0,
|
||||||
@ -189,15 +190,19 @@ module.exports = (store, __exports) => {
|
|||||||
this.setState({ tabs: list }, this.focusTab.bind(this));
|
this.setState({ tabs: list }, this.focusTab.bind(this));
|
||||||
}
|
}
|
||||||
focusTab() {
|
focusTab() {
|
||||||
|
if (this.views.active === this.views.current.id) return;
|
||||||
this.loadListeners();
|
this.loadListeners();
|
||||||
this.blurListeners();
|
this.blurListeners();
|
||||||
this.focusListeners();
|
this.focusListeners();
|
||||||
for (const id in this.views.loaded) {
|
for (const id in this.views.loaded) {
|
||||||
if (this.views.loaded.hasOwnProperty(id) && this.views.loaded[id]) {
|
if (this.views.loaded.hasOwnProperty(id) && this.views.loaded[id]) {
|
||||||
this.views.loaded[id].style.display =
|
const selected =
|
||||||
id == this.views.current.id && this.state.tabs.get(+id)
|
id == this.views.current.id && this.state.tabs.get(+id);
|
||||||
? 'flex'
|
this.views.loaded[id].style.display = selected ? 'flex' : 'none';
|
||||||
: 'none';
|
if (selected) {
|
||||||
|
this.views.active = this.views.current.id;
|
||||||
|
this.views.loaded[id].focus();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -216,15 +221,19 @@ module.exports = (store, __exports) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
startSearch(isPeekView) {
|
startSearch(isPeekView) {
|
||||||
this.setState({
|
this.setState(
|
||||||
searching: true,
|
{
|
||||||
searchingPeekView: isPeekView,
|
searching: true,
|
||||||
});
|
searchingPeekView: isPeekView,
|
||||||
if (document.activeElement instanceof HTMLElement)
|
},
|
||||||
document.activeElement.blur();
|
() => {
|
||||||
this.$search.focus();
|
if (document.activeElement instanceof HTMLElement)
|
||||||
notionIpc.sendIndexToSearch(this.$search, 'search:start');
|
document.activeElement.blur();
|
||||||
notionIpc.sendIndexToNotion(this.$search, 'search:started');
|
this.$search.focus();
|
||||||
|
notionIpc.sendIndexToSearch(this.$search, 'search:start');
|
||||||
|
notionIpc.sendIndexToNotion(this.$search, 'search:started');
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
stopSearch() {
|
stopSearch() {
|
||||||
notionIpc.sendIndexToSearch(this.$search, 'search:reset');
|
notionIpc.sendIndexToSearch(this.$search, 'search:reset');
|
||||||
@ -461,6 +470,12 @@ module.exports = (store, __exports) => {
|
|||||||
this.$titlebar = $titlebar;
|
this.$titlebar = $titlebar;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
React.createElement('button', {
|
||||||
|
id: 'open-enhancer-menu',
|
||||||
|
onClick: (e) => {
|
||||||
|
electron.ipcRenderer.send('enhancer:open-menu');
|
||||||
|
},
|
||||||
|
}),
|
||||||
React.createElement(
|
React.createElement(
|
||||||
'div',
|
'div',
|
||||||
{ id: 'tabs' },
|
{ id: 'tabs' },
|
||||||
@ -556,8 +571,9 @@ module.exports = (store, __exports) => {
|
|||||||
? 37
|
? 37
|
||||||
: 45) * this.state.zoomFactor,
|
: 45) * this.state.zoomFactor,
|
||||||
right: (48 - 24) * this.state.zoomFactor,
|
right: (48 - 24) * this.state.zoomFactor,
|
||||||
width: 440 * this.state.zoomFactor,
|
width: 460 * this.state.zoomFactor,
|
||||||
height: 72 * this.state.zoomFactor,
|
height: 72 * this.state.zoomFactor,
|
||||||
|
zIndex: 99,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
React.createElement('webview', {
|
React.createElement('webview', {
|
||||||
|
@ -122,7 +122,7 @@ module.exports = async function ({ overwrite_version, friendly_errors } = {}) {
|
|||||||
'Notion'
|
'Notion'
|
||||||
)}" ${
|
)}" ${
|
||||||
err.dest
|
err.dest
|
||||||
? `and "sudo chmod -R a+wr ${err.dest.replace(
|
? `and/or "sudo chmod -R a+wr ${err.dest.replace(
|
||||||
'Notion.app',
|
'Notion.app',
|
||||||
'Notion'
|
'Notion'
|
||||||
)}"`
|
)}"`
|
||||||
|
@ -124,7 +124,7 @@ module.exports = async function ({
|
|||||||
'Notion'
|
'Notion'
|
||||||
)}" ${
|
)}" ${
|
||||||
err.dest
|
err.dest
|
||||||
? `and "sudo chmod -R a+wr ${err.dest.replace(
|
? `and/or "sudo chmod -R a+wr ${err.dest.replace(
|
||||||
'Notion.app',
|
'Notion.app',
|
||||||
'Notion'
|
'Notion'
|
||||||
)}"`
|
)}"`
|
||||||
|
Loading…
Reference in New Issue
Block a user