mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
Fix more code consistency in weekly-view
This commit is contained in:
parent
b921a2f86a
commit
fbc9709b66
@ -22,20 +22,20 @@ export default async function ({ web }, db) {
|
||||
document.querySelectorAll(viewSelector).forEach(async ($view) => {
|
||||
let currentText;
|
||||
// Get view controls children nodes, convert to array, filter out non-text
|
||||
const viewNodes = []
|
||||
const $viewNodes = []
|
||||
.slice.call($view.querySelector(viewControlSelector).children)
|
||||
.filter(node => node.tagName.toLowerCase().match(/(div|span)/g));
|
||||
|
||||
// Find current view by analyzing children (which changes on viewport)
|
||||
if (viewNodes.length === 1)
|
||||
if ($viewNodes.length === 1)
|
||||
{
|
||||
// Mobile: Simple dropdown button (like legacy), text is current view
|
||||
currentText = viewNodes[0].innerText.toLowerCase();
|
||||
currentText = $viewNodes[0].innerText.toLowerCase();
|
||||
} else {
|
||||
// Wide/Desktop: Tabs listed, current view indicated by border style
|
||||
currentText = viewNodes
|
||||
currentText = $viewNodes
|
||||
// Find selected view by border style (possibly fragile)
|
||||
.filter((e) => e.children[0].style.borderBottomWidth.toString() === '2px')[0]
|
||||
.filter(($e) => $e.children[0].style.borderBottomWidth.toString() === '2px')[0]
|
||||
.innerText.toLowerCase();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user