46 lines
982 B
JavaScript
46 lines
982 B
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import OrdersPanel from './orders';
|
|
import StockPanel from './stock';
|
|
|
|
export function getAllPanels( {
|
|
countLowStockProducts,
|
|
countUnreadOrders,
|
|
manageStock,
|
|
orderStatuses,
|
|
totalOrderCount,
|
|
} ) {
|
|
return [
|
|
totalOrderCount > 0 && {
|
|
className: 'woocommerce-homescreen-card',
|
|
count: countUnreadOrders,
|
|
id: 'orders-panel',
|
|
initialOpen: true,
|
|
panel: (
|
|
<OrdersPanel
|
|
countUnreadOrders={ countUnreadOrders }
|
|
orderStatuses={ orderStatuses }
|
|
/>
|
|
),
|
|
title: __( 'Orders', 'woocommerce-admin' ),
|
|
},
|
|
manageStock === 'yes' && {
|
|
className: 'woocommerce-homescreen-card',
|
|
count: countLowStockProducts,
|
|
id: 'stock-panel',
|
|
initialOpen: false,
|
|
panel: (
|
|
<StockPanel countLowStockProducts={ countLowStockProducts } />
|
|
),
|
|
title: __( 'Stock', 'woocommerce-admin' ),
|
|
},
|
|
// Add another panel row here
|
|
].filter( Boolean );
|
|
}
|