focus mode + tabs integration

This commit is contained in:
dragonwocky 2021-12-12 13:32:59 +11:00
parent 2ffc6e1e12
commit 01ae8d67a2
10 changed files with 58 additions and 45 deletions

View File

@ -13,9 +13,11 @@
} }
], ],
"css": { "css": {
"frame": ["tabs.css"],
"client": ["client.css"] "client": ["client.css"]
}, },
"js": { "js": {
"frame": ["tabs.mjs"],
"client": ["client.mjs"] "client": ["client.mjs"]
}, },
"options": [ "options": [
@ -25,6 +27,13 @@
"label": "even padding", "label": "even padding",
"tooltip": "matches the empty space at the top and sides of the frame with **extra padding at the bottom when the sidebar is hidden**", "tooltip": "matches the empty space at the top and sides of the frame with **extra padding at the bottom when the sidebar is hidden**",
"value": true "value": true
},
{
"type": "toggle",
"key": "tabs",
"label": "hide tabs",
"tooltip": "makes the tab bar transparent unless hovered over",
"value": false
} }
] ]
} }

14
repo/focus-mode/tabs.css Normal file
View File

@ -0,0 +1,14 @@
/**
* notion-enhancer: focus mode
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license
*/
[data-focus-mode='hide-tabs'] header:not(:hover) {
background: var(--theme--bg);
border-bottom-color: transparent;
}
[data-focus-mode='hide-tabs'] header:not(:hover) > * {
opacity: 0;
transition: opacity 200ms ease-in-out;
}

12
repo/focus-mode/tabs.mjs Normal file
View File

@ -0,0 +1,12 @@
/**
* notion-enhancer: focus mode
* (c) 2020 Arecsu
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license
*/
'use strict';
export default async function (api, db) {
if (await db.get(['tabs'])) document.body.dataset.focusMode = 'hide-tabs';
}

View File

@ -6,18 +6,21 @@
'use strict'; 'use strict';
module.exports = async function ({ fs, web, registry }, db, __exports, __eval) { import { createWindowButtons } from './buttons.mjs';
const tilingMode = await db.get(['tiling']),
export default async function (api, db) {
const { web, registry } = api,
tilingMode = await db.get(['tiling']),
dragareaHeight = await db.get(['dragarea_height']), dragareaHeight = await db.get(['dragarea_height']),
tabsEnabled = await registry.enabled('e1692c29-475e-437b-b7ff-3eee872e1a42'); tabsEnabled = await registry.enabled('e1692c29-475e-437b-b7ff-3eee872e1a42');
if (tabsEnabled && !tilingMode) { if (tabsEnabled && !tilingMode) {
await web.whenReady(); const windowActionsSelector = '#window-actions';
const script = document.createElement('script'); await web.whenReady([windowActionsSelector]);
script.type = 'module';
script.src = fs.localPath('repo/integrated-titlebar/tabs.mjs'); const $topbarActions = document.querySelector(windowActionsSelector),
document.head.appendChild(script); $windowButtons = await createWindowButtons(api, db);
web.loadStylesheet('repo/integrated-titlebar/buttons.css'); web.render($topbarActions, $windowButtons);
} else { } else {
const dragareaSelector = '[style*="-webkit-app-region: drag;"]'; const dragareaSelector = '[style*="-webkit-app-region: drag;"]';
await web.whenReady([dragareaSelector]); await web.whenReady([dragareaSelector]);
@ -37,4 +40,4 @@ module.exports = async function ({ fs, web, registry }, db, __exports, __eval) {
} }
}); });
} }
}; }

View File

@ -14,16 +14,15 @@
} }
], ],
"css": { "css": {
"frame": ["buttons.css"],
"client": ["buttons.css"], "client": ["buttons.css"],
"menu": ["buttons.css"] "menu": ["buttons.css"]
}, },
"js": { "js": {
"frame": ["frame.mjs"],
"client": ["client.mjs"], "client": ["client.mjs"],
"menu": ["menu.mjs"], "menu": ["menu.mjs"],
"electron": [ "electron": [{ "source": "createWindow.cjs", "target": "main/createWindow.js" }]
{ "source": "createWindow.cjs", "target": "main/createWindow.js" },
{ "source": "rendererIndex.cjs", "target": "renderer/index.js" }
]
}, },
"options": [ "options": [
{ {

View File

@ -1,21 +0,0 @@
/**
* notion-enhancer: integrated titlebar
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license
*/
'use strict';
import * as api from '../../api/index.mjs';
import { createWindowButtons } from './buttons.mjs';
(async () => {
const db = await api.registry.db('a5658d03-21c6-4088-bade-fa4780459133'),
{ web } = api,
windowActionsSelector = '#window-actions';
await web.whenReady([windowActionsSelector]);
const $topbarActions = document.querySelector(windowActionsSelector),
$windowButtons = await createWindowButtons(api, db);
web.render($topbarActions, $windowButtons);
})();

View File

@ -13,6 +13,9 @@ module.exports = async function (api, db, __exports, __eval) {
{ components, web } = api; { components, web } = api;
window['__start'] = async () => { window['__start'] = async () => {
// display:none; to prevent content flash while css loads
document.body.style.display = 'none';
const tabCache = new Map(), const tabCache = new Map(),
Tab = await require('./tab.cjs')(api, db, tabCache); Tab = await require('./tab.cjs')(api, db, tabCache);
document.body.dataset.tabLabels = await db.get(['label_type']); document.body.dataset.tabLabels = await db.get(['label_type']);

View File

@ -19,7 +19,7 @@ body {
} }
body { body {
display: flex; display: flex !important;
flex-direction: column; flex-direction: column;
} }

View File

@ -6,7 +6,7 @@
'use strict'; 'use strict';
module.exports = async function ({ registry, web, storage, electron }, db, __exports, __eval) { export default async function ({ web, storage, electron }, db) {
await web.whenReady(); await web.whenReady();
const updateTheme = async () => { const updateTheme = async () => {
@ -16,10 +16,4 @@ module.exports = async function ({ registry, web, storage, electron }, db, __exp
}; };
electron.onMessage('update-theme', updateTheme); electron.onMessage('update-theme', updateTheme);
updateTheme(); updateTheme();
}
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {
for (const sheet of mod.css?.frame || []) {
web.loadStylesheet(`repo/${mod._dir}/${sheet}`);
}
}
};

View File

@ -13,16 +13,16 @@
} }
], ],
"css": { "css": {
"frame": ["variables.css", "electronSearch.css"], "frame": ["variables.css"],
"client": ["variables.css", "prism.css", "patches.css"], "client": ["variables.css", "prism.css", "patches.css"],
"menu": ["variables.css"] "menu": ["variables.css"]
}, },
"js": { "js": {
"frame": ["frame.mjs"],
"client": ["client.mjs"], "client": ["client.mjs"],
"menu": ["menu.mjs"], "menu": ["menu.mjs"],
"electron": [ "electron": [
{ "source": "main.cjs", "target": "main/main.js" }, { "source": "main.cjs", "target": "main/main.js" },
{ "source": "rendererIndex.cjs", "target": "renderer/index.js" },
{ "source": "rendererSearch.cjs", "target": "renderer/search.js" } { "source": "rendererSearch.cjs", "target": "renderer/search.js" }
] ]
}, },