aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/heap.ts
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-16 02:43:42 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-16 02:43:42 +0800
commit61f227e123218ba76a7fdf7fc2ee89171c2bf16c (patch)
treed821f01c41dd58e03b093a40930748dac51c2148 /packages/instant/src/util/heap.ts
parent20ed4fbbd46f359ca1436b2d3b9d17527c01df54 (diff)
downloaddexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.tar
dexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.tar.gz
dexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.tar.bz2
dexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.tar.lz
dexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.tar.xz
dexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.tar.zst
dexon-sol-tools-61f227e123218ba76a7fdf7fc2ee89171c2bf16c.zip
feat(instant): Heap middleware and first tracking events
Diffstat (limited to 'packages/instant/src/util/heap.ts')
-rw-r--r--packages/instant/src/util/heap.ts13
1 files changed, 6 insertions, 7 deletions
diff --git a/packages/instant/src/util/heap.ts b/packages/instant/src/util/heap.ts
index 399ac3f6f..2f2c221b1 100644
--- a/packages/instant/src/util/heap.ts
+++ b/packages/instant/src/util/heap.ts
@@ -20,8 +20,13 @@ interface ModifiedWindow {
const getWindow = (): ModifiedWindow => {
return window as ModifiedWindow;
};
-// Typescript-compatible version of https://docs.heapanalytics.com/docs/installation
+
const setupZeroExInstantHeap = () => {
+ const curWindow = getWindow();
+ // Set property to specify that this is zeroEx's heap
+ curWindow.zeroExInstantLoadedHeap = true;
+
+ // Typescript-compatible version of https://docs.heapanalytics.com/docs/installation
/* tslint:disable */
((window as any).heap = (window as any).heap || []),
((window as any).heap.load = function(e: any, t: any) {
@@ -60,9 +65,6 @@ const setupZeroExInstantHeap = () => {
(window as any).heap.load(HEAP_ANALYTICS_DEVELOPMENT_APP_ID);
/* tslint:enable */
- const curWindow = getWindow();
- // Set property to specify that this is zeroEx's heap
- curWindow.zeroExInstantLoadedHeap = true;
return curWindow.heap as HeapAnalytics;
};
@@ -71,17 +73,14 @@ export const heapUtil = {
const curWindow = getWindow();
const hasOtherExistingHeapIntegration = curWindow.heap && !curWindow.zeroExInstantLoadedHeap;
if (hasOtherExistingHeapIntegration) {
- logUtils.log('Heap integration already exists');
return null;
}
const zeroExInstantHeapIntegration = curWindow.zeroExInstantLoadedHeap && curWindow.heap;
if (zeroExInstantHeapIntegration) {
- logUtils.log('Using existing 0x instant heap');
return zeroExInstantHeapIntegration;
}
- logUtils.log('Setting up heap');
return setupZeroExInstantHeap();
},
};