561aa6891f
Big bang migration to Deno 🤯
114 lines
2.8 KiB
TypeScript
114 lines
2.8 KiB
TypeScript
// import { Fragment, h } from "../deps.ts";
|
|
|
|
import {
|
|
faHome,
|
|
faMoon,
|
|
faRunning,
|
|
faSun,
|
|
} from "https://esm.sh/@fortawesome/free-solid-svg-icons@6.2.0";
|
|
import { FontAwesomeIcon } from "../deps.ts";
|
|
|
|
import { ComponentChildren, useState } from "../deps.ts";
|
|
import { Notification } from "../types.ts";
|
|
import { isMacLike } from "../../common/util.ts";
|
|
|
|
function prettyName(s: string | undefined): string {
|
|
if (!s) {
|
|
return "";
|
|
}
|
|
return s.replaceAll("/", " / ");
|
|
}
|
|
|
|
export function TopBar({
|
|
pageName,
|
|
unsavedChanges,
|
|
isLoading,
|
|
notifications,
|
|
onClick,
|
|
onThemeClick,
|
|
onHomeClick,
|
|
onActionClick,
|
|
lhs,
|
|
rhs,
|
|
}: {
|
|
pageName?: string;
|
|
unsavedChanges: boolean;
|
|
isLoading: boolean;
|
|
notifications: Notification[];
|
|
onClick: () => void;
|
|
onThemeClick: () => void;
|
|
onHomeClick: () => void;
|
|
onActionClick: () => void;
|
|
lhs?: ComponentChildren;
|
|
rhs?: ComponentChildren;
|
|
}) {
|
|
const [theme, setTheme] = useState<string>(localStorage.theme ?? "light");
|
|
|
|
const isMac = isMacLike();
|
|
|
|
return (
|
|
<div id="sb-top" onClick={onClick}>
|
|
{lhs}
|
|
<div className="main">
|
|
<div className="inner">
|
|
<span
|
|
className={`sb-current-page ${
|
|
isLoading
|
|
? "sb-loading"
|
|
: unsavedChanges
|
|
? "sb-unsaved"
|
|
: "sb-saved"
|
|
}`}
|
|
>
|
|
{prettyName(pageName)}
|
|
</span>
|
|
{notifications.length > 0 && (
|
|
<div className="sb-notifications">
|
|
{notifications.map((notification) => (
|
|
<div
|
|
key={notification.id}
|
|
className={`sb-notification-${notification.type}`}
|
|
>
|
|
{notification.message}
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
<div className="sb-actions">
|
|
<button
|
|
onClick={(e) => {
|
|
onHomeClick();
|
|
e.stopPropagation();
|
|
}}
|
|
title="Navigate to the 'index' page"
|
|
>
|
|
<FontAwesomeIcon icon={faHome} />
|
|
</button>
|
|
<button
|
|
onClick={(e) => {
|
|
onActionClick();
|
|
e.stopPropagation();
|
|
}}
|
|
title={"Open the command palette (" + (isMac ? "Cmd" : "Ctrl") +
|
|
"+/)"}
|
|
>
|
|
<FontAwesomeIcon icon={faRunning} />
|
|
</button>
|
|
<button
|
|
onClick={(e) => {
|
|
onThemeClick();
|
|
setTheme(localStorage.theme ?? "light");
|
|
e.stopPropagation();
|
|
}}
|
|
title="Toggle theme"
|
|
>
|
|
<FontAwesomeIcon icon={theme === "dark" ? faSun : faMoon} />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{rhs}
|
|
</div>
|
|
);
|
|
}
|