forked from woocommerce/google-listings-and-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
135 lines (128 loc) · 3.56 KB
/
index.js
File metadata and controls
135 lines (128 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { SummaryNumber } from '@woocommerce/components';
/**
* Internal dependencies
*/
import { glaData, REPORT_SOURCE_PAID, REPORT_SOURCE_FREE } from '.~/constants';
import useAdsCurrency from '.~/hooks/useAdsCurrency';
import useCurrencyFormat from '.~/hooks/useCurrencyFormat';
import usePerformance from './usePerformance';
import PerformanceCard from './performance-card';
import SummaryCard from './summary-card';
import PaidCampaignPromotionCard from './paid-campaign-promotion-card';
const numberFormatSetting = { precision: 0 };
/**
* @fires gla_google_mc_link_click with `{ context: 'dashboard' }`
*/
const FreePerformanceCard = () => {
const formatNumber = useCurrencyFormat( numberFormatSetting );
const { data, loaded } = usePerformance( REPORT_SOURCE_FREE );
return (
<PerformanceCard
loaded={ loaded }
data={ data }
noDataMessage={ {
body: __(
"We're having trouble loading this data. Try again later, or track your performance in Google Merchant Center.",
'google-listings-and-ads'
),
link: 'https://merchants.google.com/mc/reporting/dashboard',
eventName: 'gla_google_mc_link_click',
buttonLabel: __(
'Open Google Merchant Center',
'google-listings-and-ads'
),
} }
>
{ ( loadedData ) => [
<SummaryNumber
key="1"
label={ __( 'Clicks', 'google-listings-and-ads' ) }
value={ formatNumber( loadedData.clicks.value ) }
prevValue={ formatNumber( loadedData.clicks.prevValue ) }
delta={ loadedData.clicks.delta }
/>,
<SummaryNumber
key="2"
label={ __( 'Total Spend', 'google-listings-and-ads' ) }
value={ __( 'Free', 'google-listings-and-ads' ) }
delta={ null }
/>,
] }
</PerformanceCard>
);
};
const PaidPerformanceCard = () => {
// The amount of Total Sales and Total Spend are given in the Ads' currency.
// We use currency code to make sure it's nonambiguous.
const { formatAmount } = useAdsCurrency();
const { data, loaded } = usePerformance( REPORT_SOURCE_PAID );
return (
<PerformanceCard
loaded={ loaded }
data={ data }
noDataMessage={ {
body: __(
"We're having trouble loading this data. Try again later, or track your performance in Google Ads.",
'google-listings-and-ads'
),
link: 'https://ads.google.com/',
eventName: 'gla_google_ads_link_click',
buttonLabel: __( 'Open Google Ads', 'google-listings-and-ads' ),
} }
>
{ ( loadedData ) => [
<SummaryNumber
key="1"
label={ __( 'Total Sales', 'google-listings-and-ads' ) }
value={ formatAmount( loadedData.sales.value, true ) }
prevValue={ formatAmount(
loadedData.sales.prevValue,
true
) }
delta={ loadedData.sales.delta }
/>,
<SummaryNumber
key="2"
label={ __( 'Total Spend', 'google-listings-and-ads' ) }
value={ formatAmount( loadedData.spend.value, true ) }
prevValue={ formatAmount(
loadedData.spend.prevValue,
true
) }
delta={ loadedData.spend.delta }
/>,
] }
</PerformanceCard>
);
};
export default function SummarySection() {
const { adsSetupComplete } = glaData;
return (
<>
<SummaryCard
title={ __(
'Performance (Free Listing)',
'google-listings-and-ads'
) }
>
<FreePerformanceCard />
</SummaryCard>
<SummaryCard
title={ __(
'Performance (Paid Campaigns)',
'google-listings-and-ads'
) }
>
{ adsSetupComplete ? (
<PaidPerformanceCard />
) : (
<PaidCampaignPromotionCard />
) }
</SummaryCard>
</>
);
}