1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 13:34:19 +00:00
pds-2021-g2-nest/nest_frontend/components/interactive/LoggedInUser.js

33 lines
825 B
JavaScript
Raw Permalink Normal View History

import React, { useContext } from "react"
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
import { faUser } from "@fortawesome/free-solid-svg-icons"
2021-04-29 14:58:31 +00:00
import ContextUser from "../../contexts/ContextUser"
import useStrings from "../../hooks/useStrings"
2021-04-26 16:36:41 +00:00
/**
* 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 }) {
2021-05-11 14:37:15 +00:00
const { user } = useContext(ContextUser)
const strings = useStrings()
2021-04-26 16:36:41 +00:00
if(!user) {
return (
2021-04-26 16:36:41 +00:00
<i {...props}>
2021-05-18 00:04:06 +00:00
{strings.notLoggedIn}
</i>
)
}
return (
2021-04-26 16:36:41 +00:00
<b {...props}>
<FontAwesomeIcon icon={faUser}/> {user.username}
</b>
)
}