/** * External dependencies */ import { __, _x } from '@wordpress/i18n'; import { applyFilters } from '@wordpress/hooks'; import { NAMESPACE } from '@woocommerce/data'; import { dispatch } from '@wordpress/data'; /** * Internal dependencies */ import { getRequestByIdString } from '../../../lib/async-requests'; import { getTaxCode } from './utils'; import { STORE_KEY as CES_STORE_KEY } from '../../../customer-effort-score-tracks/data/constants'; const TAXES_REPORT_CHARTS_FILTER = 'woocommerce_admin_taxes_report_charts'; const TAXES_REPORT_FILTERS_FILTER = 'woocommerce_admin_taxes_report_filters'; const TAXES_REPORT_ADVANCED_FILTERS_FILTER = 'woocommerce_admin_taxes_report_advanced_filters'; const { addCesSurveyForAnalytics } = dispatch( CES_STORE_KEY ); export const charts = applyFilters( TAXES_REPORT_CHARTS_FILTER, [ { key: 'total_tax', label: __( 'Total tax', 'woocommerce-admin' ), order: 'desc', orderby: 'total_tax', type: 'currency', }, { key: 'order_tax', label: __( 'Order tax', 'woocommerce-admin' ), order: 'desc', orderby: 'order_tax', type: 'currency', }, { key: 'shipping_tax', label: __( 'Shipping tax', 'woocommerce-admin' ), order: 'desc', orderby: 'shipping_tax', type: 'currency', }, { key: 'orders_count', label: __( 'Orders', 'woocommerce-admin' ), order: 'desc', orderby: 'orders_count', type: 'number', }, ] ); export const advancedFilters = applyFilters( TAXES_REPORT_ADVANCED_FILTERS_FILTER, { filters: {}, title: _x( 'Taxes match {{select /}} filters', 'A sentence describing filters for Taxes. See screen shot for context: https://cloudup.com/cSsUY9VeCVJ', 'woocommerce-admin' ), } ); const filterValues = [ { label: __( 'All taxes', 'woocommerce-admin' ), value: 'all' }, { label: __( 'Comparison', 'woocommerce-admin' ), value: 'compare-taxes', chartMode: 'item-comparison', settings: { type: 'taxes', param: 'taxes', getLabels: getRequestByIdString( NAMESPACE + '/taxes', ( tax ) => ( { id: tax.id, key: tax.id, label: getTaxCode( tax ), } ) ), labels: { helpText: __( 'Check at least two tax codes below to compare', 'woocommerce-admin' ), placeholder: __( 'Search for tax codes to compare', 'woocommerce-admin' ), title: __( 'Compare Tax Codes', 'woocommerce-admin' ), update: __( 'Compare', 'woocommerce-admin' ), }, onClick: addCesSurveyForAnalytics, }, }, ]; if ( Object.keys( advancedFilters.filters ).length ) { filterValues.push( { label: __( 'Advanced filters', 'woocommerce-admin' ), value: 'advanced', } ); } export const filters = applyFilters( TAXES_REPORT_FILTERS_FILTER, [ { label: __( 'Show', 'woocommerce-admin' ), staticParams: [ 'chartType', 'paged', 'per_page' ], param: 'filter', showFilters: () => true, filters: filterValues, }, ] );