2020-11-06 01:21:05 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import OrdersPanel from './orders';
|
2020-11-25 18:51:15 +00:00
|
|
|
import StockPanel from './stock';
|
2020-12-02 13:30:39 +00:00
|
|
|
import ReviewsPanel from './reviews';
|
2020-11-06 01:21:05 +00:00
|
|
|
|
2020-11-23 15:06:55 +00:00
|
|
|
export function getAllPanels( {
|
2020-11-25 18:51:15 +00:00
|
|
|
countLowStockProducts,
|
2020-12-29 16:19:13 +00:00
|
|
|
countUnapprovedReviews,
|
2020-11-23 15:06:55 +00:00
|
|
|
countUnreadOrders,
|
2021-01-27 21:40:27 +00:00
|
|
|
isTaskListHidden,
|
2020-11-25 18:51:15 +00:00
|
|
|
manageStock,
|
2020-11-23 15:06:55 +00:00
|
|
|
orderStatuses,
|
2020-12-29 16:19:13 +00:00
|
|
|
publishedProductCount,
|
2020-12-02 13:30:39 +00:00
|
|
|
reviewsEnabled,
|
2020-12-29 16:19:13 +00:00
|
|
|
totalOrderCount,
|
2020-11-23 15:06:55 +00:00
|
|
|
} ) {
|
2021-01-29 14:23:02 +00:00
|
|
|
if ( isTaskListHidden !== 'yes' ) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2020-11-06 01:21:05 +00:00
|
|
|
return [
|
2020-11-23 15:06:55 +00:00
|
|
|
totalOrderCount > 0 && {
|
2020-11-06 01:21:05 +00:00
|
|
|
className: 'woocommerce-homescreen-card',
|
|
|
|
count: countUnreadOrders,
|
2020-12-09 20:57:41 +00:00
|
|
|
collapsible: true,
|
2020-11-06 01:21:05 +00:00
|
|
|
id: 'orders-panel',
|
2021-03-16 00:34:20 +00:00
|
|
|
initialOpen: false,
|
2020-11-06 16:50:24 +00:00
|
|
|
panel: (
|
|
|
|
<OrdersPanel
|
|
|
|
countUnreadOrders={ countUnreadOrders }
|
|
|
|
orderStatuses={ orderStatuses }
|
|
|
|
/>
|
|
|
|
),
|
2020-11-06 01:21:05 +00:00
|
|
|
title: __( 'Orders', 'woocommerce-admin' ),
|
|
|
|
},
|
2020-12-29 16:19:13 +00:00
|
|
|
totalOrderCount > 0 &&
|
|
|
|
publishedProductCount > 0 &&
|
|
|
|
manageStock === 'yes' && {
|
|
|
|
className: 'woocommerce-homescreen-card',
|
|
|
|
count: countLowStockProducts,
|
|
|
|
id: 'stock-panel',
|
|
|
|
initialOpen: false,
|
|
|
|
collapsible: countLowStockProducts !== 0,
|
|
|
|
panel: (
|
|
|
|
<StockPanel
|
|
|
|
countLowStockProducts={ countLowStockProducts }
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
title: __( 'Stock', 'woocommerce-admin' ),
|
|
|
|
},
|
|
|
|
publishedProductCount > 0 &&
|
|
|
|
reviewsEnabled === 'yes' && {
|
|
|
|
className: 'woocommerce-homescreen-card',
|
|
|
|
id: 'reviews-panel',
|
|
|
|
count: countUnapprovedReviews,
|
|
|
|
initialOpen: false,
|
|
|
|
collapsible: countUnapprovedReviews !== 0,
|
|
|
|
panel: (
|
|
|
|
<ReviewsPanel
|
|
|
|
hasUnapprovedReviews={ countUnapprovedReviews > 0 }
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
title: __( 'Reviews', 'woocommerce-admin' ),
|
|
|
|
},
|
2020-11-06 01:21:05 +00:00
|
|
|
// Add another panel row here
|
2020-11-23 15:06:55 +00:00
|
|
|
].filter( Boolean );
|
2020-11-06 01:21:05 +00:00
|
|
|
}
|