|
|
import { recordTracksEvent } from '@automattic/calypso-analytics'; |
|
|
import { isEnabled } from '@automattic/calypso-config'; |
|
|
import page from '@automattic/calypso-router'; |
|
|
import { CircularProgressBar } from '@automattic/components'; |
|
|
import { Checklist, ChecklistItem, Task } from '@automattic/launchpad'; |
|
|
import { translate } from 'i18n-calypso'; |
|
|
import React, { useState, useEffect } from 'react'; |
|
|
import { |
|
|
READER_ONBOARDING_SEEN_PREFERENCE_KEY, |
|
|
READER_ONBOARDING_PREFERENCE_KEY, |
|
|
READER_ONBOARDING_TRACKS_EVENT_PREFIX, |
|
|
} from 'calypso/reader/onboarding/constants'; |
|
|
import InterestsModal from 'calypso/reader/onboarding/interests-modal'; |
|
|
import SubscribeModal from 'calypso/reader/onboarding/subscribe-modal'; |
|
|
import { useDispatch, useSelector } from 'calypso/state'; |
|
|
import { getCurrentUserDate } from 'calypso/state/current-user/selectors'; |
|
|
import { requestGravatarDetails } from 'calypso/state/gravatar-status/actions'; |
|
|
import { hasGravatar } from 'calypso/state/gravatar-status/selectors'; |
|
|
import { savePreference } from 'calypso/state/preferences/actions'; |
|
|
import { getPreference, hasReceivedRemotePreferences } from 'calypso/state/preferences/selectors'; |
|
|
import { getReaderFollows } from 'calypso/state/reader/follows/selectors'; |
|
|
import hasCompletedReaderProfile from 'calypso/state/reader/onboarding/selectors/has-completed-reader-profile'; |
|
|
import { getReaderFollowedTags } from 'calypso/state/reader/tags/selectors'; |
|
|
import './style.scss'; |
|
|
|
|
|
const ReaderOnboarding = ( { |
|
|
onRender, |
|
|
forceShow = false, |
|
|
}: { |
|
|
onRender?: ( shown: boolean ) => void; |
|
|
forceShow?: boolean; |
|
|
} ) => { |
|
|
const dispatch = useDispatch(); |
|
|
const [ isInterestsModalOpen, setIsInterestsModalOpen ] = useState( false ); |
|
|
const [ isDiscoverModalOpen, setIsDiscoverModalOpen ] = useState( false ); |
|
|
|
|
|
const preferencesLoaded = useSelector( hasReceivedRemotePreferences ); |
|
|
const userRegistrationDate: string | null = useSelector( getCurrentUserDate ); |
|
|
|
|
|
const followedTags = useSelector( getReaderFollowedTags ); |
|
|
const follows = useSelector( getReaderFollows ); |
|
|
const profileCompleted = useSelector( hasCompletedReaderProfile ); |
|
|
const hasUserGravatar = useSelector( hasGravatar ); |
|
|
|
|
|
const hasCompletedOnboarding: boolean | null = useSelector( ( state ) => |
|
|
getPreference( state, READER_ONBOARDING_PREFERENCE_KEY ) |
|
|
); |
|
|
const hasSeenOnboarding: boolean | null = useSelector( ( state ) => |
|
|
getPreference( state, READER_ONBOARDING_SEEN_PREFERENCE_KEY ) |
|
|
); |
|
|
|
|
|
const hasFollowedTags = followedTags !== null && followedTags.length > 2; |
|
|
const hasFollowedSites = follows?.filter( ( follow ) => ! follow.is_owner )?.length > 2; |
|
|
|
|
|
|
|
|
if ( ! hasCompletedOnboarding && hasFollowedTags && hasFollowedSites && profileCompleted ) { |
|
|
dispatch( savePreference( READER_ONBOARDING_PREFERENCE_KEY, true ) ); |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }completed` ); |
|
|
} |
|
|
|
|
|
const shouldShowOnboarding = |
|
|
forceShow || |
|
|
isEnabled( 'reader/force-onboarding' ) || |
|
|
!! ( |
|
|
preferencesLoaded && |
|
|
! hasCompletedOnboarding && |
|
|
userRegistrationDate && |
|
|
new Date( userRegistrationDate ) >= new Date( '2024-10-01T00:00:00Z' ) |
|
|
); |
|
|
|
|
|
|
|
|
const openInterestsModal = () => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }interests_modal_open` ); |
|
|
setIsInterestsModalOpen( true ); |
|
|
}; |
|
|
|
|
|
const closeInterestsModal = () => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }interests_modal_close` ); |
|
|
setIsInterestsModalOpen( false ); |
|
|
if ( ! hasSeenOnboarding ) { |
|
|
dispatch( savePreference( READER_ONBOARDING_SEEN_PREFERENCE_KEY, true ) ); |
|
|
} |
|
|
}; |
|
|
|
|
|
const openDiscoverModal = () => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }discover_modal_open` ); |
|
|
setIsDiscoverModalOpen( true ); |
|
|
}; |
|
|
|
|
|
const closeDiscoverModal = () => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }discover_modal_close` ); |
|
|
setIsDiscoverModalOpen( false ); |
|
|
}; |
|
|
|
|
|
const handleInterestsContinue = () => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }interests_modal_continue` ); |
|
|
closeInterestsModal(); |
|
|
openDiscoverModal(); |
|
|
}; |
|
|
|
|
|
const itemClickHandler = ( task: Task ) => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }task_click`, { |
|
|
task: task.id, |
|
|
} ); |
|
|
task?.actionDispatch?.(); |
|
|
}; |
|
|
|
|
|
const navToAccountProfile = () => { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }complete_account_profile` ); |
|
|
page( '/me?ref=reader-onboarding' ); |
|
|
}; |
|
|
|
|
|
|
|
|
useEffect( () => { |
|
|
if ( shouldShowOnboarding ) { |
|
|
recordTracksEvent( `${ READER_ONBOARDING_TRACKS_EVENT_PREFIX }viewed` ); |
|
|
} |
|
|
}, [ shouldShowOnboarding, dispatch ] ); |
|
|
|
|
|
|
|
|
useEffect( () => { |
|
|
if ( shouldShowOnboarding && ! hasSeenOnboarding ) { |
|
|
openInterestsModal(); |
|
|
} |
|
|
}, [ shouldShowOnboarding, hasSeenOnboarding, dispatch ] ); |
|
|
|
|
|
|
|
|
useEffect( () => { |
|
|
const urlParams = new URLSearchParams( window.location.search ); |
|
|
const shouldReloadOnboarding = urlParams.has( 'reloadSubscriptionOnboarding' ); |
|
|
|
|
|
if ( shouldReloadOnboarding ) { |
|
|
openDiscoverModal(); |
|
|
urlParams.delete( 'reloadSubscriptionOnboarding' ); |
|
|
page.redirect( |
|
|
`${ window.location.pathname }${ urlParams.toString() ? '?' + urlParams.toString() : '' }` |
|
|
); |
|
|
} |
|
|
}, [] ); |
|
|
|
|
|
|
|
|
useEffect( () => { |
|
|
dispatch( requestGravatarDetails() ); |
|
|
}, [ hasGravatar, dispatch ] ); |
|
|
|
|
|
|
|
|
onRender?.( shouldShowOnboarding ); |
|
|
|
|
|
if ( ! shouldShowOnboarding ) { |
|
|
return null; |
|
|
} |
|
|
|
|
|
const tasks: Task[] = [ |
|
|
{ |
|
|
id: 'select-interests', |
|
|
title: translate( 'Select some of your interests' ), |
|
|
actionDispatch: openInterestsModal, |
|
|
completed: hasFollowedTags, |
|
|
disabled: false, |
|
|
}, |
|
|
{ |
|
|
id: 'discover-sites', |
|
|
title: translate( "Discover and subscribe to sites you'll love" ), |
|
|
actionDispatch: openDiscoverModal, |
|
|
completed: hasFollowedSites, |
|
|
disabled: ! hasFollowedSites && ! hasFollowedTags, |
|
|
}, |
|
|
{ |
|
|
id: 'account-profile', |
|
|
title: hasUserGravatar |
|
|
? translate( 'Fill out your profile' ) |
|
|
: translate( 'Add your avatar and fill out your profile' ), |
|
|
actionDispatch: navToAccountProfile, |
|
|
completed: profileCompleted, |
|
|
disabled: ! profileCompleted && ( ! hasFollowedTags || ! hasFollowedSites ), |
|
|
}, |
|
|
]; |
|
|
|
|
|
return ( |
|
|
<> |
|
|
<div className="reader-onboarding"> |
|
|
<div className="reader-onboarding__intro-column"> |
|
|
<CircularProgressBar |
|
|
size={ 40 } |
|
|
enableDesktopScaling |
|
|
numberOfSteps={ tasks.length } |
|
|
currentStep={ tasks.filter( ( task ) => task.completed ).length } |
|
|
/> |
|
|
<h2>{ translate( 'Your personal reading adventure' ) }</h2> |
|
|
<p>{ translate( 'Tailor your feed, connect with your favorite topics.' ) }</p> |
|
|
</div> |
|
|
<div className="reader-onboarding__steps-column"> |
|
|
<Checklist> |
|
|
{ tasks.map( ( task ) => ( |
|
|
<ChecklistItem |
|
|
task={ task } |
|
|
key={ task.id } |
|
|
onClick={ () => itemClickHandler( task ) } |
|
|
/> |
|
|
) ) } |
|
|
</Checklist> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<InterestsModal |
|
|
isOpen={ isInterestsModalOpen } |
|
|
onClose={ closeInterestsModal } |
|
|
onContinue={ handleInterestsContinue } |
|
|
/> |
|
|
<SubscribeModal isOpen={ isDiscoverModalOpen } onClose={ closeDiscoverModal } /> |
|
|
</> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default ReaderOnboarding; |
|
|
|