1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/Logo.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-05-11 14:37:15 +00:00
import React, { useContext } from "react"
import Style from "./Logo.module.css"
2021-04-29 14:58:31 +00:00
import LogoDark from "../../media/LogoDark.png"
import LogoLight from "../../media/LogoLight.png"
import ContextTheme from "../../contexts/ContextTheme"
import classNames from "classnames"
import useStrings from "../../hooks/useStrings"
2021-04-21 13:37:12 +00:00
/**
* The N.E.S.T. logo.
*
* It loads a different image based on the currently selected theme.
*
* @param className - Additional class(es) to add to the image.
* @param props - Additional props to pass to the image.
* @returns {JSX.Element}
* @constructor
*/
export default function Logo({ className, ...props }) {
2021-05-11 14:37:15 +00:00
const { theme } = useContext(ContextTheme)
const strings = useStrings()
2021-04-21 13:37:12 +00:00
2021-05-11 14:37:15 +00:00
let logo
2021-04-21 13:37:12 +00:00
if(theme === "ThemeDark") {
logo = LogoDark
}
else if(theme === "ThemeLight") {
logo = LogoLight
}
else {
logo = "#"
2021-04-21 13:37:12 +00:00
}
return (
2021-05-17 14:32:42 +00:00
<img
src={logo}
className={classNames(Style.Logo, className)}
2021-05-18 00:04:06 +00:00
alt={strings.appName}
title={strings.appFullName}
2021-05-17 14:32:42 +00:00
{...props}
/>
2021-04-21 13:37:12 +00:00
)
}