mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-17 10:26:39 +00:00
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import { useEnvContext } from "@app/hooks/useEnvContext";
|
|
import { useLicenseStatusContext } from "@app/hooks/useLicenseStatusContext";
|
|
import { useTheme } from "next-themes";
|
|
import Image from "next/image";
|
|
import { useEffect, useState } from "react";
|
|
|
|
type BrandingLogoProps = {
|
|
logoPath?: string;
|
|
width: number;
|
|
height: number;
|
|
};
|
|
|
|
export default function BrandingLogo(props: BrandingLogoProps) {
|
|
const { env } = useEnvContext();
|
|
const { theme } = useTheme();
|
|
const { isUnlocked } = useLicenseStatusContext();
|
|
const [path, setPath] = useState<string>(""); // Default logo path
|
|
|
|
useEffect(() => {
|
|
function getPath() {
|
|
let lightOrDark = theme;
|
|
|
|
if (theme === "system" || !theme) {
|
|
lightOrDark = window.matchMedia("(prefers-color-scheme: dark)")
|
|
.matches
|
|
? "dark"
|
|
: "light";
|
|
}
|
|
|
|
if (lightOrDark === "light") {
|
|
if (isUnlocked() && env.branding.logo?.lightPath) {
|
|
return env.branding.logo.lightPath;
|
|
}
|
|
return "/logo/word_mark_black.png";
|
|
}
|
|
|
|
if (isUnlocked() && env.branding.logo?.darkPath) {
|
|
return env.branding.logo.darkPath;
|
|
}
|
|
return "/logo/word_mark_white.png";
|
|
}
|
|
|
|
setPath(props.logoPath ?? getPath());
|
|
}, [theme, env, props.logoPath]);
|
|
|
|
// we use `img` tag here because the `logoPath` could be any URL
|
|
// and next.js `Image` component only accepts a restricted number of domains
|
|
const Component = props.logoPath ? "img" : Image;
|
|
|
|
return (
|
|
path && (
|
|
<Component
|
|
src={path}
|
|
alt="Logo"
|
|
width={props.width}
|
|
height={props.height}
|
|
/>
|
|
)
|
|
);
|
|
}
|