import { faRunning } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { Notification } from "../types"; function prettyName(s: string | undefined): string { if (!s) { return ""; } return s.replaceAll("/", " / "); } export function TopBar({ pageName, unsavedChanges, notifications, onClick, onActionClick, lhs, rhs, }: { pageName?: string; unsavedChanges: boolean; notifications: Notification[]; onClick: () => void; onActionClick: () => void; lhs?: React.ReactNode; rhs?: React.ReactNode; }) { return (
{lhs}
{prettyName(pageName)} {notifications.length > 0 && (
{notifications.map((notification) => (
{notification.message}
))}
)}
{rhs}
); }