// @flow import 'scss/component/_header.scss'; import { formatCredits } from 'util/format-credits'; import { useIsMobile } from 'effects/use-screensize'; import { withRouter } from 'react-router'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import Button from 'component/button'; import classnames from 'classnames'; import HeaderMenuButtons from 'component/headerMenuButtons'; import HeaderProfileMenuButton from 'component/headerProfileMenuButton'; import Logo from 'component/logo'; import NotificationBubble from 'component/notificationBubble'; import React from 'react'; import Skeleton from '@mui/material/Skeleton'; import SkipNavigationButton from 'component/skipNavigationButton'; import Tooltip from 'component/common/tooltip'; import WunderBar from 'component/wunderbar'; type Props = { authenticated: boolean, authHeader: boolean, backout: { backLabel?: string, backNavDefault?: string, title: string, simpleTitle: string, // Just use the same value as `title` if `title` is already short (~< 10 chars), unless you have a better idea for title overlfow on mobile }, balance: number, emailToVerify?: string, hasNavigated: boolean, hideBalance: boolean, hideCancel: boolean, history: { goBack: () => void, location: { pathname: string }, push: (string) => void, replace: (string) => void, }, isAbsoluteSideNavHidden: boolean, sidebarOpen: boolean, syncError: ?string, totalBalance?: number, user: ?User, doClearClaimSearch: () => void, clearEmailEntry: () => void, clearPasswordEntry: () => void, openChangelog: ({}) => void, setSidebarOpen: (boolean) => void, signOut: () => void, }; const Header = (props: Props) => { const { authenticated, authHeader, backout, balance, emailToVerify, hideBalance, hideCancel, history, isAbsoluteSideNavHidden, sidebarOpen, syncError, totalBalance, user, doClearClaimSearch, clearEmailEntry, clearPasswordEntry, openChangelog, setSidebarOpen, signOut, } = props; const { location: { pathname }, goBack, push, } = history; const isMobile = useIsMobile(); // on the verify page don't let anyone escape other than by closing the tab to keep session data consistent const isVerifyPage = pathname.includes(PAGES.AUTH_VERIFY); const isSignUpPage = pathname.includes(PAGES.AUTH); const isSignInPage = pathname.includes(PAGES.AUTH_SIGNIN); const isPwdResetPage = pathname.includes(PAGES.AUTH_PASSWORD_RESET); const iYTSyncPage = pathname.includes(PAGES.YOUTUBE_SYNC); // For pages that allow for "backing out", shows a backout option instead of the Home logo const canBackout = Boolean(backout); const { backLabel, backNavDefault, title: backTitle, simpleTitle: simpleBackTitle } = backout || {}; const balanceLoading = totalBalance === undefined; const roundedSpendableBalance = formatCredits(balance, 2, true); const roundedTotalBalance = formatCredits(totalBalance, 2, true); // Sign out if they click the "x" when they are on the password prompt const authHeaderAction = syncError && { onClick: signOut }; const homeButtonNavigationProps = (isVerifyPage && {}) || (authHeader && authHeaderAction) || { navigate: '/' }; const sidebarLabel = sidebarOpen ? __('Close sidebar - hide channels you are following.') : __('Expand sidebar - view channels you are following.'); const onBackout = React.useCallback( (e: any) => { const { hasNavigated } = props; const { replace } = history; window.removeEventListener('popstate', onBackout); if (e.type !== 'popstate') { // if not initiated by pop (back button) if (hasNavigated && !backNavDefault) { goBack(); } else { replace(backNavDefault || `/`); } } }, [backNavDefault, goBack, history, props] ); React.useEffect(() => { if (canBackout) { window.addEventListener('popstate', onBackout); return () => window.removeEventListener('popstate', onBackout); } }, [canBackout, onBackout]); const userButtons = (hideWallet?: boolean, hideProfile?: boolean) => (
{isMobile && !authHeader && !canBackout && } {authenticated ? ( <> {!hideWallet && ( 0 ? __('Immediately spendable: %spendable_balance%', { spendable_balance: roundedSpendableBalance }) : __('Your Wallet') } >
{balanceLoading ? ( ) : (
)} {!hideProfile && } ) : !isMobile ? (
) : ( )}
); return (
{!authHeader && canBackout ? (
{backTitle &&

{(isMobile && simpleBackTitle) || backTitle}

} {userButtons(false, isMobile)}
) : ( <>
{!authHeader && ( {/* @if process.env.DEV_CHANGELOG */} {history.location.pathname === '/' && (
{!authHeader && !isMobile && (
)} {!authHeader && !canBackout ? userButtons(isMobile) : !isVerifyPage && !hideCancel && (
)}
)}
); }; export default withRouter(Header);