mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
outliner: more reliable page detection
This commit is contained in:
parent
7bdae2faa6
commit
da85adcd33
@ -39,6 +39,8 @@ export default async function ({ web, components }, db) {
|
||||
|
||||
function updateHeadings() {
|
||||
if (!$page) return;
|
||||
$notice.innerText = pageNoticeText;
|
||||
$headingList.style.display = '';
|
||||
const $headerBlocks = $page.querySelectorAll('[class^="notion-"][class*="header-block"]'),
|
||||
$fragment = web.html`<div></div>`;
|
||||
let depth = 0,
|
||||
@ -73,21 +75,15 @@ export default async function ({ web, components }, db) {
|
||||
if (document.contains($page)) {
|
||||
updateHeadings();
|
||||
} else {
|
||||
$page = document.getElementsByClassName('notion-page-content')[0];
|
||||
if ($page) {
|
||||
$notice.innerText = pageNoticeText;
|
||||
$headingList.style.display = '';
|
||||
updateHeadings();
|
||||
} else {
|
||||
$page = document.querySelector('.notion-page-content');
|
||||
if (!$page) {
|
||||
$notice.innerText = dbNoticeText;
|
||||
$headingList.style.display = 'none';
|
||||
}
|
||||
} else updateHeadings();
|
||||
}
|
||||
};
|
||||
web.addDocumentObserver(pageObserver, [
|
||||
'.notion-header-block',
|
||||
'.notion-sub_header-block',
|
||||
'.notion-sub_sub_header-block',
|
||||
'.notion-page-content',
|
||||
'.notion-collection_view_page-block',
|
||||
]);
|
||||
pageObserver();
|
||||
|
Loading…
Reference in New Issue
Block a user