@gravity-ui/page-constructor 1.14.0-alpha.5 → 1.14.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +0 -7
- package/build/cjs/blocks/Banner/schema.d.ts +312 -0
- package/build/cjs/blocks/Media/schema.d.ts +104 -0
- package/build/cjs/components/Button/Button.js +5 -2
- package/build/cjs/components/CardBase/CardBase.d.ts +2 -0
- package/build/cjs/components/CardBase/CardBase.js +4 -1
- package/build/cjs/components/HeaderBreadcrumbs/HeaderBreadcrumbs.js +4 -1
- package/build/cjs/components/Link/Link.js +4 -1
- package/build/cjs/components/YandexForm/YandexForm.d.ts +2 -0
- package/build/cjs/components/YandexForm/YandexForm.js +13 -2
- package/build/cjs/containers/PageConstructor/Provider.d.ts +2 -0
- package/build/cjs/containers/PageConstructor/Provider.js +3 -1
- package/build/cjs/context/analyticsContext/analyticsContext.d.ts +6 -0
- package/build/cjs/context/analyticsContext/analyticsContext.js +6 -0
- package/build/cjs/context/analyticsContext/index.d.ts +1 -0
- package/build/cjs/{schema/validators/navigation.js → context/analyticsContext/index.js} +1 -1
- package/build/cjs/context/metrikaContext/metrikaContext.d.ts +6 -0
- package/build/cjs/hooks/useAnalytics.d.ts +2 -0
- package/build/cjs/hooks/useAnalytics.js +15 -0
- package/build/cjs/hooks/useMetrika.d.ts +6 -0
- package/build/cjs/hooks/useMetrika.js +8 -0
- package/build/cjs/models/common.d.ts +30 -0
- package/build/cjs/models/common.js +3 -0
- package/build/cjs/models/constructor-items/common.d.ts +4 -1
- package/build/cjs/models/constructor-items/sub-blocks.d.ts +2 -1
- package/build/cjs/models/navigation.d.ts +3 -1
- package/build/cjs/navigation/components/Header/Header.css +3 -5
- package/build/cjs/navigation/components/Logo/Logo.css +6 -5
- package/build/cjs/navigation/components/NavigationItem/NavigationItem.css +0 -1
- package/build/cjs/schema/index.d.ts +0 -67
- package/build/cjs/schema/index.js +1 -2
- package/build/cjs/schema/validators/common.d.ts +220 -0
- package/build/cjs/schema/validators/common.js +10 -0
- package/build/cjs/schema/validators/event.d.ts +50 -0
- package/build/cjs/schema/validators/event.js +53 -0
- package/build/cjs/schema/validators/index.d.ts +0 -2
- package/build/cjs/schema/validators/index.js +0 -2
- package/build/cjs/sub-blocks/HubspotForm/index.js +14 -2
- package/build/esm/blocks/Banner/schema.d.ts +312 -0
- package/build/esm/blocks/Media/schema.d.ts +104 -0
- package/build/esm/components/Button/Button.js +5 -2
- package/build/esm/components/CardBase/CardBase.d.ts +2 -0
- package/build/esm/components/CardBase/CardBase.js +4 -1
- package/build/esm/components/HeaderBreadcrumbs/HeaderBreadcrumbs.js +4 -1
- package/build/esm/components/Link/Link.js +4 -1
- package/build/esm/components/YandexForm/YandexForm.d.ts +2 -0
- package/build/esm/components/YandexForm/YandexForm.js +13 -2
- package/build/esm/containers/PageConstructor/Provider.d.ts +2 -0
- package/build/esm/containers/PageConstructor/Provider.js +3 -1
- package/build/esm/context/analyticsContext/analyticsContext.d.ts +6 -0
- package/build/esm/context/analyticsContext/analyticsContext.js +2 -0
- package/build/esm/context/analyticsContext/index.d.ts +1 -0
- package/build/esm/context/analyticsContext/index.js +1 -0
- package/build/esm/context/metrikaContext/metrikaContext.d.ts +6 -0
- package/build/esm/hooks/useAnalytics.d.ts +2 -0
- package/build/esm/hooks/useAnalytics.js +11 -0
- package/build/esm/hooks/useMetrika.d.ts +6 -0
- package/build/esm/hooks/useMetrika.js +8 -0
- package/build/esm/models/common.d.ts +30 -0
- package/build/esm/models/common.js +3 -0
- package/build/esm/models/constructor-items/common.d.ts +4 -1
- package/build/esm/models/constructor-items/sub-blocks.d.ts +2 -1
- package/build/esm/models/navigation.d.ts +3 -1
- package/build/esm/navigation/components/Header/Header.css +3 -5
- package/build/esm/navigation/components/Logo/Logo.css +6 -5
- package/build/esm/navigation/components/NavigationItem/NavigationItem.css +0 -1
- package/build/esm/schema/index.d.ts +0 -67
- package/build/esm/schema/index.js +1 -2
- package/build/esm/schema/validators/common.d.ts +220 -0
- package/build/esm/schema/validators/common.js +10 -0
- package/build/esm/schema/validators/event.d.ts +50 -0
- package/build/esm/schema/validators/event.js +50 -0
- package/build/esm/schema/validators/index.d.ts +0 -2
- package/build/esm/schema/validators/index.js +0 -2
- package/build/esm/sub-blocks/HubspotForm/index.js +14 -2
- package/package.json +1 -1
- package/server/models/common.d.ts +30 -0
- package/server/models/common.js +3 -0
- package/server/models/constructor-items/common.d.ts +4 -1
- package/server/models/constructor-items/sub-blocks.d.ts +2 -1
- package/server/models/navigation.d.ts +3 -1
- package/build/cjs/navigation/schema.d.ts +0 -60
- package/build/cjs/navigation/schema.js +0 -80
- package/build/cjs/schema/validators/navigation.d.ts +0 -1
- package/build/esm/navigation/schema.d.ts +0 -60
- package/build/esm/navigation/schema.js +0 -77
- package/build/esm/schema/validators/navigation.d.ts +0 -1
- package/build/esm/schema/validators/navigation.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [1.13.1](https://github.com/gravity-ui/page-constructor/compare/v1.13.0...v1.13.1) (2023-01-19)
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Bug Fixes
|
|
7
|
-
|
|
8
|
-
* **Navigation:** logo and button specifity styles ([#116](https://github.com/gravity-ui/page-constructor/issues/116)) ([dbe0c39](https://github.com/gravity-ui/page-constructor/commit/dbe0c39aa88aac8a3e84c079d7de400e9a9b3d2f))
|
|
9
|
-
|
|
10
3
|
## [1.13.0](https://github.com/gravity-ui/page-constructor/compare/v1.12.1...v1.13.0) (2023-01-18)
|
|
11
4
|
|
|
12
5
|
|
|
@@ -173,6 +173,110 @@ export declare const BannerCardProps: {
|
|
|
173
173
|
};
|
|
174
174
|
};
|
|
175
175
|
};
|
|
176
|
+
events: {
|
|
177
|
+
anyOf: ({
|
|
178
|
+
type: string;
|
|
179
|
+
additionalProperties: boolean;
|
|
180
|
+
required: string[];
|
|
181
|
+
properties: {
|
|
182
|
+
name: {
|
|
183
|
+
type: string;
|
|
184
|
+
};
|
|
185
|
+
type: {
|
|
186
|
+
type: string;
|
|
187
|
+
};
|
|
188
|
+
counters: {
|
|
189
|
+
type: string;
|
|
190
|
+
additionalProperties: boolean;
|
|
191
|
+
required: never[];
|
|
192
|
+
properties: {
|
|
193
|
+
include: {
|
|
194
|
+
type: string;
|
|
195
|
+
items: string;
|
|
196
|
+
};
|
|
197
|
+
exclude: {
|
|
198
|
+
type: string;
|
|
199
|
+
items: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
category: {
|
|
204
|
+
type: string;
|
|
205
|
+
};
|
|
206
|
+
label: {
|
|
207
|
+
type: string;
|
|
208
|
+
};
|
|
209
|
+
params: {
|
|
210
|
+
type: string;
|
|
211
|
+
items: {
|
|
212
|
+
type: string;
|
|
213
|
+
additionalProperties: boolean;
|
|
214
|
+
required: string[];
|
|
215
|
+
properties: {
|
|
216
|
+
key: {
|
|
217
|
+
type: string;
|
|
218
|
+
};
|
|
219
|
+
value: {
|
|
220
|
+
type: string;
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
} | {
|
|
227
|
+
type: string;
|
|
228
|
+
items: {
|
|
229
|
+
type: string;
|
|
230
|
+
additionalProperties: boolean;
|
|
231
|
+
required: string[];
|
|
232
|
+
properties: {
|
|
233
|
+
name: {
|
|
234
|
+
type: string;
|
|
235
|
+
};
|
|
236
|
+
type: {
|
|
237
|
+
type: string;
|
|
238
|
+
};
|
|
239
|
+
counters: {
|
|
240
|
+
type: string;
|
|
241
|
+
additionalProperties: boolean;
|
|
242
|
+
required: never[];
|
|
243
|
+
properties: {
|
|
244
|
+
include: {
|
|
245
|
+
type: string;
|
|
246
|
+
items: string;
|
|
247
|
+
};
|
|
248
|
+
exclude: {
|
|
249
|
+
type: string;
|
|
250
|
+
items: string;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
category: {
|
|
255
|
+
type: string;
|
|
256
|
+
};
|
|
257
|
+
label: {
|
|
258
|
+
type: string;
|
|
259
|
+
};
|
|
260
|
+
params: {
|
|
261
|
+
type: string;
|
|
262
|
+
items: {
|
|
263
|
+
type: string;
|
|
264
|
+
additionalProperties: boolean;
|
|
265
|
+
required: string[];
|
|
266
|
+
properties: {
|
|
267
|
+
key: {
|
|
268
|
+
type: string;
|
|
269
|
+
};
|
|
270
|
+
value: {
|
|
271
|
+
type: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
})[];
|
|
279
|
+
};
|
|
176
280
|
target: {
|
|
177
281
|
type: string;
|
|
178
282
|
enum: string[];
|
|
@@ -375,6 +479,110 @@ export declare const BannerBlock: {
|
|
|
375
479
|
};
|
|
376
480
|
};
|
|
377
481
|
};
|
|
482
|
+
events: {
|
|
483
|
+
anyOf: ({
|
|
484
|
+
type: string;
|
|
485
|
+
additionalProperties: boolean;
|
|
486
|
+
required: string[];
|
|
487
|
+
properties: {
|
|
488
|
+
name: {
|
|
489
|
+
type: string;
|
|
490
|
+
};
|
|
491
|
+
type: {
|
|
492
|
+
type: string;
|
|
493
|
+
};
|
|
494
|
+
counters: {
|
|
495
|
+
type: string;
|
|
496
|
+
additionalProperties: boolean;
|
|
497
|
+
required: never[];
|
|
498
|
+
properties: {
|
|
499
|
+
include: {
|
|
500
|
+
type: string;
|
|
501
|
+
items: string;
|
|
502
|
+
};
|
|
503
|
+
exclude: {
|
|
504
|
+
type: string;
|
|
505
|
+
items: string;
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
category: {
|
|
510
|
+
type: string;
|
|
511
|
+
};
|
|
512
|
+
label: {
|
|
513
|
+
type: string;
|
|
514
|
+
};
|
|
515
|
+
params: {
|
|
516
|
+
type: string;
|
|
517
|
+
items: {
|
|
518
|
+
type: string;
|
|
519
|
+
additionalProperties: boolean;
|
|
520
|
+
required: string[];
|
|
521
|
+
properties: {
|
|
522
|
+
key: {
|
|
523
|
+
type: string;
|
|
524
|
+
};
|
|
525
|
+
value: {
|
|
526
|
+
type: string;
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
} | {
|
|
533
|
+
type: string;
|
|
534
|
+
items: {
|
|
535
|
+
type: string;
|
|
536
|
+
additionalProperties: boolean;
|
|
537
|
+
required: string[];
|
|
538
|
+
properties: {
|
|
539
|
+
name: {
|
|
540
|
+
type: string;
|
|
541
|
+
};
|
|
542
|
+
type: {
|
|
543
|
+
type: string;
|
|
544
|
+
};
|
|
545
|
+
counters: {
|
|
546
|
+
type: string;
|
|
547
|
+
additionalProperties: boolean;
|
|
548
|
+
required: never[];
|
|
549
|
+
properties: {
|
|
550
|
+
include: {
|
|
551
|
+
type: string;
|
|
552
|
+
items: string;
|
|
553
|
+
};
|
|
554
|
+
exclude: {
|
|
555
|
+
type: string;
|
|
556
|
+
items: string;
|
|
557
|
+
};
|
|
558
|
+
};
|
|
559
|
+
};
|
|
560
|
+
category: {
|
|
561
|
+
type: string;
|
|
562
|
+
};
|
|
563
|
+
label: {
|
|
564
|
+
type: string;
|
|
565
|
+
};
|
|
566
|
+
params: {
|
|
567
|
+
type: string;
|
|
568
|
+
items: {
|
|
569
|
+
type: string;
|
|
570
|
+
additionalProperties: boolean;
|
|
571
|
+
required: string[];
|
|
572
|
+
properties: {
|
|
573
|
+
key: {
|
|
574
|
+
type: string;
|
|
575
|
+
};
|
|
576
|
+
value: {
|
|
577
|
+
type: string;
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
})[];
|
|
585
|
+
};
|
|
378
586
|
target: {
|
|
379
587
|
type: string;
|
|
380
588
|
enum: string[];
|
|
@@ -578,6 +786,110 @@ export declare const BannerCard: {
|
|
|
578
786
|
};
|
|
579
787
|
};
|
|
580
788
|
};
|
|
789
|
+
events: {
|
|
790
|
+
anyOf: ({
|
|
791
|
+
type: string;
|
|
792
|
+
additionalProperties: boolean;
|
|
793
|
+
required: string[];
|
|
794
|
+
properties: {
|
|
795
|
+
name: {
|
|
796
|
+
type: string;
|
|
797
|
+
};
|
|
798
|
+
type: {
|
|
799
|
+
type: string;
|
|
800
|
+
};
|
|
801
|
+
counters: {
|
|
802
|
+
type: string;
|
|
803
|
+
additionalProperties: boolean;
|
|
804
|
+
required: never[];
|
|
805
|
+
properties: {
|
|
806
|
+
include: {
|
|
807
|
+
type: string;
|
|
808
|
+
items: string;
|
|
809
|
+
};
|
|
810
|
+
exclude: {
|
|
811
|
+
type: string;
|
|
812
|
+
items: string;
|
|
813
|
+
};
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
category: {
|
|
817
|
+
type: string;
|
|
818
|
+
};
|
|
819
|
+
label: {
|
|
820
|
+
type: string;
|
|
821
|
+
};
|
|
822
|
+
params: {
|
|
823
|
+
type: string;
|
|
824
|
+
items: {
|
|
825
|
+
type: string;
|
|
826
|
+
additionalProperties: boolean;
|
|
827
|
+
required: string[];
|
|
828
|
+
properties: {
|
|
829
|
+
key: {
|
|
830
|
+
type: string;
|
|
831
|
+
};
|
|
832
|
+
value: {
|
|
833
|
+
type: string;
|
|
834
|
+
};
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
};
|
|
838
|
+
};
|
|
839
|
+
} | {
|
|
840
|
+
type: string;
|
|
841
|
+
items: {
|
|
842
|
+
type: string;
|
|
843
|
+
additionalProperties: boolean;
|
|
844
|
+
required: string[];
|
|
845
|
+
properties: {
|
|
846
|
+
name: {
|
|
847
|
+
type: string;
|
|
848
|
+
};
|
|
849
|
+
type: {
|
|
850
|
+
type: string;
|
|
851
|
+
};
|
|
852
|
+
counters: {
|
|
853
|
+
type: string;
|
|
854
|
+
additionalProperties: boolean;
|
|
855
|
+
required: never[];
|
|
856
|
+
properties: {
|
|
857
|
+
include: {
|
|
858
|
+
type: string;
|
|
859
|
+
items: string;
|
|
860
|
+
};
|
|
861
|
+
exclude: {
|
|
862
|
+
type: string;
|
|
863
|
+
items: string;
|
|
864
|
+
};
|
|
865
|
+
};
|
|
866
|
+
};
|
|
867
|
+
category: {
|
|
868
|
+
type: string;
|
|
869
|
+
};
|
|
870
|
+
label: {
|
|
871
|
+
type: string;
|
|
872
|
+
};
|
|
873
|
+
params: {
|
|
874
|
+
type: string;
|
|
875
|
+
items: {
|
|
876
|
+
type: string;
|
|
877
|
+
additionalProperties: boolean;
|
|
878
|
+
required: string[];
|
|
879
|
+
properties: {
|
|
880
|
+
key: {
|
|
881
|
+
type: string;
|
|
882
|
+
};
|
|
883
|
+
value: {
|
|
884
|
+
type: string;
|
|
885
|
+
};
|
|
886
|
+
};
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
};
|
|
890
|
+
};
|
|
891
|
+
})[];
|
|
892
|
+
};
|
|
581
893
|
target: {
|
|
582
894
|
type: string;
|
|
583
895
|
enum: string[];
|
|
@@ -426,6 +426,110 @@ export declare const MediaBlock: {
|
|
|
426
426
|
};
|
|
427
427
|
};
|
|
428
428
|
};
|
|
429
|
+
events: {
|
|
430
|
+
anyOf: ({
|
|
431
|
+
type: string;
|
|
432
|
+
additionalProperties: boolean;
|
|
433
|
+
required: string[];
|
|
434
|
+
properties: {
|
|
435
|
+
name: {
|
|
436
|
+
type: string;
|
|
437
|
+
};
|
|
438
|
+
type: {
|
|
439
|
+
type: string;
|
|
440
|
+
};
|
|
441
|
+
counters: {
|
|
442
|
+
type: string;
|
|
443
|
+
additionalProperties: boolean;
|
|
444
|
+
required: never[];
|
|
445
|
+
properties: {
|
|
446
|
+
include: {
|
|
447
|
+
type: string;
|
|
448
|
+
items: string;
|
|
449
|
+
};
|
|
450
|
+
exclude: {
|
|
451
|
+
type: string;
|
|
452
|
+
items: string;
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
};
|
|
456
|
+
category: {
|
|
457
|
+
type: string;
|
|
458
|
+
};
|
|
459
|
+
label: {
|
|
460
|
+
type: string;
|
|
461
|
+
};
|
|
462
|
+
params: {
|
|
463
|
+
type: string;
|
|
464
|
+
items: {
|
|
465
|
+
type: string;
|
|
466
|
+
additionalProperties: boolean;
|
|
467
|
+
required: string[];
|
|
468
|
+
properties: {
|
|
469
|
+
key: {
|
|
470
|
+
type: string;
|
|
471
|
+
};
|
|
472
|
+
value: {
|
|
473
|
+
type: string;
|
|
474
|
+
};
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
} | {
|
|
480
|
+
type: string;
|
|
481
|
+
items: {
|
|
482
|
+
type: string;
|
|
483
|
+
additionalProperties: boolean;
|
|
484
|
+
required: string[];
|
|
485
|
+
properties: {
|
|
486
|
+
name: {
|
|
487
|
+
type: string;
|
|
488
|
+
};
|
|
489
|
+
type: {
|
|
490
|
+
type: string;
|
|
491
|
+
};
|
|
492
|
+
counters: {
|
|
493
|
+
type: string;
|
|
494
|
+
additionalProperties: boolean;
|
|
495
|
+
required: never[];
|
|
496
|
+
properties: {
|
|
497
|
+
include: {
|
|
498
|
+
type: string;
|
|
499
|
+
items: string;
|
|
500
|
+
};
|
|
501
|
+
exclude: {
|
|
502
|
+
type: string;
|
|
503
|
+
items: string;
|
|
504
|
+
};
|
|
505
|
+
};
|
|
506
|
+
};
|
|
507
|
+
category: {
|
|
508
|
+
type: string;
|
|
509
|
+
};
|
|
510
|
+
label: {
|
|
511
|
+
type: string;
|
|
512
|
+
};
|
|
513
|
+
params: {
|
|
514
|
+
type: string;
|
|
515
|
+
items: {
|
|
516
|
+
type: string;
|
|
517
|
+
additionalProperties: boolean;
|
|
518
|
+
required: string[];
|
|
519
|
+
properties: {
|
|
520
|
+
key: {
|
|
521
|
+
type: string;
|
|
522
|
+
};
|
|
523
|
+
value: {
|
|
524
|
+
type: string;
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
};
|
|
531
|
+
})[];
|
|
532
|
+
};
|
|
429
533
|
target: {
|
|
430
534
|
type: string;
|
|
431
535
|
enum: string[];
|
|
@@ -7,19 +7,22 @@ const utils_1 = require("../../utils");
|
|
|
7
7
|
const utils_2 = require("./utils");
|
|
8
8
|
const localeContext_1 = require("../../context/localeContext/localeContext");
|
|
9
9
|
const useMetrika_1 = require("../../hooks/useMetrika");
|
|
10
|
+
const useAnalytics_1 = require("../../hooks/useAnalytics");
|
|
10
11
|
const icons_1 = require("../../icons");
|
|
11
12
|
const b = (0, utils_1.block)('button-block');
|
|
12
13
|
const Button = (props) => {
|
|
13
14
|
const handleMetrika = (0, useMetrika_1.useMetrika)();
|
|
15
|
+
const handleAnalytics = (0, useAnalytics_1.useAnalytics)();
|
|
14
16
|
const { lang, tld } = (0, react_1.useContext)(localeContext_1.LocaleContext);
|
|
15
|
-
const { className, metrikaGoals, pixelEvents, size = 'l', theme = 'normal', url, img, onClick: onClickOrigin, text } = props, rest = tslib_1.__rest(props, ["className", "metrikaGoals", "pixelEvents", "size", "theme", "url", "img", "onClick", "text"]);
|
|
17
|
+
const { className, metrikaGoals, pixelEvents, analyticsEvents, size = 'l', theme = 'normal', url, img, onClick: onClickOrigin, text } = props, rest = tslib_1.__rest(props, ["className", "metrikaGoals", "pixelEvents", "analyticsEvents", "size", "theme", "url", "img", "onClick", "text"]);
|
|
16
18
|
const defaultImgPosition = 'left';
|
|
17
19
|
const onClick = (0, react_1.useCallback)(() => {
|
|
18
20
|
handleMetrika({ metrikaGoals, pixelEvents });
|
|
21
|
+
handleAnalytics(analyticsEvents);
|
|
19
22
|
if (onClickOrigin) {
|
|
20
23
|
onClickOrigin();
|
|
21
24
|
}
|
|
22
|
-
}, [handleMetrika, metrikaGoals, pixelEvents, onClickOrigin]);
|
|
25
|
+
}, [handleMetrika, metrikaGoals, pixelEvents, handleAnalytics, analyticsEvents, onClickOrigin]);
|
|
23
26
|
const buttonImg = img instanceof Object
|
|
24
27
|
? { url: img.url, position: img.position || defaultImgPosition, alt: img.alt }
|
|
25
28
|
: { url: img, position: defaultImgPosition };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React, { ReactElement, HTMLAttributeAnchorTarget } from 'react';
|
|
2
2
|
import { ButtonPixel, CardBaseProps as CardBaseParams, ImageProps, MetrikaGoal, WithChildren } from '../../models';
|
|
3
|
+
import { AnalyticsEvent } from '../../models/common';
|
|
3
4
|
export interface CardBaseProps extends CardBaseParams {
|
|
4
5
|
className?: string;
|
|
5
6
|
bodyClassName?: string;
|
|
@@ -9,6 +10,7 @@ export interface CardBaseProps extends CardBaseParams {
|
|
|
9
10
|
target?: HTMLAttributeAnchorTarget;
|
|
10
11
|
metrikaGoals?: MetrikaGoal;
|
|
11
12
|
pixelEvents?: ButtonPixel;
|
|
13
|
+
analyticsEvents?: AnalyticsEvent | AnalyticsEvent[];
|
|
12
14
|
}
|
|
13
15
|
export interface CardHeaderBaseProps {
|
|
14
16
|
className?: string;
|
|
@@ -7,13 +7,15 @@ const utils_1 = require("../../utils");
|
|
|
7
7
|
const BackgroundImage_1 = tslib_1.__importDefault(require("../BackgroundImage/BackgroundImage"));
|
|
8
8
|
const RouterLink_1 = tslib_1.__importDefault(require("../RouterLink/RouterLink"));
|
|
9
9
|
const useMetrika_1 = require("../../hooks/useMetrika");
|
|
10
|
+
const useAnalytics_1 = require("../../hooks/useAnalytics");
|
|
10
11
|
const b = (0, utils_1.block)('card-base-block');
|
|
11
12
|
const Header = () => null;
|
|
12
13
|
const Content = () => null;
|
|
13
14
|
const Footer = () => null;
|
|
14
15
|
const Layout = (props) => {
|
|
15
|
-
const { className, bodyClassName, metrikaGoals, pixelEvents, contentClassName, children, url, target, border = 'shadow', } = props;
|
|
16
|
+
const { className, bodyClassName, metrikaGoals, pixelEvents, analyticsEvents, contentClassName, children, url, target, border = 'shadow', } = props;
|
|
16
17
|
const handleMetrika = (0, useMetrika_1.useMetrika)();
|
|
18
|
+
const handleAnalytics = (0, useAnalytics_1.useAnalytics)();
|
|
17
19
|
let header, content, footer, image, headerClass, footerClass;
|
|
18
20
|
function handleChild(child) {
|
|
19
21
|
switch (child.type) {
|
|
@@ -46,6 +48,7 @@ const Layout = (props) => {
|
|
|
46
48
|
const fullClassName = b({ border }, className);
|
|
47
49
|
const onClick = () => {
|
|
48
50
|
handleMetrika({ metrikaGoals, pixelEvents });
|
|
51
|
+
handleAnalytics(analyticsEvents);
|
|
49
52
|
};
|
|
50
53
|
return url ? (react_1.default.createElement(RouterLink_1.default, { href: url },
|
|
51
54
|
react_1.default.createElement("a", { href: url, target: target, rel: target === '_blank' ? 'noopener noreferrer' : undefined, className: fullClassName, draggable: false, onDragStart: (e) => e.preventDefault(), onClick: onClick }, cardContent))) : (react_1.default.createElement("div", { className: fullClassName }, cardContent));
|
|
@@ -4,12 +4,15 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const react_1 = tslib_1.__importDefault(require("react"));
|
|
5
5
|
const utils_1 = require("../../utils");
|
|
6
6
|
const useMetrika_1 = require("../../hooks/useMetrika");
|
|
7
|
+
const useAnalytics_1 = require("../../hooks/useAnalytics");
|
|
7
8
|
const b = (0, utils_1.block)('header-breadcrumbs');
|
|
8
9
|
function HeaderBreadcrumbs(props) {
|
|
9
|
-
const { items, metrikaGoals, pixelEvents, theme = 'light', className } = props;
|
|
10
|
+
const { items, metrikaGoals, pixelEvents, analyticsEvents, theme = 'light', className } = props;
|
|
10
11
|
const handleMetrika = (0, useMetrika_1.useMetrika)();
|
|
12
|
+
const handleAnalytics = (0, useAnalytics_1.useAnalytics)();
|
|
11
13
|
const onClick = () => {
|
|
12
14
|
handleMetrika({ metrikaGoals, pixelEvents });
|
|
15
|
+
handleAnalytics(analyticsEvents);
|
|
13
16
|
};
|
|
14
17
|
return (react_1.default.createElement("div", { className: b({ theme }, className) }, items.map((item) => (react_1.default.createElement("div", { className: b('item'), key: item.url },
|
|
15
18
|
react_1.default.createElement("a", { href: item.url, className: b('text'), onClick: onClick }, item.text))))));
|
|
@@ -10,6 +10,7 @@ const BackLink_1 = tslib_1.__importDefault(require("../BackLink/BackLink"));
|
|
|
10
10
|
const localeContext_1 = require("../../context/localeContext/localeContext");
|
|
11
11
|
const locationContext_1 = require("../../context/locationContext/locationContext");
|
|
12
12
|
const useMetrika_1 = require("../../hooks/useMetrika");
|
|
13
|
+
const useAnalytics_1 = require("../../hooks/useAnalytics");
|
|
13
14
|
const b = (0, utils_1.block)('link-block');
|
|
14
15
|
const WORD_JOINER_SYM = '\u200b';
|
|
15
16
|
function getArrowSize(size) {
|
|
@@ -25,14 +26,16 @@ function getArrowSize(size) {
|
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
const LinkBlock = (props) => {
|
|
28
|
-
const { text, url, arrow, metrikaGoals, pixelEvents, theme = 'file-link', colorTheme = 'light', textSize = 'm', className, target, children, } = props;
|
|
29
|
+
const { text, url, arrow, metrikaGoals, pixelEvents, analyticsEvents, theme = 'file-link', colorTheme = 'light', textSize = 'm', className, target, children, } = props;
|
|
29
30
|
const handleMetrika = (0, useMetrika_1.useMetrika)();
|
|
31
|
+
const handleAnalytics = (0, useAnalytics_1.useAnalytics)();
|
|
30
32
|
const { hostname } = (0, react_1.useContext)(locationContext_1.LocationContext);
|
|
31
33
|
const { tld } = (0, react_1.useContext)(localeContext_1.LocaleContext);
|
|
32
34
|
const href = (0, utils_1.setUrlTld)(props.url, tld);
|
|
33
35
|
const defaultTextSize = theme === 'back' ? 'l' : 'm';
|
|
34
36
|
const onClick = () => {
|
|
35
37
|
handleMetrika({ metrikaGoals, pixelEvents });
|
|
38
|
+
handleAnalytics(analyticsEvents);
|
|
36
39
|
};
|
|
37
40
|
const getLinkByType = () => {
|
|
38
41
|
switch (theme) {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PixelEvent } from '../../models';
|
|
2
|
+
import { AnalyticsEvent } from '../../models/common';
|
|
2
3
|
export declare const YANDEX_FORM_ORIGIN = "https://forms.yandex.ru";
|
|
3
4
|
export interface YandexFormProps {
|
|
4
5
|
id: number | string;
|
|
@@ -14,6 +15,7 @@ export interface YandexFormProps {
|
|
|
14
15
|
onLoad?: () => void;
|
|
15
16
|
metrikaGoals?: string | string[];
|
|
16
17
|
pixelEvents?: string | string[] | PixelEvent | PixelEvent[];
|
|
18
|
+
analyticsEvents?: AnalyticsEvent | AnalyticsEvent[];
|
|
17
19
|
}
|
|
18
20
|
declare const YandexForm: (props: YandexFormProps) => JSX.Element;
|
|
19
21
|
export default YandexForm;
|
|
@@ -8,15 +8,17 @@ const localeContext_1 = require("../../context/localeContext");
|
|
|
8
8
|
const mobileContext_1 = require("../../context/mobileContext");
|
|
9
9
|
const utils_1 = require("../../utils");
|
|
10
10
|
const useMetrika_1 = require("../../hooks/useMetrika");
|
|
11
|
+
const useAnalytics_1 = require("../..//hooks/useAnalytics");
|
|
11
12
|
exports.YANDEX_FORM_ORIGIN = 'https://forms.yandex.ru';
|
|
12
13
|
const CONTAINER_ID = 'pc-yandex-form-container';
|
|
13
14
|
const b = (0, utils_1.block)('yandex-form');
|
|
14
15
|
const YandexForm = (props) => {
|
|
15
|
-
const { onLoad, id, params, className, theme, containerId = CONTAINER_ID, headerHeight = constants_1.HEADER_HEIGHT, onSubmit, metrikaGoals, pixelEvents, customFormOrigin, } = props;
|
|
16
|
+
const { onLoad, id, params, className, theme, containerId = CONTAINER_ID, headerHeight = constants_1.HEADER_HEIGHT, onSubmit, metrikaGoals, pixelEvents, analyticsEvents, customFormOrigin, } = props;
|
|
16
17
|
const formContainerRef = (0, react_1.useRef)(null);
|
|
17
18
|
const iframeRef = (0, react_1.useRef)();
|
|
18
19
|
const yaFormOrigin = customFormOrigin || exports.YANDEX_FORM_ORIGIN;
|
|
19
20
|
const handleMetrika = (0, useMetrika_1.useMetrika)();
|
|
21
|
+
const handleAnalytics = (0, useAnalytics_1.useAnalytics)();
|
|
20
22
|
const isMobile = (0, react_1.useContext)(mobileContext_1.MobileContext);
|
|
21
23
|
const locale = (0, react_1.useContext)(localeContext_1.LocaleContext);
|
|
22
24
|
const updateFormIframe = (0, react_1.useCallback)((container) => {
|
|
@@ -57,10 +59,19 @@ const YandexForm = (props) => {
|
|
|
57
59
|
window.scrollBy(0, top - headerHeight);
|
|
58
60
|
}
|
|
59
61
|
handleMetrika({ metrikaGoals, pixelEvents });
|
|
62
|
+
handleAnalytics(analyticsEvents);
|
|
60
63
|
if (onSubmit) {
|
|
61
64
|
onSubmit();
|
|
62
65
|
}
|
|
63
|
-
}, [
|
|
66
|
+
}, [
|
|
67
|
+
handleMetrika,
|
|
68
|
+
metrikaGoals,
|
|
69
|
+
pixelEvents,
|
|
70
|
+
handleAnalytics,
|
|
71
|
+
analyticsEvents,
|
|
72
|
+
onSubmit,
|
|
73
|
+
headerHeight,
|
|
74
|
+
]);
|
|
64
75
|
const handleMessage = (0, react_1.useCallback)(({ origin, data }) => {
|
|
65
76
|
if (origin !== yaFormOrigin) {
|
|
66
77
|
return;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { MetrikaContextProps } from '../../context/metrikaContext';
|
|
2
|
+
import { AnalyticsContextProps } from '../../context/analyticsContext';
|
|
2
3
|
import { ProjectSettingsContextProps } from '../../context/projectSettingsContext';
|
|
3
4
|
import { SSRContextProps } from '../../context/ssrContext';
|
|
4
5
|
import { LocaleContextProps } from '../../context/localeContext';
|
|
@@ -13,5 +14,6 @@ export interface PageConstructorProviderProps {
|
|
|
13
14
|
ssrConfig?: SSRContextProps;
|
|
14
15
|
theme?: ConstructorTheme;
|
|
15
16
|
projectSettings?: ProjectSettingsContextProps;
|
|
17
|
+
analytics?: AnalyticsContextProps;
|
|
16
18
|
}
|
|
17
19
|
export declare const PageConstructorProvider: (props: WithChildren<PageConstructorProviderProps>) => JSX.Element;
|
|
@@ -4,6 +4,7 @@ exports.PageConstructorProvider = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const react_1 = tslib_1.__importStar(require("react"));
|
|
6
6
|
const metrikaContext_1 = require("../../context/metrikaContext");
|
|
7
|
+
const analyticsContext_1 = require("../../context/analyticsContext");
|
|
7
8
|
const mobileContext_1 = require("../../context/mobileContext");
|
|
8
9
|
const projectSettingsContext_1 = require("../../context/projectSettingsContext");
|
|
9
10
|
const ssrContext_1 = require("../../context/ssrContext");
|
|
@@ -12,7 +13,7 @@ const locationContext_1 = require("../../context/locationContext");
|
|
|
12
13
|
const ThemeValueContext_1 = require("../../context/theme/ThemeValueContext");
|
|
13
14
|
const constants_1 = require("../../components/constants");
|
|
14
15
|
const PageConstructorProvider = (props) => {
|
|
15
|
-
const { isMobile, locale = {}, location = {}, metrika = {}, ssrConfig = {}, projectSettings = {}, theme = constants_1.DEFAULT_THEME, children, } = props;
|
|
16
|
+
const { isMobile, locale = {}, location = {}, metrika = {}, analytics = {}, ssrConfig = {}, projectSettings = {}, theme = constants_1.DEFAULT_THEME, children, } = props;
|
|
16
17
|
/* eslint-disable react/jsx-key */
|
|
17
18
|
const context = [
|
|
18
19
|
react_1.default.createElement(ThemeValueContext_1.ThemeValueContext.Provider, { value: { themeValue: theme } }),
|
|
@@ -21,6 +22,7 @@ const PageConstructorProvider = (props) => {
|
|
|
21
22
|
react_1.default.createElement(locationContext_1.LocationContext.Provider, { value: location }),
|
|
22
23
|
react_1.default.createElement(mobileContext_1.MobileContext.Provider, { value: Boolean(isMobile) }),
|
|
23
24
|
react_1.default.createElement(metrikaContext_1.MetrikaContext.Provider, { value: metrika }),
|
|
25
|
+
react_1.default.createElement(analyticsContext_1.AnalyticsContext.Provider, { value: analytics }),
|
|
24
26
|
react_1.default.createElement(ssrContext_1.SSRContext.Provider, { value: { isServer: ssrConfig === null || ssrConfig === void 0 ? void 0 : ssrConfig.isServer } }),
|
|
25
27
|
].reduceRight((prev, provider) => react_1.default.cloneElement(provider, {}, prev), children);
|
|
26
28
|
/* eslint-enable react/jsx-key */
|