-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSetupTracking.js
610 lines (571 loc) · 15.4 KB
/
SetupTracking.js
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
/**
* External dependencies
*/
import { sprintf, __ } from '@wordpress/i18n';
import {
useEffect,
useState,
useCallback,
createInterpolateElement,
} from '@wordpress/element';
import apiFetch from '@wordpress/api-fetch';
import { getNewPath } from '@woocommerce/navigation';
import { recordEvent } from '@woocommerce/tracks';
import {
Button,
Card,
CardBody,
SelectControl,
CheckboxControl,
Spinner,
__experimentalText as Text, // eslint-disable-line @wordpress/no-unsafe-wp-apis --- _experimentalText unlikely to change/disappear and also used by WC Core
} from '@wordpress/components';
/**
* Internal dependencies
*/
import AdsCreditsPromo from './components/AdsCreditsPromo';
import StepHeader from '../components/StepHeader';
import StepOverview from '../components/StepOverview';
import ThirdPartyTagsNotice from '../components/ThirdPartyTagsNotice';
import {
useSettingsSelect,
useSettingsDispatch,
useCreateNotice,
} from '../helpers/effects';
import connectAdvertiser from '../helpers/connect-advertiser';
import documentationLinkProps from '../helpers/documentation-link-props';
/**
* Tracking setup component.
*
* To be used in onboarding stepper.
*
* @fires wcadmin_pfw_documentation_link_click with `{ link_id: 'ad-guidelines', context: 'wizard'|'settings' }`
* @fires wcadmin_pfw_documentation_link_click with `{ link_id: 'ad-data-terms', context: 'wizard'|'settings' }`
* @fires wcadmin_pfw_documentation_link_click with `{ link_id: 'ad-terms-of-service', context: 'wizard'|'settings' }`
* @fires wcadmin_pfw_documentation_link_click with `{ link_id: 'install-tag', context: 'wizard'|'settings' }`
* @fires wcadmin_pfw_documentation_link_click with `{ link_id: 'automatic-enhanced-match', context: 'wizard'|'settings' }`
*
* @fires wcadmin_pfw_setup with `{ target: 'complete', trigger: 'setup-tracking-complete' }` when "Complete setup" button is clicked.
* @fires wcadmin_pfw_setup with `{ target: 'fetch-tags' | 'fetch-advertisers', trigger: 'setup-tracking-try-again' }` when "Try again" button is clicked.
*
* @param {Object} props React props.
* @param {string} [props.view='settings'] `'wizard'|'settings'` Kind of view to render.
* @return {JSX.Element} rendered component
*/
const SetupTracking = ( { view = 'settings' } ) => {
const [ isSaving, setIsSaving ] = useState( false );
const [ isFetching, setIsFetching ] = useState( false );
const [ status, setStatus ] = useState( 'idle' );
const [ termsAgreed, setTermsAgreed ] = useState( false );
const [ advertisersList, setAdvertisersList ] = useState();
const [ tagsList, setTagsList ] = useState();
const appSettings = useSettingsSelect();
const setAppSettings = useSettingsDispatch( view === 'wizard' );
const createNotice = useCreateNotice();
useEffect( () => {
if (
! isFetching &&
undefined !== appSettings &&
undefined === advertisersList &&
status !== 'error'
) {
fetchAdvertisers();
}
if (
advertisersList &&
tagsList &&
appSettings?.tracking_advertiser &&
appSettings?.tracking_tag
) {
setStatus( 'success' );
}
}, [
appSettings,
advertisersList,
status,
fetchAdvertisers,
isFetching,
tagsList,
] );
const fetchAdvertisers = useCallback( async () => {
setIsFetching( true );
try {
setAdvertisersList();
const results = await apiFetch( {
path:
wcSettings.pinterest_for_woocommerce.apiRoute +
'/tagowners/?terms_agreed=' +
termsAgreed,
method: 'GET',
} );
setAdvertisersList( results.advertisers );
if ( results.advertisers.length > 0 ) {
if ( ! appSettings?.tracking_advertiser ) {
handleOptionChange(
'tracking_advertiser',
results.advertisers[ 0 ].id
);
} else {
fetchTags( appSettings?.tracking_advertiser );
}
setTermsAgreed( true );
} else {
setStatus( 'notAgreed' );
}
} catch ( error ) {
setStatus( 'error' );
createNotice(
'error',
error.message ||
__(
'Couldn’t retrieve your advertisers.',
'pinterest-for-woocommerce'
)
);
}
setIsFetching( false );
}, [
fetchTags,
appSettings,
createNotice,
handleOptionChange,
termsAgreed,
setTermsAgreed,
] );
const fetchTags = useCallback(
async ( advertiserId ) => {
setIsFetching( true );
try {
setTagsList();
const results = await apiFetch( {
path:
wcSettings.pinterest_for_woocommerce.apiRoute +
'/tags/?advrtsr_id=' +
advertiserId,
method: 'GET',
} );
setTagsList( results );
if ( Object.keys( results ).length > 0 ) {
if (
! appSettings?.tracking_tag ||
typeof results[ appSettings?.tracking_tag ] ===
'undefined'
) {
const tagsKeys = Object.keys( results );
handleOptionChange(
'tracking_tag',
results[ tagsKeys[ 0 ] ].id
);
}
} else {
setStatus( 'error' );
}
if ( appSettings?.tracking_tag ) {
setStatus( 'success' );
}
} catch ( error ) {
setStatus( 'error' );
createNotice(
'error',
error.message ||
__(
'Couldn’t retrieve your tags.',
'pinterest-for-woocommerce'
)
);
}
setIsFetching( false );
},
[
appSettings,
createNotice,
setIsFetching,
setStatus,
handleOptionChange,
]
);
const handleOptionChange = useCallback(
async ( name, value ) => {
if ( name === 'tracking_advertiser' ) {
fetchTags( value );
}
if (
appSettings?.tracking_advertiser &&
appSettings?.tracking_tag
) {
setStatus( 'success' );
} else {
setStatus( 'idle' );
}
await saveOptions( name, value );
},
[ fetchTags, setStatus, appSettings, saveOptions ]
);
const saveOptions = useCallback(
async ( name, value ) => {
setIsSaving( true );
try {
await setAppSettings( {
[ name ]: value ?? ! appSettings[ name ],
} );
} catch ( error ) {
createNotice(
'error',
__(
'There was a problem saving your settings.',
'pinterest-for-woocommerce'
)
);
}
setIsSaving( false );
},
[ appSettings, setIsSaving, setAppSettings, createNotice ]
);
const handleTryAgain = () => {
setStatus( 'idle' );
if ( appSettings.tracking_advertiser ) {
recordEvent( 'pfw_setup', {
target: 'fetch-tags',
trigger: 'setup-tracking-try-again',
} );
fetchTags( appSettings.tracking_advertiser );
} else {
recordEvent( 'pfw_setup', {
target: 'fetch-advertisers',
trigger: 'setup-tracking-try-again',
} );
fetchAdvertisers();
}
};
const StepButton = () => {
if ( status === 'idle' ) {
return '';
}
const buttonLabels = {
notAgreed: __( 'Continue', 'pinterest-for-woocommerce' ),
error: __( 'Try Again', 'pinterest-for-woocommerce' ),
success: __( 'Complete Setup', 'pinterest-for-woocommerce' ),
};
return (
<Button
isPrimary
disabled={ isSaving || ( ! termsAgreed && status !== 'error' ) }
onClick={
status === 'success' ? handleCompleteSetup : handleTryAgain
}
>
{ buttonLabels[ status ] }
</Button>
);
};
const handleCompleteSetup = async () => {
try {
const result = await connectAdvertiser(
appSettings.tracking_advertiser,
appSettings.tracking_tag,
true
);
if ( result ) {
createNotice(
'success',
__(
'The advertiser was connected successfully.',
'pinterest-for-woocommerce'
)
);
}
recordEvent( 'pfw_setup', {
target: 'complete',
trigger: 'setup-tracking-complete',
} );
// Force reload WC admin page to initiate the relevant dependencies of the Dashboard page.
const path = getNewPath( {}, '/pinterest/settings', {} );
window.location = new URL( wcSettings.adminUrl + path );
} catch ( error ) {
createNotice(
'error',
__(
'There was a problem connecting the advertiser.',
'pinterest-for-woocommerce'
)
);
}
};
return (
<div className="woocommerce-setup-guide__setup-tracking">
{ view === 'wizard' && (
<StepHeader
title={ __(
'Track conversions with the Pinterest tag',
'pinterest-for-woocommerce'
) }
subtitle={ __( 'Step Three', 'pinterest-for-woocommerce' ) }
/>
) }
<div className="woocommerce-setup-guide__step-columns">
<div className="woocommerce-setup-guide__step-column">
<StepOverview
title={
view === 'wizard'
? __(
'Select your advertiser and tag',
'pinterest-for-woocommerce'
)
: __(
'Track conversions with the Pinterest tag',
'pinterest-for-woocommerce'
)
}
description={
<>
{ createInterpolateElement(
__(
'The <linkTag>Pinterest tag</linkTag> is a piece of JavaScript code you put on your website to gather conversion insights and build audiences to target based on actions people have taken on your site.',
'pinterest-for-woocommerce'
),
{
linkTag: (
<Button
isLink
{ ...documentationLinkProps( {
href: wcSettings
.pinterest_for_woocommerce
.pinterestLinks
.installTag,
linkId: 'install-tag',
context: view,
} ) }
></Button>
),
}
) }
<br />
<br />
{ createInterpolateElement(
__(
'Using conversion tags means you agree to our <linkGuidelines>Ad Guidelines</linkGuidelines> and <linkTerms>Ad Data Terms</linkTerms>.',
'pinterest-for-woocommerce'
),
{
linkGuidelines: (
<Button
isLink
{ ...documentationLinkProps( {
href: wcSettings
.pinterest_for_woocommerce
.pinterestLinks
.adGuidelines,
linkId: 'ad-guidelines',
context: view,
} ) }
></Button>
),
linkTerms: (
<Button
isLink
{ ...documentationLinkProps( {
href: wcSettings
.pinterest_for_woocommerce
.pinterestLinks
.adDataTerms,
linkId: 'ad-data-terms',
context: view,
} ) }
></Button>
),
}
) }
<br />
<br />
{ createInterpolateElement(
__(
'<linkAem>Automatic Enhanced Match</linkAem> is enabled by default to match more of your website visitors and conversions to people on Pinterest. You can manage this in Settings.',
'pinterest-for-woocommerce'
),
{
linkAem: (
<Button
isLink
{ ...documentationLinkProps( {
href: wcSettings
.pinterest_for_woocommerce
.pinterestLinks
.automaticEnhancedMatch,
linkId: 'automatic-enhanced-match',
context: view,
} ) }
></Button>
),
}
) }
</>
}
/>
{ view === 'wizard' && <AdsCreditsPromo /> }
</div>
<div className="woocommerce-setup-guide__step-column">
<Card>
{ undefined !== appSettings &&
Object.keys( appSettings ).length > 0 &&
undefined !== advertisersList ? (
<CardBody size="large">
<ThirdPartyTagsNotice />
{ advertisersList.length > 0 ? (
<>
<SelectControl
label={ __(
'Advertiser',
'pinterest-for-woocommerce'
) }
labelPosition="top"
value={
appSettings.tracking_advertiser
}
onChange={ ( selectedAdvertiser ) =>
handleOptionChange(
'tracking_advertiser',
selectedAdvertiser
)
}
options={ advertisersList.map(
( item ) => ( {
label: sprintf(
'%1$s (%2$d)',
item.name,
item.id
),
value: item.id,
} )
) }
help={ __(
'Select the advertiser for which you would like to install a tracking snippet.',
'pinterest-for-woocommerce'
) }
/>
{ undefined !==
appSettings.tracking_advertiser &&
( undefined !== tagsList ? (
Object.keys( tagsList ).length >
0 && (
<>
<SelectControl
label={ __(
'Tracking Tag',
'pinterest-for-woocommerce'
) }
labelPosition="top"
value={
appSettings.tracking_tag
}
onChange={ (
selectedTag
) =>
handleOptionChange(
'tracking_tag',
selectedTag
)
}
options={ Object.values(
tagsList
).map(
( item ) => ( {
label: sprintf(
'%1$s (%2$d)',
item.name,
item.id
),
value: item.id,
} )
) }
help={ __(
'Select the tracking tag to use.',
'pinterest-for-woocommerce'
) }
/>
</>
)
) : (
<Spinner />
) ) }
</>
) : (
<>
<Text
variant="body"
className="text-margin"
>
{ __(
'In order to proceed you need to read and accept the contents of the Pinterest Advertising Agreement.',
'pinterest-for-woocommerce'
) }
</Text>
<CheckboxControl
label={ createInterpolateElement(
__(
'I accept the <link>Pinterest Advertising Agreement</link>',
'pinterest-for-woocommerce'
),
{
link: (
<Button
isLink
{ ...documentationLinkProps(
{
href: wcSettings
.pinterest_for_woocommerce
.countryTos
.terms_url,
linkId: 'ad-terms-of-service',
context:
view,
}
) }
></Button>
),
}
) }
checked={ termsAgreed }
className="woocommerce-setup-guide__checkbox-group"
onChange={ ( agreed ) =>
setTermsAgreed(
agreed
? wcSettings
.pinterest_for_woocommerce
.countryTos
.tos_id
: false
)
}
/>
</>
) }
</CardBody>
) : (
<CardBody size="large">
{ status === 'error' ? (
<Text
variant="body"
className="errorMessage"
>
{ __(
'An error occurred while attempting to fetch Advertisers & Tags from Pinterest. Please try again.',
'pinterest-for-woocommerce'
) }
</Text>
) : (
<Spinner />
) }
</CardBody>
) }
</Card>
{ view === 'wizard' && (
<div className="woocommerce-setup-guide__footer-button">
<StepButton />
</div>
) }
</div>
</div>
</div>
);
};
export default SetupTracking;