/* * notion-enhancer core: menu * (c) 2021 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ 'use strict'; export default async function (api, db) { const { env, fs, storage, registry, web } = api; web.addHotkeyListener(await db.get(['hotkey']), env.focusMenu); const updateTheme = () => storage.set(['theme'], document.querySelector('.notion-dark-theme') ? 'dark' : 'light'); web.addDocumentObserver((mutation) => { if (mutation.target === document.body && document.hasFocus()) updateTheme(); }); if (document.hasFocus()) updateTheme(); document.addEventListener('visibilitychange', updateTheme); const sidebarSelector = '.notion-sidebar-container .notion-sidebar > div:nth-child(4)'; await web.whenReady([sidebarSelector]); const $sidebarLink = web.html``; $sidebarLink.addEventListener('click', env.focusMenu); const notifications = { cache: await storage.get(['notifications'], []), provider: [ registry.welcomeNotification, ...(await fs.getJSON('https://notion-enhancer.github.io/notifications.json')), ], count: (await registry.errors()).length, }; for (const notification of notifications.provider) { if ( !notifications.cache.includes(notification.id) && notification.version === env.version && (!notification.environments || notification.environments.includes(env.name)) ) { notifications.count++; } } if (notifications.count) { $sidebarLink.dataset.hasNotifications = true; web.render( $sidebarLink.children[0], web.html`
${notifications.count}
` ); } web.render(document.querySelector(sidebarSelector), $sidebarLink); }