2021-04-23 13:49:42 +02:00
|
|
|
import { useEffect, useState } from 'react';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import OutsideClickHandler from 'react-outside-click-handler';
|
|
|
|
|
|
|
|
import { Avatar, Button } from '@material-ui/core';
|
|
|
|
import KeyboardArrowDownIcon from '@material-ui/icons/KeyboardArrowDown';
|
|
|
|
import { useStyles } from './UserProfile.styles';
|
|
|
|
import { useCommonStyles } from '../../../common.styles';
|
|
|
|
import UserProfileContent from './UserProfileContent/UserProfileContent';
|
|
|
|
|
|
|
|
const UserProfile = ({
|
|
|
|
profile,
|
|
|
|
location,
|
|
|
|
fetchUser,
|
|
|
|
updateSettingLocation,
|
|
|
|
}) => {
|
|
|
|
const [showProfile, setShowProfile] = useState(false);
|
2021-04-28 11:57:45 +02:00
|
|
|
const [currentLocale, setCurrentLocale] = useState([]);
|
2021-04-23 13:49:42 +02:00
|
|
|
|
|
|
|
const styles = useStyles();
|
|
|
|
const commonStyles = useCommonStyles();
|
|
|
|
|
|
|
|
const [possibleLocales, setPossibleLocales] = useState([
|
2021-04-28 11:57:45 +02:00
|
|
|
'en-US',
|
|
|
|
'en-GB',
|
|
|
|
'nb-NO',
|
|
|
|
'sv-SE',
|
|
|
|
'da-DK',
|
|
|
|
'en-IN',
|
|
|
|
'de',
|
|
|
|
'cs',
|
|
|
|
'pt-BR',
|
|
|
|
'fr-FR',
|
2021-04-23 13:49:42 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
fetchUser();
|
|
|
|
const locale = navigator.language || navigator.userLanguage;
|
2021-04-28 11:57:45 +02:00
|
|
|
let found = possibleLocales.find(l =>
|
|
|
|
l.toLowerCase().includes(locale.toLowerCase())
|
|
|
|
);
|
|
|
|
setCurrentLocale(found);
|
|
|
|
|
2021-04-23 13:49:42 +02:00
|
|
|
if (!found) {
|
2021-04-28 11:57:45 +02:00
|
|
|
setPossibleLocales(prev => [...prev, locale]);
|
2021-04-23 13:49:42 +02:00
|
|
|
}
|
|
|
|
/* eslint-disable-next-line*/
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const email = profile ? profile.email : '';
|
|
|
|
const imageUrl = email ? profile.imageUrl : 'unknown-user.png';
|
|
|
|
|
|
|
|
return (
|
|
|
|
<OutsideClickHandler onOutsideClick={() => setShowProfile(false)}>
|
|
|
|
<div className={styles.profileContainer}>
|
|
|
|
<Button
|
|
|
|
className={classnames(
|
|
|
|
commonStyles.flexRow,
|
|
|
|
commonStyles.itemsCenter,
|
|
|
|
styles.button
|
|
|
|
)}
|
|
|
|
onClick={() => setShowProfile(prev => !prev)}
|
|
|
|
role="button"
|
|
|
|
disableRipple
|
|
|
|
>
|
|
|
|
<Avatar alt="user image" src={imageUrl} />
|
|
|
|
<KeyboardArrowDownIcon />
|
|
|
|
</Button>
|
|
|
|
<UserProfileContent
|
|
|
|
showProfile={showProfile}
|
|
|
|
imageUrl={imageUrl}
|
|
|
|
profile={profile}
|
|
|
|
updateSettingLocation={updateSettingLocation}
|
|
|
|
possibleLocales={possibleLocales}
|
|
|
|
location={location}
|
2021-04-28 11:57:45 +02:00
|
|
|
setCurrentLocale={setCurrentLocale}
|
|
|
|
currentLocale={currentLocale}
|
2021-04-23 13:49:42 +02:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</OutsideClickHandler>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
UserProfile.propTypes = {
|
|
|
|
profile: PropTypes.object,
|
|
|
|
location: PropTypes.object,
|
|
|
|
fetchUser: PropTypes.func.isRequired,
|
|
|
|
updateSettingLocation: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default UserProfile;
|