70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __, sprintf } from '@wordpress/i18n';
|
|
import { useMemo } from '@wordpress/element';
|
|
import { useSelect } from '@wordpress/data';
|
|
import { getVisibleTasks, ONBOARDING_STORE_NAME } from '@woocommerce/data';
|
|
import { getSetting } from '@woocommerce/settings';
|
|
|
|
type ProgressTitleProps = {
|
|
taskListId: string;
|
|
};
|
|
|
|
export const ProgressTitle: React.FC< ProgressTitleProps > = ( {
|
|
taskListId,
|
|
} ) => {
|
|
const { loading, tasksCount, completedCount, hasVisitedTasks } = useSelect(
|
|
( select ) => {
|
|
const taskList = select( ONBOARDING_STORE_NAME ).getTaskList(
|
|
taskListId
|
|
);
|
|
const finishedResolution = select(
|
|
ONBOARDING_STORE_NAME
|
|
).hasFinishedResolution( 'getTaskList', [ taskListId ] );
|
|
const visibleTasks = getVisibleTasks( taskList?.tasks || [] );
|
|
|
|
return {
|
|
loading: ! finishedResolution,
|
|
tasksCount: visibleTasks?.length,
|
|
completedCount: visibleTasks?.filter(
|
|
( task ) => task.isComplete
|
|
).length,
|
|
hasVisitedTasks:
|
|
visibleTasks?.filter(
|
|
( task ) =>
|
|
task.isVisited && task.id !== 'store_details'
|
|
).length > 0,
|
|
};
|
|
}
|
|
);
|
|
|
|
const title = useMemo( () => {
|
|
if ( ! hasVisitedTasks || completedCount === tasksCount ) {
|
|
const siteTitle = getSetting( 'siteTitle' );
|
|
return siteTitle
|
|
? sprintf(
|
|
/* translators: %s = site title */
|
|
__( 'Welcome to %s', 'woocommerce' ),
|
|
siteTitle
|
|
)
|
|
: __( 'Welcome to your store', 'woocommerce' );
|
|
}
|
|
if ( completedCount > 0 && completedCount < 4 ) {
|
|
return __( "Let's get you started", 'woocommerce' ) + ' 🚀';
|
|
}
|
|
if ( completedCount > 3 && completedCount < 6 ) {
|
|
return __( 'You are on the right track', 'woocommerce' );
|
|
}
|
|
return __( 'You are almost there', 'woocommerce' );
|
|
}, [ completedCount, hasVisitedTasks, tasksCount ] );
|
|
|
|
if ( loading ) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<h1 className="woocommerce-task-progress-header__title">{ title }</h1>
|
|
);
|
|
};
|