woocommerce/plugins/woocommerce-admin/client/analytics/settings/config.js

116 lines
3.1 KiB
JavaScript

/**
* External dependencies
*/
import { __, sprintf } from '@wordpress/i18n';
import { applyFilters } from '@wordpress/hooks';
import interpolateComponents from 'interpolate-components';
import { getSetting, ORDER_STATUSES } from '@woocommerce/wc-admin-settings';
/**
* Internal dependencies
*/
import DefaultDate from './default-date';
const SETTINGS_FILTER = 'woocommerce_admin_analytics_settings';
export const DEFAULT_ACTIONABLE_STATUSES = [ 'processing', 'on-hold' ];
export const DEFAULT_ORDER_STATUSES = [
'completed',
'processing',
'refunded',
'cancelled',
'failed',
'pending',
'on-hold',
];
export const DEFAULT_DATE_RANGE = 'period=month&compare=previous_year';
const filteredOrderStatuses = Object.keys( ORDER_STATUSES )
.filter( ( status ) => status !== 'refunded' )
.map( ( key ) => {
return {
value: key,
label: ORDER_STATUSES[ key ],
description: sprintf(
__( 'Exclude the %s status from reports', 'woocommerce-admin' ),
ORDER_STATUSES[ key ]
),
};
} );
const unregisteredOrderStatuses = getSetting( 'unregisteredOrderStatuses', {} );
const orderStatusOptions = [
{
key: 'defaultStatuses',
options: filteredOrderStatuses.filter( ( status ) =>
DEFAULT_ORDER_STATUSES.includes( status.value )
),
},
{
key: 'customStatuses',
label: __( 'Custom Statuses', 'woocommerce-admin' ),
options: filteredOrderStatuses.filter(
( status ) => ! DEFAULT_ORDER_STATUSES.includes( status.value )
),
},
{
key: 'unregisteredStatuses',
label: __( 'Unregistered Statuses', 'woocommerce-admin' ),
options: Object.keys( unregisteredOrderStatuses ).map( ( key ) => {
return {
value: key,
label: key,
description: sprintf(
__(
'Exclude the %s status from reports',
'woocommerce-admin'
),
key
),
};
} ),
},
];
export const config = applyFilters( SETTINGS_FILTER, {
woocommerce_excluded_report_order_statuses: {
label: __( 'Excluded Statuses:', 'woocommerce-admin' ),
inputType: 'checkboxGroup',
options: orderStatusOptions,
helpText: interpolateComponents( {
mixedString: __(
'Orders with these statuses are excluded from the totals in your reports. ' +
'The {{strong}}Refunded{{/strong}} status can not be excluded.',
'woocommerce-admin'
),
components: {
strong: <strong />,
},
} ),
defaultValue: [ 'pending', 'cancelled', 'failed' ],
},
woocommerce_actionable_order_statuses: {
label: __( 'Actionable Statuses:', 'woocommerce-admin' ),
inputType: 'checkboxGroup',
options: orderStatusOptions,
helpText: __(
'Orders with these statuses require action on behalf of the store admin. ' +
'These orders will show up in the Home Screen - Orders task.',
'woocommerce-admin'
),
defaultValue: DEFAULT_ACTIONABLE_STATUSES,
},
woocommerce_default_date_range: {
name: 'woocommerce_default_date_range',
label: __( 'Default Date Range:', 'woocommerce-admin' ),
inputType: 'component',
component: DefaultDate,
helpText: __(
'Select a default date range. When no range is selected, reports will be viewed by ' +
'the default date range.',
'woocommerce-admin'
),
defaultValue: DEFAULT_DATE_RANGE,
},
} );