import page from '@automattic/calypso-router'; import { useTranslate, fixMe } from 'i18n-calypso'; import { useEffect } from 'react'; import { connect } from 'react-redux'; import EmptyContent from 'calypso/components/empty-content'; import { UserData } from 'calypso/lib/user/user'; import ReaderBackButton from 'calypso/reader/components/back-button'; import UserProfileHeader from 'calypso/reader/user-profile/components/user-profile-header'; import UserLists from 'calypso/reader/user-profile/views/lists'; import UserPosts from 'calypso/reader/user-profile/views/posts'; import UserRecommendedBlogs from 'calypso/reader/user-profile/views/recommended-blogs'; import { requestUser } from 'calypso/state/reader/users/actions'; import getReaderUser from 'calypso/state/selectors/get-reader-user'; import './style.scss'; export interface UserProfileProps { userLogin: string; userId: string; user: UserData | undefined; path: string; isLoading: boolean; requestUser: ( userLogin: string, findById?: boolean ) => Promise< void >; view: string; } type UserProfileState = { reader: { users: { items: Record< string, UserData >; requesting: Record< string, boolean >; }; }; }; export function UserProfile( props: UserProfileProps ): JSX.Element | null { const { userLogin, userId, path, requestUser, user, isLoading, view } = props; const translate = useTranslate(); useEffect( () => { if ( ! user ) { if ( userLogin ) { requestUser( userLogin ); } if ( userId ) { requestUser( userId, true ); } } }, [ userLogin, requestUser, userId, user ] ); useEffect( () => { if ( path?.startsWith( '/reader/users/id/' ) && user ) { page.replace( `/reader/users/${ user.user_login }` ); } }, [ path, user ] ); if ( isLoading ) { return <>; } if ( ! user ) { return ( ); } const renderContent = (): React.ReactNode => { switch ( view ) { case 'posts': return ; case 'lists': return ; case 'recommended-blogs': return ; default: return null; } }; return (
{ renderContent() }
); } export default connect( ( state: UserProfileState, ownProps: UserProfileProps ) => ( { // The following logic works because userLogin and userId are mutually exclusive via the // routes. user: getReaderUser( state, ownProps.userLogin || ownProps.userId, ownProps.userLogin ? false : true ), isLoading: state.reader.users.requesting[ ownProps.userLogin || ownProps.userId ] ?? false, } ), { requestUser } )( UserProfile );