mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
54 lines
1.8 KiB
JavaScript
54 lines
1.8 KiB
JavaScript
/*
|
|
* weekly view
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (c) 2020 adihd
|
|
* under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
id: '4c7acaea-6596-4590-85e5-8ac5a1455e8f',
|
|
tags: ['extension'],
|
|
name: 'weekly view',
|
|
desc: 'calendar views named "weekly" will show only the 7 days of this week.',
|
|
version: '0.5.0',
|
|
author: 'adihd',
|
|
hacks: {
|
|
'renderer/preload.js'(store, __exports) {
|
|
document.addEventListener('readystatechange', (event) => {
|
|
if (document.readyState !== 'complete') return false;
|
|
const attempt_interval = setInterval(enhance, 500);
|
|
function enhance() {
|
|
const notion_elem = document.querySelector('.notion-frame');
|
|
if (!notion_elem) return;
|
|
clearInterval(attempt_interval);
|
|
process([{ target: notion_elem }]);
|
|
const observer = new MutationObserver(process);
|
|
observer.observe(notion_elem, {
|
|
childList: true,
|
|
subtree: true,
|
|
});
|
|
function process(list, observer) {
|
|
const collection_view = document.querySelector(
|
|
'.notion-collection-view-select'
|
|
);
|
|
if (!collection_view || collection_view.innerText != 'weekly')
|
|
return;
|
|
const days = collection_view.parentElement.parentElement.parentElement.parentElement.getElementsByClassName(
|
|
'notion-calendar-view-day'
|
|
);
|
|
for (let day of days)
|
|
day.parentElement.parentElement.style.height = 0;
|
|
if (days.length) {
|
|
const today = [...days].find((day) => day.style.background);
|
|
if (today)
|
|
today.parentElement.parentElement.style.height = '124px';
|
|
}
|
|
}
|
|
}
|
|
});
|
|
},
|
|
},
|
|
};
|