mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
32 lines
825 B
JavaScript
32 lines
825 B
JavaScript
import React, { useContext } from "react"
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
|
import { faUser } from "@fortawesome/free-solid-svg-icons"
|
|
import ContextUser from "../../contexts/ContextUser"
|
|
import useStrings from "../../hooks/useStrings"
|
|
|
|
|
|
/**
|
|
* An element displaying inline the currently logged in user.
|
|
*
|
|
* @param props - Additional props to pass to the element.
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
export default function LoggedInUser({ ...props }) {
|
|
const { user } = useContext(ContextUser)
|
|
const strings = useStrings()
|
|
|
|
if(!user) {
|
|
return (
|
|
<i {...props}>
|
|
{strings.notLoggedIn}
|
|
</i>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<b {...props}>
|
|
<FontAwesomeIcon icon={faUser}/> {user.username}
|
|
</b>
|
|
)
|
|
}
|