2018-04-17 23:51:48 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2018-05-10 18:35:55 +00:00
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Component, Fragment } from '@wordpress/element';
|
2018-04-17 23:51:48 +00:00
|
|
|
|
|
|
|
/**
|
2018-05-03 18:23:17 +00:00
|
|
|
* Internal dependencies
|
2018-04-17 23:51:48 +00:00
|
|
|
*/
|
2018-08-02 23:10:55 +00:00
|
|
|
import './style.scss';
|
2019-04-22 13:23:37 +00:00
|
|
|
import CustomizableDashboard from './customizable';
|
2018-12-22 00:24:26 +00:00
|
|
|
import DashboardCharts from './dashboard-charts';
|
2019-01-08 07:20:01 +00:00
|
|
|
import Header from 'header';
|
|
|
|
import Leaderboards from './leaderboards';
|
2018-10-24 22:40:59 +00:00
|
|
|
import { ReportFilters } from '@woocommerce/components';
|
2019-01-08 07:20:01 +00:00
|
|
|
import StorePerformance from './store-performance';
|
2019-03-28 06:09:44 +00:00
|
|
|
import TaskList from './task-list';
|
2019-05-07 19:25:51 +00:00
|
|
|
import ProfileWizard from './profile-wizard';
|
2018-04-17 23:51:48 +00:00
|
|
|
|
2018-05-18 17:31:08 +00:00
|
|
|
export default class Dashboard extends Component {
|
2019-04-22 13:23:37 +00:00
|
|
|
renderDashboardOutput() {
|
2019-05-07 19:25:51 +00:00
|
|
|
// @todo This should be replaced by a check from the REST API response from #1897.
|
|
|
|
const profileWizardComplete = true;
|
|
|
|
if ( window.wcAdminFeatures.onboarding && ! profileWizardComplete ) {
|
|
|
|
return <ProfileWizard />;
|
|
|
|
}
|
|
|
|
|
2019-03-28 06:09:44 +00:00
|
|
|
// @todo This should be replaced by a check of tasks from the REST API response from #1897.
|
|
|
|
const requiredTasksComplete = true;
|
2019-04-22 13:23:37 +00:00
|
|
|
if ( window.wcAdminFeatures.onboarding && ! requiredTasksComplete ) {
|
|
|
|
return <TaskList />;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { query, path } = this.props;
|
|
|
|
|
|
|
|
// @todo When the customizable dashboard is ready to be launched, we can pull `CustomizableDashboard`'s render
|
|
|
|
// method into `index.js`, and replace both this feature check, and the existing dashboard below.
|
2019-05-08 16:10:05 +00:00
|
|
|
if ( window.wcAdminFeatures[ 'analytics-dashboard/customizable' ] ) {
|
2019-04-22 13:23:37 +00:00
|
|
|
return <CustomizableDashboard query={ query } path={ path } />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<ReportFilters query={ query } path={ path } />
|
|
|
|
<StorePerformance query={ query } />
|
|
|
|
<DashboardCharts query={ query } path={ path } />
|
|
|
|
<Leaderboards query={ query } />
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-04-17 23:51:48 +00:00
|
|
|
return (
|
2018-05-10 18:35:55 +00:00
|
|
|
<Fragment>
|
2019-03-13 17:14:02 +00:00
|
|
|
<Header sections={ [ __( 'Dashboard', 'woocommerce-admin' ) ] } />
|
2019-04-22 13:23:37 +00:00
|
|
|
{ this.renderDashboardOutput() }
|
2018-05-10 18:35:55 +00:00
|
|
|
</Fragment>
|
2018-04-17 23:51:48 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|