2018-09-17 02:26:34 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2019-01-24 09:35:27 +00:00
|
|
|
import { getCouponLabels } from 'lib/async-requests';
|
2018-09-17 02:26:34 +00:00
|
|
|
|
2018-11-16 13:39:29 +00:00
|
|
|
export const charts = [
|
|
|
|
{
|
2018-12-21 02:13:57 +00:00
|
|
|
key: 'orders_count',
|
2018-11-16 22:01:24 +00:00
|
|
|
label: __( 'Discounted Orders', 'wc-admin' ),
|
2019-02-15 10:54:41 +00:00
|
|
|
order: 'desc',
|
|
|
|
orderby: 'orders_count',
|
2018-11-16 13:39:29 +00:00
|
|
|
type: 'number',
|
|
|
|
},
|
|
|
|
{
|
2018-12-21 02:13:57 +00:00
|
|
|
key: 'amount',
|
|
|
|
label: __( 'Amount', 'wc-admin' ),
|
2019-02-15 10:54:41 +00:00
|
|
|
order: 'desc',
|
|
|
|
orderby: 'amount',
|
2018-11-16 13:39:29 +00:00
|
|
|
type: 'currency',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2018-09-17 02:26:34 +00:00
|
|
|
export const filters = [
|
|
|
|
{
|
2018-10-29 01:30:24 +00:00
|
|
|
label: __( 'Show', 'wc-admin' ),
|
|
|
|
staticParams: [],
|
|
|
|
param: 'filter',
|
|
|
|
showFilters: () => true,
|
|
|
|
filters: [
|
|
|
|
{ label: __( 'All Coupons', 'wc-admin' ), value: 'all' },
|
2019-01-20 22:31:03 +00:00
|
|
|
{
|
|
|
|
label: __( 'Single Coupon', 'wc-admin' ),
|
|
|
|
value: 'select_coupon',
|
|
|
|
chartMode: 'item-comparison',
|
|
|
|
subFilters: [
|
|
|
|
{
|
|
|
|
component: 'Search',
|
|
|
|
value: 'single_coupon',
|
|
|
|
chartMode: 'item-comparison',
|
|
|
|
path: [ 'select_coupon' ],
|
|
|
|
settings: {
|
|
|
|
type: 'coupons',
|
|
|
|
param: 'coupons',
|
2019-01-24 09:35:27 +00:00
|
|
|
getLabels: getCouponLabels,
|
2019-01-20 22:31:03 +00:00
|
|
|
labels: {
|
|
|
|
placeholder: __( 'Type to search for a coupon', 'wc-admin' ),
|
|
|
|
button: __( 'Single Coupon', 'wc-admin' ),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2018-10-29 01:30:24 +00:00
|
|
|
{
|
|
|
|
label: __( 'Comparison', 'wc-admin' ),
|
2018-11-16 13:39:29 +00:00
|
|
|
value: 'compare-coupons',
|
2018-10-29 01:30:24 +00:00
|
|
|
settings: {
|
|
|
|
type: 'coupons',
|
2018-11-16 13:39:29 +00:00
|
|
|
param: 'coupons',
|
2019-01-24 09:35:27 +00:00
|
|
|
getLabels: getCouponLabels,
|
2018-10-29 01:30:24 +00:00
|
|
|
labels: {
|
|
|
|
title: __( 'Compare Coupon Codes', 'wc-admin' ),
|
|
|
|
update: __( 'Compare', 'wc-admin' ),
|
2019-01-18 02:22:51 +00:00
|
|
|
helpText: __( 'Select at least two coupon codes to compare', 'wc-admin' ),
|
2018-10-29 01:30:24 +00:00
|
|
|
},
|
|
|
|
},
|
2018-09-17 02:26:34 +00:00
|
|
|
},
|
2018-10-29 01:30:24 +00:00
|
|
|
],
|
2018-09-17 02:26:34 +00:00
|
|
|
},
|
|
|
|
];
|