detect tab icons when sidebar closed, weekly view support expanded cal rows

This commit is contained in:
dragonwocky 2021-12-14 21:11:47 +11:00
parent 3753126c26
commit 2724f3d859
2 changed files with 8 additions and 5 deletions

View File

@ -27,7 +27,7 @@ export default async function ({ web, electron }, db) {
}
const breadcrumbSelector =
'.notion-topbar > div > :nth-child(2) > .notion-focusable:last-child',
'.notion-topbar > div > [class="notranslate"] > .notion-focusable:last-child',
imgIconSelector = `${breadcrumbSelector} .notion-record-icon img:not(.notion-emoji)`,
emojiIconSelector = `${breadcrumbSelector} .notion-record-icon img.notion-emoji`,
nativeIconSelector = `${breadcrumbSelector} .notion-record-icon [role="image"]`,

View File

@ -11,7 +11,7 @@ export default async function ({ web }, db) {
calendarSelector = '.notion-calendar-view',
viewSelector = '.notion-collection-view-select:not([data-weekly-view])',
todaySelector = '.notion-calendar-view-day[style*="background"]',
weekSelector = '[style="position: relative; display: flex; height: 124px;"]',
weekSelector = '[style^="position: relative; display: flex; height: "]',
toolbarBtnSelector =
'.notion-calendar-view > :first-child > :first-child > :first-child > :nth-last-child(2)';
@ -30,11 +30,14 @@ export default async function ({ web }, db) {
}
} else {
const $weekContainer = $calendar.querySelector(weekSelector).parentElement;
$weekContainer.style.maxHeight = '124px';
for (const $week of $calendar.querySelectorAll(weekSelector)) {
if (!$week.querySelector(todaySelector)) {
if ($week.querySelector(todaySelector)) {
$weekContainer.style.maxHeight = $week.style.height;
break;
} else {
$week.style.height = '0';
} else break;
$week.style.opacity = '0';
}
}
}
});