enhancer icon next to tabs opens menu + less aggressive tab focusing so searching can actually work

This commit is contained in:
dragonwocky 2020-10-11 23:31:09 +11:00
parent d75368b020
commit 3493bfac24
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
4 changed files with 38 additions and 20 deletions

View File

@ -94,6 +94,8 @@ body,
#titlebar button {
color: var(--theme--text);
-webkit-app-region: no-drag;
border: none;
background-color: transparent;
}
#titlebar .window-buttons-area {
margin: 0.5em 0.55em 0.5em auto;
@ -102,10 +104,7 @@ body,
display: none;
}
#tabs {
margin-top: auto;
}
#tabs::before {
#open-enhancer-menu::before {
content: '';
height: 1.25em;
width: 1.25em;
@ -115,6 +114,9 @@ body,
background-image: url('enhancement://core/icons/mac+linux.png');
background-repeat: no-repeat;
}
#tabs {
margin-top: auto;
}
#tabs .tab {
display: inline-flex;
background: var(--theme--main);

View File

@ -42,6 +42,7 @@ module.exports = (store, __exports) => {
this.$titlebar = null;
this.$dragging = null;
this.views = {
active: null,
current: {
$el: () => this.views.html[this.views.current.id],
id: 0,
@ -189,15 +190,19 @@ module.exports = (store, __exports) => {
this.setState({ tabs: list }, this.focusTab.bind(this));
}
focusTab() {
if (this.views.active === this.views.current.id) return;
this.loadListeners();
this.blurListeners();
this.focusListeners();
for (const id in this.views.loaded) {
if (this.views.loaded.hasOwnProperty(id) && this.views.loaded[id]) {
this.views.loaded[id].style.display =
id == this.views.current.id && this.state.tabs.get(+id)
? 'flex'
: 'none';
const selected =
id == this.views.current.id && this.state.tabs.get(+id);
this.views.loaded[id].style.display = selected ? 'flex' : 'none';
if (selected) {
this.views.active = this.views.current.id;
this.views.loaded[id].focus();
}
}
}
}
@ -216,16 +221,20 @@ module.exports = (store, __exports) => {
}
}
startSearch(isPeekView) {
this.setState({
this.setState(
{
searching: true,
searchingPeekView: isPeekView,
});
},
() => {
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({
@ -461,6 +470,12 @@ module.exports = (store, __exports) => {
this.$titlebar = $titlebar;
},
},
React.createElement('button', {
id: 'open-enhancer-menu',
onClick: (e) => {
electron.ipcRenderer.send('enhancer:open-menu');
},
}),
React.createElement(
'div',
{ id: 'tabs' },
@ -556,8 +571,9 @@ module.exports = (store, __exports) => {
? 37
: 45) * this.state.zoomFactor,
right: (48 - 24) * this.state.zoomFactor,
width: 440 * this.state.zoomFactor,
width: 460 * this.state.zoomFactor,
height: 72 * this.state.zoomFactor,
zIndex: 99,
},
},
React.createElement('webview', {

View File

@ -122,7 +122,7 @@ module.exports = async function ({ overwrite_version, friendly_errors } = {}) {
'Notion'
)}" ${
err.dest
? `and "sudo chmod -R a+wr ${err.dest.replace(
? `and/or "sudo chmod -R a+wr ${err.dest.replace(
'Notion.app',
'Notion'
)}"`

View File

@ -124,7 +124,7 @@ module.exports = async function ({
'Notion'
)}" ${
err.dest
? `and "sudo chmod -R a+wr ${err.dest.replace(
? `and/or "sudo chmod -R a+wr ${err.dest.replace(
'Notion.app',
'Notion'
)}"`