mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-17 01:17:29 +02:00
94 lines
3.1 KiB
TypeScript
94 lines
3.1 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
import classnames from 'classnames';
|
|
import { Avatar, Button, ClickAwayListener } from '@material-ui/core';
|
|
import KeyboardArrowDownIcon from '@material-ui/icons/KeyboardArrowDown';
|
|
import { useStyles } from 'component/user/UserProfile/UserProfile.styles';
|
|
import { useCommonStyles } from 'themes/commonStyles';
|
|
import UserProfileContent from './UserProfileContent/UserProfileContent';
|
|
import { IUser } from 'interfaces/user';
|
|
import { ILocationSettings } from 'hooks/useLocationSettings';
|
|
import { HEADER_USER_AVATAR } from 'utils/testIds';
|
|
import unknownUser from 'assets/icons/unknownUser.png';
|
|
|
|
interface IUserProfileProps {
|
|
profile: IUser;
|
|
locationSettings: ILocationSettings;
|
|
setLocationSettings: React.Dispatch<
|
|
React.SetStateAction<ILocationSettings>
|
|
>;
|
|
}
|
|
|
|
const UserProfile = ({
|
|
profile,
|
|
locationSettings,
|
|
setLocationSettings,
|
|
}: IUserProfileProps) => {
|
|
const [showProfile, setShowProfile] = useState(false);
|
|
const [currentLocale, setCurrentLocale] = useState<string>();
|
|
|
|
const styles = useStyles();
|
|
const commonStyles = useCommonStyles();
|
|
|
|
const [possibleLocales, setPossibleLocales] = useState([
|
|
'en-US',
|
|
'en-GB',
|
|
'nb-NO',
|
|
'sv-SE',
|
|
'da-DK',
|
|
'en-IN',
|
|
'de',
|
|
'cs',
|
|
'pt-BR',
|
|
'fr-FR',
|
|
]);
|
|
|
|
useEffect(() => {
|
|
let found = possibleLocales.find(l =>
|
|
l.toLowerCase().includes(locationSettings.locale.toLowerCase())
|
|
);
|
|
setCurrentLocale(found);
|
|
if (!found) {
|
|
setPossibleLocales(prev => [...prev, locationSettings.locale]);
|
|
}
|
|
/* eslint-disable-next-line*/
|
|
}, [locationSettings]);
|
|
|
|
const email = profile ? profile.email : '';
|
|
const imageUrl = email ? profile.imageUrl : unknownUser;
|
|
|
|
return (
|
|
<ClickAwayListener onClickAway={() => setShowProfile(false)}>
|
|
<div className={styles.profileContainer}>
|
|
<Button
|
|
className={classnames(
|
|
commonStyles.flexRow,
|
|
commonStyles.itemsCenter,
|
|
styles.button
|
|
)}
|
|
onClick={() => setShowProfile(prev => !prev)}
|
|
role="button"
|
|
disableRipple
|
|
>
|
|
<Avatar
|
|
alt="Your Gravatar"
|
|
src={imageUrl}
|
|
data-testid={HEADER_USER_AVATAR}
|
|
/>
|
|
<KeyboardArrowDownIcon className={styles.icon} />
|
|
</Button>
|
|
<UserProfileContent
|
|
showProfile={showProfile}
|
|
imageUrl={imageUrl}
|
|
profile={profile}
|
|
setLocationSettings={setLocationSettings}
|
|
possibleLocales={possibleLocales}
|
|
setCurrentLocale={setCurrentLocale}
|
|
currentLocale={currentLocale}
|
|
/>
|
|
</div>
|
|
</ClickAwayListener>
|
|
);
|
|
};
|
|
|
|
export default UserProfile;
|