Skip to content

Commit

Permalink
Allow for usage of snowplow callback without this
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-el committed Jan 22, 2025
1 parent 5f01e36 commit 67cb901
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 0 deletions.
5 changes: 5 additions & 0 deletions trackers/javascript-tracker/src/in_queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,11 @@ export function InQueueManager(functionName: string, asyncQueue: Array<unknown>)
// Strip GlobalSnowplowNamespace from ID
fnTrackers[tracker.id.replace(`${functionName}_`, '')] = tracker;
}

// Append the `fnTrackers` object to the parameterArray, to allow it to be
// accessed as the final argument in the callback, useful in environments that don't support `this` (GTM)
Array.prototype.push.call(parameterArray, fnTrackers);

input.apply(fnTrackers, parameterArray);
} catch (ex) {
LOG.error('Tracker callback failed', ex);
Expand Down
82 changes: 82 additions & 0 deletions trackers/javascript-tracker/test/unit/in_queue.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,34 @@ describe('InQueueManager', () => {
asyncQueue.push(['updatePageActivity:firstTracker;secondTracker']);
expect(output).toEqual(29);
});
});

describe('Snowplow callback', () => {
const asyncQueue = InQueueManager('callback', []);
const mockTrackers: Record<string, any> = {};

let userId: string | null | undefined;

const newTracker = (trackerId: string): any => {
return {
id: trackerId,
setUserId: function (s?: string | null) {
userId = s;
},
getUserId: function () {
return userId;
},
};
};

beforeEach(() => {
const tracker = newTracker('sp1');
mockTrackers.sp1 = tracker;
});

afterEach(() => {
delete mockTrackers.sp1;
});

it('Execute a user-defined custom callback', () => {
let callbackExecuted = false;
Expand All @@ -183,4 +211,58 @@ describe('InQueueManager', () => {
]);
}).not.toThrow();
});

it('A custom callback with arguments provided will pass those arguments into the callback parameters', () => {
asyncQueue.push([
function (a: number, b: number) {
expect(a).toEqual(1);
expect(b).toEqual(2);
},
1,
2,
]);
});

it('The callback will be passed the tracker dictionary as the final argument', () => {
asyncQueue.push([
function (a: number, b: number, trackers: Record<string, any>) {
expect(a).toEqual(1);
expect(b).toEqual(2);
expect(trackers.sp1).toEqual(mockTrackers.callback_sp1);
},
1,
2,
]);
});

it('The callback will be passed the tracker dictionary as the argument if there is only one parameter', () => {
asyncQueue.push([
function (trackers: Record<string, any>) {
const tracker = trackers.sp1;
expect(tracker).toEqual(mockTrackers.callback_sp1);
},
]);
});

it('The callback can access the tracker dictionary using both `this` and the first argument', () => {
asyncQueue.push([
function (this: any, trackers: Record<string, any>) {
expect(this.sp1).toEqual(mockTrackers.callback_sp1);
expect(trackers.sp1).toEqual(mockTrackers.callback_sp1);
},
]);
});

it('The callback can access the tracker dictionary using both `this` and the last argument, along with arguments', () => {
asyncQueue.push([
function (this: any, a: number, b: number, trackers: Record<string, any>) {
expect(this.sp1).toEqual(mockTrackers.callback_sp1);
expect(a).toEqual(1);
expect(b).toEqual(2);
expect(trackers.sp1).toEqual(mockTrackers.callback_sp1);
},
1,
2,
]);
});
});

0 comments on commit 67cb901

Please sign in to comment.