feat(panel): disable panel if no views available

This commit is contained in:
dragonwocky 2023-08-16 00:22:20 +10:00
parent 463607c6d2
commit 319db04403
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 11 additions and 5 deletions

View File

@ -123,7 +123,7 @@ const insertPanel = async (api, db) => {
const notionFrame = ".notion-frame",
notionTopbarBtn = ".notion-topbar-more-button",
togglePanelHotkey = await db.get("togglePanelHotkey"),
{ html, setState, addPanelView } = api;
{ html, setState } = api;
const $panel = html`<${Panel}
...${Object.assign(
@ -162,6 +162,9 @@ const insertPanel = async (api, db) => {
if (panelOpen) $panelTopbarBtn.setAttribute("data-active", true);
else $panelTopbarBtn.removeAttribute("data-active");
});
api.useState(["panelViews"], ([panelViews = []]) => {
$panelTopbarBtn.style.display = panelViews.length ? "" : "none";
});
appendToDom();
api.addKeyListener(togglePanelHotkey, (event) => {

View File

@ -58,7 +58,7 @@ function Switcher({ _get, _set, minWidth, maxWidth }) {
_set?.(view);
setState({ activePanelView: view });
};
useState(["panelViews"], ([panelViews]) => {
useState(["panelViews"], ([panelViews = []]) => {
const values = panelViews.map(([{ title, $icon }]) => {
// panel switcher internally uses the select island,
// which expects an option value rather than a title
@ -100,6 +100,7 @@ function Panel({
.notion-frame {
flex-direction: row !important;
}
/* prevent page load skeletons overlapping with panel */
.notion-frame [role="progressbar"] {
padding-right: var(--panel--width);
}
@ -212,6 +213,7 @@ function Panel({
repositionHelp(width);
};
$panel.open = () => {
if (!panelViews.length) return;
$panel.setAttribute("open", true);
$panel.querySelectorAll("[tabindex]").forEach(($el) => ($el.tabIndex = 0));
setState({ panelOpen: true });
@ -227,14 +229,15 @@ function Panel({
$panel.querySelectorAll("[tabindex]").forEach(($el) => ($el.tabIndex = -1));
$panel.resize();
setState({ panelOpen: false });
_setOpen(false);
if (panelViews.length) _setOpen(false);
setTimeout(() => {
$panel.style.pointerEvents = "";
$panel.onclose?.();
}, transitionDuration);
};
_getOpen().then((open) => {
if (open) $panel.open();
useState(["panelViews"], async ([panelViews = []]) => {
if (panelViews.length && (await _getOpen())) $panel.open();
else $panel.close();
});
return $panel;
}