diff --git a/repo/always-on-top/button.css b/repo/always-on-top/button.css
index c2fef44..71150b4 100644
--- a/repo/always-on-top/button.css
+++ b/repo/always-on-top/button.css
@@ -34,6 +34,8 @@
display: block;
width: 20px;
height: 20px;
+ fill: var(--theme--icon);
+ color: var(--theme--icon);
}
.always_on_top--button button:focus,
diff --git a/repo/global-block-links/client.css b/repo/global-block-links/client.css
index 573bb27..66dcc54 100644
--- a/repo/global-block-links/client.css
+++ b/repo/global-block-links/client.css
@@ -24,7 +24,7 @@
display: block;
height: 16px;
width: 16px;
- fill: var(--theme--icon_secondary);
+ fill: var(--theme--icon);
}
.global_block_links--topbar_copy > span {
margin-left: 2px;
diff --git a/repo/gruvbox-light/variables.css b/repo/gruvbox-light/variables.css
index ea69c5a..a72e370 100644
--- a/repo/gruvbox-light/variables.css
+++ b/repo/gruvbox-light/variables.css
@@ -6,7 +6,7 @@
* (https://notion-enhancer.github.io/) under the MIT license
*/
-:root:not(.dark) {
+:root.light {
/*
* variables are named for consistency with gruvbox dark,
* but the _light variants are actually darker here
diff --git a/repo/icon-sets/client.mjs b/repo/icon-sets/client.mjs
index 65d1871..df6e491 100644
--- a/repo/icon-sets/client.mjs
+++ b/repo/icon-sets/client.mjs
@@ -208,7 +208,7 @@ export default async function ({ web, fs, components, notion }, db) {
);
web.render($setsList, $title, $set);
} catch (err) {
- console.log(err);
+ console.error(err);
web.render(
$setsList,
web.html`
diff --git a/repo/integrated-titlebar/buttons.css b/repo/integrated-titlebar/buttons.css
index 3cb1142..88eeb0f 100644
--- a/repo/integrated-titlebar/buttons.css
+++ b/repo/integrated-titlebar/buttons.css
@@ -42,6 +42,8 @@
display: block;
width: 20px;
height: 20px;
+ fill: var(--theme--icon);
+ color: var(--theme--icon);
}
.integrated_titlebar--buttons button:focus,
diff --git a/repo/light+/variables.css b/repo/light+/variables.css
index b641656..473a6c7 100644
--- a/repo/light+/variables.css
+++ b/repo/light+/variables.css
@@ -5,7 +5,7 @@
* (https://notion-enhancer.github.io/) under the MIT license
*/
-:root:not(.dark) {
+:root.light {
--theme--accent_blue: var(--light_plus--accent_blue, rgb(46, 170, 220));
--theme--accent_blue-selection: var(
--light_plus--accent_blue-selection,
diff --git a/repo/menu/menu.mjs b/repo/menu/menu.mjs
index ab013b9..e12196b 100644
--- a/repo/menu/menu.mjs
+++ b/repo/menu/menu.mjs
@@ -23,7 +23,7 @@ import './styles.mjs';
}
const errors = await registry.errors();
if (errors.length) {
- console.log('[notion-enhancer] registry errors:');
+ console.error('[notion-enhancer] registry errors:');
console.table(errors);
const $errNotification = await notifications.add({
icon: 'alert-circle',
diff --git a/repo/pinky-boom/variables.css b/repo/pinky-boom/variables.css
index d418bdf..8a57b21 100644
--- a/repo/pinky-boom/variables.css
+++ b/repo/pinky-boom/variables.css
@@ -5,7 +5,7 @@
* (https://notion-enhancer.github.io/) under the MIT license
*/
-:root:not(.dark) {
+:root.light {
--pinky_boom--brown: #a52a2a80;
--pinky_boom--orange: #ffa60080;
--pinky_boom--yellow: #ffff0080;
diff --git a/repo/tabs/rendererIndex.cjs b/repo/tabs/rendererIndex.cjs
index af2a4a2..86113b2 100644
--- a/repo/tabs/rendererIndex.cjs
+++ b/repo/tabs/rendererIndex.cjs
@@ -6,7 +6,7 @@
'use strict';
-module.exports = async function ({ env, web, fs }, db, __exports, __eval) {
+module.exports = async function ({ components, env, web, fs }, db, __exports, __eval) {
const url = require('url'),
electron = require('electron'),
electronWindow = electron.remote.getCurrentWindow(),
@@ -27,9 +27,14 @@ module.exports = async function ({ env, web, fs }, db, __exports, __eval) {
>
`;
- #firstQuery = true;
constructor(notionUrl = 'notion://www.notion.so/') {
- this.navigate(notionUrl);
+ this.$notion.src = notionUrl;
+
+ const fromNotion = (channel, listener) =>
+ notionIpc.receiveIndexFromNotion.addListener(this.$notion, channel, listener),
+ fromSearch = (channel, listener) =>
+ notionIpc.receiveIndexFromSearch.addListener(this.$search, channel, listener),
+ toSearch = (channel, data) => notionIpc.sendIndexToSearch(this.$search, channel, data);
this.$notion.addEventListener('dom-ready', () => {
this.focusNotion();
@@ -48,44 +53,22 @@ module.exports = async function ({ env, web, fs }, db, __exports, __eval) {
const matches = result
? { count: result.matches, index: result.activeMatchOrdinal }
: { count: 0, index: 0 };
- notionIpc.sendIndexToSearch(this.$search, 'search:result', matches);
+ toSearch('search:result', matches);
});
-
- notionIpc.proxyAllMainToNotion(this.$notion);
});
- notionIpc.receiveIndexFromNotion.addListener(this.$notion, 'search:start', () => {
- this.startSearch();
- });
- notionIpc.receiveIndexFromSearch.addListener(this.$search, 'search:clear', () => {
- this.clearSearch();
- });
- notionIpc.receiveIndexFromNotion.addListener(this.$notion, 'search:stop', () => {
- this.stopSearch();
- });
- notionIpc.receiveIndexFromSearch.addListener(this.$search, 'search:stop', () => {
- this.stopSearch();
- });
- notionIpc.receiveIndexFromNotion.addListener(
- this.$notion,
- 'search:set-theme',
- (theme) => {
- notionIpc.sendIndexToSearch(this.$search, 'search:set-theme', theme);
- }
- );
- notionIpc.receiveIndexFromSearch.addListener(this.$search, 'search:next', (query) => {
- this.searchNext(query);
- });
- notionIpc.receiveIndexFromSearch.addListener(this.$search, 'search:prev', (query) => {
- this.searchPrev(query);
- });
+ notionIpc.proxyAllMainToNotion(this.$notion);
+ fromNotion('search:start', () => this.startSearch());
+ fromNotion('search:stop', () => this.stopSearch());
+ fromNotion('search:set-theme', (theme) => toSearch('search:set-theme', theme));
+ fromSearch('search:clear', () => this.clearSearch());
+ fromSearch('search:stop', () => this.stopSearch());
+ fromSearch('search:next', (query) => this.searchNext(query));
+ fromSearch('search:prev', (query) => this.searchPrev(query));
return this;
}
- navigate(notionUrl) {
- this.$notion.src = notionUrl;
- }
webContents() {
return electron.remote.webContents.fromId(this.$notion.getWebContentsId());
}
@@ -100,6 +83,7 @@ module.exports = async function ({ env, web, fs }, db, __exports, __eval) {
this.$search.focus();
}
+ #firstQuery = true;
startSearch() {
this.$search.classList.add('search-active');
this.focusSearch();
@@ -133,11 +117,24 @@ module.exports = async function ({ env, web, fs }, db, __exports, __eval) {
}
}
- window['__start'] = () => {
- const tab = new Tab(url.parse(window.location.href, true).query.path);
- web.render(document.body, tab.$search);
- web.render(document.body, tab.$notion);
+ window['__start'] = async () => {
+ const $topbar = web.html`
+
+
+
+
+ `;
+ document.body.prepend($topbar);
+ const $root = document.querySelector('#root');
+ const tab = new Tab(url.parse(window.location.href, true).query.path);
+ web.render($root, tab.$search);
+ web.render($root, tab.$notion);
electronWindow.on('focus', () => {
tab.$notion.focus();
});
diff --git a/repo/tabs/tabs.css b/repo/tabs/tabs.css
index f3f505c..bf11280 100644
--- a/repo/tabs/tabs.css
+++ b/repo/tabs/tabs.css
@@ -4,6 +4,62 @@
* (https://notion-enhancer.github.io/) under the MIT license
*/
+html,
+body {
+ height: 100%;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ background: var(--theme--bg) !important;
+}
+
+body {
+ display: flex;
+ flex-direction: column;
+}
+
+#tabs {
+ display: flex;
+ background: var(--theme--bg_secondary);
+ width: 100%;
+ padding-top: 4px;
+ user-select: none;
+ -webkit-app-region: drag;
+}
+
+#tabs .tab {
+ display: flex;
+ color: var(--theme--text_secondary);
+ background: var(--theme--bg);
+ font-family: var(--theme--font_sans);
+ border: none;
+ padding: 0.4em 0.6em;
+ border-bottom: 2px solid var(--theme--ui_divider);
+ font-size: 16px;
+ -webkit-app-region: no-drag;
+}
+#tabs .tab .tab-title {
+ /* padding: 0.2em; */
+}
+#tabs .tab .tab-close {
+ width: 20px;
+ height: 20px;
+}
+#tabs .tab .tab-close svg {
+ width: 14px;
+ height: 14px;
+ fill: var(--theme--icon_secondary);
+}
+
+#root {
+ flex-grow: 1;
+}
+
+.notion-webview {
+ width: 100%;
+ height: 100%;
+}
+
.search-webview {
width: 100%;
height: 60px;
@@ -18,16 +74,3 @@
transform: translateY(0%);
pointer-events: auto;
}
-
-html,
-body {
- height: 100%;
- width: 100%;
- margin: 0;
- padding: 0;
-}
-
-.notion-webview {
- width: 100%;
- height: 100%;
-}
diff --git a/repo/theming/client.mjs b/repo/theming/client.mjs
index ca267d1..778d0f2 100644
--- a/repo/theming/client.mjs
+++ b/repo/theming/client.mjs
@@ -16,19 +16,42 @@ export default async function ({ web, registry, storage, electron }, db) {
web.loadStylesheet('repo/theming/colors.css');
}
- const updateTheme = () => {
- storage
- .set(['theme'], document.querySelector('.notion-dark-theme') ? 'dark' : 'light')
- .then(() => {
- electron.sendMessageToHost('update-theme');
- });
- document.documentElement.classList[
- document.body.classList.contains('dark') ? 'add' : 'remove'
- ]('dark');
+ const updateTheme = async () => {
+ await storage.set(
+ ['theme'],
+ document.querySelector('.notion-dark-theme') ? 'dark' : 'light'
+ );
+ const mode = await storage.get(['theme'], 'light'),
+ inactive = mode === 'light' ? 'dark' : 'light';
+ document.documentElement.classList.add(mode);
+ document.documentElement.classList.remove(inactive);
+ electron.sendMessage('update-theme');
+ const searchThemeVars = [
+ 'bg',
+ 'text',
+ 'icon',
+ 'icon_secondary',
+ 'accent_blue',
+ 'accent_blue-text',
+ 'accent_blue-hover',
+ 'accent_blue-active',
+ 'ui_shadow',
+ 'ui_divider',
+ 'ui_input',
+ 'ui_interactive-hover',
+ 'ui_interactive-active',
+ ].map((key) => [
+ key,
+ window.getComputedStyle(document.documentElement).getPropertyValue(`--theme--${key}`),
+ ]);
+ electron.sendMessage('set-search-theme', searchThemeVars);
};
web.addDocumentObserver((mutation) => {
- if (mutation.target === document.body && document.hasFocus()) updateTheme();
+ const potentialThemeChange = [document.body, document.documentElement].includes(
+ mutation.target
+ );
+ if (potentialThemeChange && document.hasFocus()) updateTheme();
});
- if (document.hasFocus()) updateTheme();
+ updateTheme();
document.addEventListener('visibilitychange', updateTheme);
}
diff --git a/repo/theming/electronSearch.css b/repo/theming/electronSearch.css
index 16f1854..c1dcf0b 100644
--- a/repo/theming/electronSearch.css
+++ b/repo/theming/electronSearch.css
@@ -4,58 +4,58 @@
* (https://notion-enhancer.github.io/) under the MIT license
*/
-body > style + #container {
+#container {
background: var(--theme--bg) !important;
box-shadow: var(--theme--ui_shadow, rgba(15, 15, 15, 0.05)) 0px 0px 0px 1px,
var(--theme--ui_shadow, rgba(15, 15, 15, 0.1)) 0px 3px 6px,
var(--theme--ui_shadow, rgba(15, 15, 15, 0.2)) 0px 9px 24px !important;
}
-body > style + #container #results {
+#container #results {
color: var(--theme--text) !important;
}
-body > style + #container #prev,
-body > style + #container #next {
+#container #prev,
+#container #next {
border-color: var(--theme--ui_divider) !important;
}
-body > style + #container .enabled:focus,
-body > style + #container .enabled:hover {
+#container .enabled:focus,
+#container .enabled:hover {
background: var(--theme--ui_interactive-hover) !important;
}
-body > style + #container .enabled:active {
+#container .enabled:active {
background: var(--theme--ui_interactive-active) !important;
}
-body > style + #container #prev svg,
-body > style + #container #next svg {
+#container #prev svg,
+#container #next svg {
fill: var(--theme--icon_secondary) !important;
}
-body > style + #container #button-separator {
+#container #button-separator {
background: var(--theme--ui_divider) !important;
}
-body > style + #container #search-icon svg,
-body > style + #container #clear-icon svg {
+#container #search-icon svg,
+#container #clear-icon svg {
fill: var(--theme--icon) !important;
}
-body > style + #container #input-wrap #search {
+#container #input-wrap #search {
background: var(--theme--ui_input) !important;
color: var(--theme--text) !important;
}
-body > style + #container #done {
+#container #done {
background: var(--theme--accent_blue) !important;
color: var(--theme--accent_blue-text) !important;
}
-body > style + #container #done:focus,
-body > style + #container #done:hover {
+#container #done:focus,
+#container #done:hover {
background: var(--theme--accent_blue-hover) !important;
}
-body > style + #container #done:active {
+#container #done:active {
background: var(--theme--accent_blue-active) !important;
}
-body > style + #container .enabled::after,
-body > style + #container #done::after {
+#container .enabled::after,
+#container #done::after {
background: transparent !important;
}
diff --git a/repo/theming/main.cjs b/repo/theming/main.cjs
new file mode 100644
index 0000000..750623f
--- /dev/null
+++ b/repo/theming/main.cjs
@@ -0,0 +1,21 @@
+/**
+ * notion-enhancer: theming
+ * (c) 2021 dragonwocky (https://dragonwocky.me/)
+ * (https://notion-enhancer.github.io/) under the MIT license
+ */
+
+'use strict';
+
+module.exports = async function ({}, db, __exports, __eval) {
+ const electron = require('electron');
+ electron.ipcMain.on('notion-enhancer:update-theme', () => {
+ electron.webContents
+ .getAllWebContents()
+ .forEach((webContents) => webContents.send('notion-enhancer:update-theme'));
+ });
+ electron.ipcMain.on('notion-enhancer:set-search-theme', (event, theme) => {
+ electron.webContents
+ .getAllWebContents()
+ .forEach((webContents) => webContents.send('notion-enhancer:set-search-theme', theme));
+ });
+};
diff --git a/repo/theming/menu.mjs b/repo/theming/menu.mjs
index ee31881..c4a428e 100644
--- a/repo/theming/menu.mjs
+++ b/repo/theming/menu.mjs
@@ -6,15 +6,18 @@
'use strict';
-export default async function ({ web, registry, storage }, db) {
+export default async function ({ web, registry, storage, electron }, db) {
await web.whenReady();
- const loadTheme = async () => {
- document.documentElement.className =
- (await storage.get(['theme'], 'light')) === 'dark' ? 'dark' : '';
+ const updateTheme = async () => {
+ const mode = await storage.get(['theme'], 'light'),
+ inactive = mode === 'light' ? 'dark' : 'light';
+ document.documentElement.classList.add(mode);
+ document.documentElement.classList.remove(inactive);
};
- document.addEventListener('visibilitychange', loadTheme);
- loadTheme();
+ document.addEventListener('visibilitychange', updateTheme);
+ electron.onMessage('update-theme', updateTheme);
+ updateTheme();
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {
for (const sheet of mod.css?.menu || []) {
diff --git a/repo/theming/mod.json b/repo/theming/mod.json
index 0edbfed..99c3cbc 100644
--- a/repo/theming/mod.json
+++ b/repo/theming/mod.json
@@ -21,6 +21,7 @@
"client": ["client.mjs"],
"menu": ["menu.mjs"],
"electron": [
+ { "source": "main.cjs", "target": "main/main.js" },
{ "source": "rendererIndex.cjs", "target": "renderer/index.js" },
{ "source": "rendererSearch.cjs", "target": "renderer/search.js" }
]
diff --git a/repo/theming/rendererIndex.cjs b/repo/theming/rendererIndex.cjs
index 4a9eb23..c809705 100644
--- a/repo/theming/rendererIndex.cjs
+++ b/repo/theming/rendererIndex.cjs
@@ -6,9 +6,18 @@
'use strict';
-module.exports = async function ({ registry, web, storage }, db, __exports, __eval) {
+module.exports = async function ({ registry, web, storage, electron }, db, __exports, __eval) {
await web.whenReady();
+ const updateTheme = async () => {
+ const mode = await storage.get(['theme'], 'light'),
+ inactive = mode === 'light' ? 'dark' : 'light';
+ document.documentElement.classList.add(mode);
+ document.documentElement.classList.remove(inactive);
+ };
+ electron.onMessage('update-theme', 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}`);
diff --git a/repo/theming/rendererSearch.cjs b/repo/theming/rendererSearch.cjs
index e2fc1da..ed6a2cb 100644
--- a/repo/theming/rendererSearch.cjs
+++ b/repo/theming/rendererSearch.cjs
@@ -6,19 +6,13 @@
'use strict';
-module.exports = async function ({ registry, web, storage, electron }, db, __exports, __eval) {
- await web.whenReady(['#search']);
+module.exports = async function ({ web, electron }, db, __exports, __eval) {
+ await web.whenReady();
+ web.loadStylesheet('repo/theming/electronSearch.css');
- const loadTheme = async () => {
- document.documentElement.className =
- (await storage.get(['theme'], 'light')) === 'dark' ? 'dark' : '';
- };
- document.querySelector('#search').addEventListener('focus', loadTheme);
- loadTheme();
-
- 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}`);
+ electron.onMessage('set-search-theme', (event, theme) => {
+ for (const [key, value] of theme) {
+ document.documentElement.style.setProperty(`--theme--${key}`, value);
}
- }
+ });
};
diff --git a/repo/theming/variables.css b/repo/theming/variables.css
index ac62f7a..d5fceae 100644
--- a/repo/theming/variables.css
+++ b/repo/theming/variables.css
@@ -31,7 +31,7 @@
--theme--accent_red-text: #fff;
}
-:root:not(.dark) {
+:root.light {
--theme--bg: #fff;
--theme--bg_secondary: rgb(247, 246, 243);
--theme--bg_card: #fff;
diff --git a/repo/truncated-titles/client.mjs b/repo/truncated-titles/client.mjs
index 872a21e..d79c827 100644
--- a/repo/truncated-titles/client.mjs
+++ b/repo/truncated-titles/client.mjs
@@ -46,7 +46,6 @@ export default async function ({ web, components }, db) {
$title.firstElementChild.firstElementChild.style.maxWidth = '400px';
});
$timelineItem.addEventListener('mouseout', async (event) => {
- console.log(event, $timelineItem.matches(':hover'));
if (!$timelineItem.matches(':hover')) {
$title.style.width = $timelineItem.clientWidth + 'px';
$title.firstElementChild.firstElementChild.style.maxWidth =
diff --git a/repo/view-scale/client.css b/repo/view-scale/client.css
index 114736b..652cad1 100644
--- a/repo/view-scale/client.css
+++ b/repo/view-scale/client.css
@@ -85,4 +85,6 @@
display: block;
width: 14px;
height: 14px;
+ fill: var(--theme--icon);
+ color: var(--theme--icon);
}