/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Component, cloneElement } from '@wordpress/element'; import { compose } from '@wordpress/compose'; import classNames from 'classnames'; import { Button, Card, CardBody, CardHeader } from '@wordpress/components'; import { withDispatch, withSelect } from '@wordpress/data'; import { Icon, check } from '@wordpress/icons'; import { List, EllipsisMenu, Badge } from '@woocommerce/components'; import { updateQueryString } from '@woocommerce/navigation'; import { PLUGINS_STORE_NAME, OPTIONS_STORE_NAME, ONBOARDING_STORE_NAME, SETTINGS_STORE_NAME, } from '@woocommerce/data'; import { recordEvent } from '@woocommerce/tracks'; import { Text } from '@woocommerce/experimental'; /** * Internal dependencies */ import { recordTaskViewEvent } from './tasks'; import { getCountryCode } from '../dashboard/utils'; import sanitizeHTML from '../lib/sanitize-html'; export class TaskList extends Component { componentDidMount() { this.recordTaskView(); this.recordTaskListView(); this.possiblyCompleteTaskList(); this.possiblyTrackCompletedTasks(); } componentDidUpdate( prevProps ) { const { query } = this.props; const { query: prevQuery } = prevProps; const { task: prevTask } = prevQuery; const { task } = query; if ( prevTask !== task ) { window.document.documentElement.scrollTop = 0; this.recordTaskView(); } this.possiblyCompleteTaskList(); this.possiblyTrackCompletedTasks(); } getUngroupedTasks() { const { tasks: groupedTasks } = this.props; return Object.values( groupedTasks ).flat(); } getSpecificTasks() { const { isExtended, tasks: groupedTasks } = this.props; const { extension, setup } = groupedTasks; if ( isExtended ) { return extension; } return setup; } possiblyCompleteTaskList() { const { isExtended, isTaskListComplete, isExtendedTaskListComplete, updateOptions, } = this.props; const isSetupTaskListIncomplete = ! isExtended && ! isTaskListComplete; const isExtendedTaskListIncomplete = isExtended && ! isExtendedTaskListComplete; const taskListToComplete = isExtended ? { woocommerce_extended_task_list_complete: 'yes' } : { woocommerce_task_list_complete: 'yes', woocommerce_default_homepage_layout: 'two_columns', }; if ( ! this.getIncompleteTasks().length && ( isSetupTaskListIncomplete || isExtendedTaskListIncomplete ) ) { updateOptions( { ...taskListToComplete, } ); } } getCompletedTaskKeys() { return this.getVisibleTasks( 'all' ) .filter( ( task ) => task.completed ) .map( ( task ) => task.key ); } getIncompleteTasks() { const { dismissedTasks } = this.props; return this.getSpecificTasks().filter( ( task ) => task.visible && ! task.completed && ! dismissedTasks.includes( task.key ) ); } shouldUpdateCompletedTasks( tasks, completedTasks ) { if ( completedTasks.length === 0 ) { return false; } return ! completedTasks.every( ( taskName ) => tasks.indexOf( taskName ) >= 0 ); } getTrackedCompletedTasks( completedTasks, trackedTasks ) { if ( ! trackedTasks ) { return []; } return completedTasks.filter( ( taskName ) => trackedTasks.includes( taskName ) ); } possiblyTrackCompletedTasks() { const { trackedCompletedTasks: totalTrackedCompletedTasks, updateOptions, } = this.props; const completedTaskKeys = this.getCompletedTaskKeys(); const trackedCompletedTasks = this.getTrackedCompletedTasks( completedTaskKeys, totalTrackedCompletedTasks ); if ( this.shouldUpdateCompletedTasks( trackedCompletedTasks, completedTaskKeys ) ) { updateOptions( { woocommerce_task_list_tracked_completed_tasks: completedTaskKeys, } ); } } dismissTask( { key, onDismiss } ) { const { createNotice, dismissedTasks, updateOptions } = this.props; createNotice( 'success', __( 'Task dismissed' ), { actions: [ { label: __( 'Undo', 'woocommerce-admin' ), onClick: () => this.undoDismissTask( key ), }, ], } ); recordEvent( 'tasklist_dismiss_task', { task_name: key } ); updateOptions( { woocommerce_task_list_dismissed_tasks: [ ...dismissedTasks, key ], } ); if ( onDismiss ) { onDismiss(); } } undoDismissTask( key ) { const { dismissedTasks, updateOptions } = this.props; const updatedDismissedTasks = dismissedTasks.filter( ( task ) => task !== key ); updateOptions( { woocommerce_task_list_dismissed_tasks: updatedDismissedTasks, } ); } getVisibleTasks( type ) { const { dismissedTasks } = this.props; const tasks = type === 'all' ? this.getUngroupedTasks() : this.getSpecificTasks(); return tasks.filter( ( task ) => task.visible && ! dismissedTasks.includes( task.key ) ); } recordTaskView() { const { isJetpackConnected, activePlugins, installedPlugins, query, } = this.props; const { task: taskName } = query; if ( ! taskName ) { return; } recordTaskViewEvent( taskName, isJetpackConnected, activePlugins, installedPlugins ); } recordTaskListView() { if ( this.getCurrentTask() ) { return; } const { profileItems } = this.props; const tasks = this.getVisibleTasks(); recordEvent( 'tasklist_view', { number_tasks: tasks.length, store_connected: profileItems.wccom_connected, } ); } hideTaskCard( action, isExtended ) { const eventTaskListName = isExtended ? 'extended_tasklist_completed' : 'tasklist_completed'; const updateOptions = isExtended ? { woocommerce_extended_task_list_hidden: 'yes' } : { woocommerce_task_list_hidden: 'yes', woocommerce_task_list_prompt_shown: true, woocommerce_default_homepage_layout: 'two_columns', }; recordEvent( eventTaskListName, { action, completed_task_count: this.getCompletedTaskKeys().length, incomplete_task_count: this.getIncompleteTasks().length, } ); this.props.updateOptions( { ...updateOptions, } ); } getCurrentTask() { const { query } = this.props; const { task } = query; const currentTask = this.getSpecificTasks().find( ( s ) => s.key === task ); if ( ! currentTask ) { return null; } return currentTask; } renderMenu( isExtended ) { return (