import { Popover, Space } from 'antd'; import React from 'react'; import { connect } from 'react-redux'; import { getInitials } from 'App/utils'; import Notifications from 'Components/Alerts/Notifications/Notifications'; import HealthStatus from 'Components/Header/HealthStatus'; import UserMenu from 'Components/Header/UserMenu/UserMenu'; import GettingStartedProgress from 'Shared/GettingStarted/GettingStartedProgress'; import ProjectDropdown from 'Shared/ProjectDropdown'; import { getScope } from "../duck/user"; import { useStore } from 'App/mstore'; import { observer } from 'mobx-react-lite'; interface Props { account: any; spotOnly?: boolean; } function TopRight(props: Props) { const { projectsStore } = useStore(); const { account } = props; return ( {props.spotOnly ? null : ( <> {account.name ? : null} )} } placement={'topRight'}>
{getInitials(account.name)}
); } function mapStateToProps(state: any) { return { account: state.getIn(['user', 'account']), spotOnly: getScope(state) === 1, }; } export default connect(mapStateToProps)(observer(TopRight));