mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
f1e0a73abd
See also: I8db8d3c4eb2bb396195c42073a95ac8530fe869d Change-Id: I3cb6b9cff91a927b03d30e5f3fec9984cf3f790b
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
( function ( mw ) {
|
|
'use strict';
|
|
|
|
mw.echo = {
|
|
|
|
clickThroughEnabled: mw.config.get( 'wgEchoConfig' ).eventlogging.EchoInteraction.enabled,
|
|
|
|
/**
|
|
* Set up event logging for individual notification
|
|
* @param {JQuery} notification JQuery representing a single notification
|
|
* @param {string} context 'flyout'/'archive'
|
|
* @param {boolean} mobile True if interaction was on a mobile device
|
|
*/
|
|
setupNotificationLogging: function ( notification, context, mobile ) {
|
|
var eventId = +notification.attr( 'data-notification-event' ),
|
|
eventType = notification.attr( 'data-notification-type' );
|
|
|
|
// Check if Schema:EchoInteraction is enabled
|
|
if ( !mw.echo.clickThroughEnabled ) {
|
|
return;
|
|
}
|
|
// Log the impression
|
|
mw.echo.logInteraction( 'notification-impression', context, eventId, eventType, mobile );
|
|
// Set up logging for clickthrough
|
|
notification.find( 'a' ).click( function () {
|
|
mw.echo.logInteraction( 'notification-link-click', context, eventId, eventType, mobile );
|
|
} );
|
|
},
|
|
|
|
/**
|
|
* Log all Echo interaction related events
|
|
* @param {string} clickAction The interaction
|
|
* @param {string} context 'flyout'/'archive' or undefined for the badge
|
|
* @param {int} eventId Notification event id
|
|
* @param {string} eventType notification type
|
|
* @param {boolean} mobile True if interaction was on a mobile device
|
|
*/
|
|
logInteraction: function ( action, context, eventId, eventType, mobile ) {
|
|
// Check if Schema:EchoInteraction is enabled
|
|
if ( !mw.echo.clickThroughEnabled ) {
|
|
return;
|
|
}
|
|
|
|
var myEvt = {
|
|
action: action
|
|
};
|
|
|
|
// All the fields below are optional
|
|
if ( context ) {
|
|
myEvt.context = context;
|
|
}
|
|
if ( eventId ) {
|
|
myEvt.eventId = eventId;
|
|
}
|
|
if ( eventType ) {
|
|
myEvt.notificationType = eventType;
|
|
}
|
|
if ( mobile ) {
|
|
myEvt.mobile = mobile;
|
|
}
|
|
mw.loader.using( 'ext.eventLogging', function() {
|
|
mw.eventLog.logEvent( 'EchoInteraction', myEvt );
|
|
} );
|
|
}
|
|
|
|
};
|
|
|
|
if ( mw.echo.clickThroughEnabled ) {
|
|
mw.loader.using( 'ext.eventLogging', function() {
|
|
mw.eventLog.setDefaults( 'EchoInteraction', {
|
|
version: mw.config.get( 'wgEchoConfig' ).version,
|
|
userId: +mw.config.get( 'wgUserId' ),
|
|
editCount: +mw.config.get( 'wgUserEditCount' )
|
|
} );
|
|
} );
|
|
}
|
|
} )( mediaWiki );
|