diff --git a/repo/icon-sets/mod.json b/repo/icon-sets/mod.json index 048d2c3..72c616b 100644 --- a/repo/icon-sets/mod.json +++ b/repo/icon-sets/mod.json @@ -2,7 +2,7 @@ "name": "icon sets", "id": "2d1f4809-9581-40dd-9bf3-4239db406483", "version": "0.4.0", - "description": "upload, save and reuse custom icons directly from the icon picker. check out the [icons page](https://notion-enhancer.github.io/mods/icon-sets) for instructions on loading entire sets.", + "description": "upload, save and reuse custom icons directly from the icon picker. check out the [icons page](https://notion-enhancer.github.io/advanced/icons) for instructions on loading entire sets.", "preview": "icon-sets.jpg", "tags": ["integration", "customisation"], "authors": [ @@ -37,7 +37,7 @@ "type": "file", "key": "json", "label": "custom icon sets (.json)", - "extensions": ["json"] + "extensions": [".json"] } ] } diff --git a/repo/integrated-titlebar/createWindow.cjs b/repo/integrated-titlebar/createWindow.cjs index 3b52680..39e42e6 100644 --- a/repo/integrated-titlebar/createWindow.cjs +++ b/repo/integrated-titlebar/createWindow.cjs @@ -6,7 +6,7 @@ 'use strict'; -module.exports = async function (api, db, __exports, __eval) { +module.exports = function (api, db, __exports, __eval) { __eval(` const notionRectFromFocusedWindow = getRectFromFocusedWindow; getRectFromFocusedWindow = (windowState) => { diff --git a/repo/menu/components.mjs b/repo/menu/components.mjs index 20d1b23..0e9d876 100644 --- a/repo/menu/components.mjs +++ b/repo/menu/components.mjs @@ -78,7 +78,7 @@ export const options = { maxLines: 3, }); } - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.checked); notifications.onChange(); }); @@ -109,7 +109,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $select.addEventListener('change', async (event) => { + $select.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $select.value); notifications.onChange(); }); @@ -131,7 +131,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.value); notifications.onChange(); }); @@ -153,7 +153,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.value); notifications.onChange(); }); @@ -172,7 +172,7 @@ export const options = { $icon = web.html`${await components.feather('droplet', { class: 'input-icon' })}`, paint = () => { $input.style.background = $picker.toBackground(); - const [r, g, b, a] = $picker + const [r, g, b] = $picker .toRGBAString() .slice(5, -1) .split(',') @@ -196,7 +196,7 @@ export const options = { offsetDirection: 'left', maxLines: 3, }); - $input.addEventListener('change', async (event) => { + $input.addEventListener('change', async (_event) => { await profileDB.set([mod.id, opt.key], $input.value); notifications.onChange(); }); @@ -237,7 +237,7 @@ export const options = { }; reader.readAsText(file); }); - $latest.addEventListener('click', (event) => { + $latest.addEventListener('click', (_event) => { $filename.innerText = 'none'; profileDB.set([mod.id, opt.key], {}); }); diff --git a/repo/menu/menu.mjs b/repo/menu/menu.mjs index 4a27539..ab8105b 100644 --- a/repo/menu/menu.mjs +++ b/repo/menu/menu.mjs @@ -41,7 +41,7 @@ import './styles.mjs'; web.addHotkeyListener(await db.get(['hotkey']), env.focusNotion); - window.addEventListener('beforeunload', (event) => { + globalThis.addEventListener('beforeunload', (_event) => { // trigger input save document.activeElement.blur(); }); @@ -98,7 +98,7 @@ import './styles.mjs'; `, $error = web.html`
`; - $export.addEventListener('click', async (event) => { + $export.addEventListener('click', async (_event) => { const now = new Date(), $a = web.html` { + $select.addEventListener('change', (_event) => { if ($select.value === '--') { $edit.value = ''; } else $edit.value = $select.value; }); - $save.addEventListener('click', async (event) => { + $save.addEventListener('click', async (_event) => { if (profileNames.includes($edit.value) && $select.value !== $edit.value) { web.render( web.empty($error), @@ -144,14 +144,10 @@ import './styles.mjs'; ); return false; } - if (!$edit.value) { - web.render(web.empty($error), 'Profile names cannot be empty.'); - return false; - } - if (!$edit.value.match(/^[A-Za-z0-9_-]+$/)) { + if (!$edit.value || !$edit.value.match(/^[A-Za-z0-9_-]+$/)) { web.render( web.empty($error), - 'Profile names can only contain letters, numbers, dashes and underscores.' + 'Profile names may not be empty & may only contain letters, numbers, hyphens and underscores.' ); return false; } @@ -168,7 +164,7 @@ import './styles.mjs'; env.reload(); }); - $delete.addEventListener('click', async (event) => { + $delete.addEventListener('click', async (_event) => { await storage.set(['profiles', $select.value], undefined); await storage.set( ['currentprofile'], @@ -180,12 +176,9 @@ import './styles.mjs'; _$profileConfig = web.render( web.html``, web.html` `, web.render( web.html``, @@ -284,7 +277,7 @@ import './styles.mjs'; (mod) => mod.environments.includes(env.name) && mod.tags.includes(category) ); web.addHotkeyListener(['/'], () => $search.focus()); - $search.addEventListener('input', (event) => { + $search.addEventListener('input', (_event) => { const query = $search.value.toLowerCase(); for (const $mod of $list.children) { const matches = !query || $mod.innerText.toLowerCase().includes(query); @@ -436,7 +429,7 @@ import './styles.mjs'; router.setDefaultView('extensions'); router.addQueryListener('id', openSidebarMenu); - async function openSidebarMenu(id) { + function openSidebarMenu(id) { if (!id) return; id = web.escape(id); diff --git a/repo/menu/styles.mjs b/repo/menu/styles.mjs index 63e6a41..ffc5388 100644 --- a/repo/menu/styles.mjs +++ b/repo/menu/styles.mjs @@ -88,7 +88,7 @@ const customClasses = { 'input': apply`transition block w-full mt-2 pl-3 pr-14 py-2 text-sm rounded-md flex bg-input text-foreground appearance-none placeholder-foreground-secondary ring-1 ring-divider focus:(outline-none ring ring-accent-blue-active)`, 'input-tooltip': apply`h-4 w-4 -mt-1 inline-block mr-2`, - 'input-icon': apply`absolute w-11 h-9 right-0 bottom-0 py-2 px-3 bg-notion-secondary rounded-r-md text-icon`, + 'input-icon': apply`absolute w-11 h-[calc(2.25rem-1px)] right-0 bottom-0 py-2 px-3 bg-notion-secondary rounded-r-md text-icon`, 'input-placeholder': apply`text-foreground-secondary`, 'select-option': apply`bg-notion-secondary`, 'file-latest': apply`block w-full text-left text-foreground-secondary text-xs mt-2 hover:line-through cursor-pointer`, diff --git a/repo/theming/generate-mappings.js b/repo/theming/_mapColors.js similarity index 98% rename from repo/theming/generate-mappings.js rename to repo/theming/_mapColors.js index 8853641..d408b68 100644 --- a/repo/theming/generate-mappings.js +++ b/repo/theming/_mapColors.js @@ -380,7 +380,7 @@ function css() { // 'light' or 'dark' function vars(mode) { - let sets = {}; + const sets = {}; for (const color in colors) { for (let key in colors[color][mode]) { const prefix = key.split('-')[0], @@ -397,4 +397,10 @@ function vars(mode) { return vars; } -console.log(css()); +if (process.argv.includes('css')) { + console.log(css()); +} else if (process.argv.includes('light')) { + console.log(vars('light')); +} else if (process.argv.includes('dark')) { + console.log(vars('dark')); +} diff --git a/repo/tweaks/client.css b/repo/tweaks/client.css index 043f1c7..70f06d3 100644 --- a/repo/tweaks/client.css +++ b/repo/tweaks/client.css @@ -27,7 +27,8 @@ .enhancer--tweak-normalise_table_scroll .notion-peek-renderer .notion-collection_view-block, .enhancer--tweak-normalise_table_scroll .notion-page-template-modal - .notion-collection_view-block { + .notion-collection_view-block, +.enhancer--tweak-normalise_table_scroll .notion-collection-view-body .notion-table-view { width: 100% !important; padding-left: 0; padding-right: 0; diff --git a/repo/tweaks/mod.json b/repo/tweaks/mod.json index a8bcbd0..b57e912 100644 --- a/repo/tweaks/mod.json +++ b/repo/tweaks/mod.json @@ -2,7 +2,7 @@ "name": "tweaks", "id": "5174a483-c88d-4bf8-a95f-35cd330b76e2", "version": "0.2.0", - "description": "common style/layout changes and custom code insertion. check out the [tweaks page](https://notion-enhancer.github.io/mods/tweaks) for more.", + "description": "common style/layout changes and custom code insertion. check out the [tweaks page](https://notion-enhancer.github.io/advanced/tweaks) for more.", "tags": ["extension", "customisation"], "authors": [ {