mediawiki-extensions-Popups/src/index.js

272 lines
8 KiB
JavaScript
Raw Normal View History

/**
* @module popups
*/
import * as Redux from 'redux';
import * as ReduxThunk from 'redux-thunk';
import createGateway from './gateway';
import createUserSettings from './userSettings';
import createPreviewBehavior from './previewBehavior';
import createSettingsDialogRenderer from './ui/settingsDialogRenderer';
import registerChangeListener from './changeListener';
import createIsEnabled from './isEnabled';
import { fromElement as titleFromElement } from './title';
import { init as rendererInit } from './ui/renderer';
import createExperiments from './experiments';
import { isEnabled as isStatsvEnabled } from './instrumentation/statsv';
import { isEnabled as isEventLoggingEnabled }
from './instrumentation/eventLogging';
import changeListeners from './changeListeners';
import * as actions from './actions';
import reducers from './reducers';
import createMediaWikiPopupsObject from './integrations/mwpopups';
import getUserBucket from './getUserBucket';
const mw = mediaWiki,
$ = jQuery,
BLACKLISTED_LINKS = [
'.extiw',
'.image',
'.new',
'.internal',
'.external',
'.oo-ui-buttonedElement-button',
'.cancelLink a'
];
/**
* @typedef {Function} EventTracker
*
* An analytics event tracker, i.e. `mw.track`.
*
* @param {String} topic
* @param {Object} data
*
* @global
*/
/**
* Gets the appropriate analytics event tracker for logging metrics to StatsD
* via [the "StatsD timers and counters" analytics event protocol][0].
*
* If logging metrics to StatsD is enabled for the duration of the user's
* session, then the appriopriate function is `mw.track`; otherwise it's
* `$.noop`.
*
* [0]: https://github.com/wikimedia/mediawiki-extensions-WikimediaEvents/blob/29c864a0/modules/ext.wikimediaEvents.statsd.js
*
* @param {Object} user
* @param {Object} config
* @param {Experiments} experiments
* @return {EventTracker}
*/
function getStatsvTracker( user, config, experiments ) {
return isStatsvEnabled( user, config, experiments ) ? mw.track : $.noop;
}
/**
* Gets the appropriate analytics event tracker for logging virtual pageviews.
*
* @param {Object} config
* @return {EventTracker}
*/
function getPageViewTracker( config ) {
return config.get( 'wgPopupsVirtualPageViews' ) ? mw.track : $.noop;
}
/**
* Gets the appropriate analytics event tracker for logging EventLogging events
* via [the "EventLogging subscriber" analytics event protocol][0].
*
* If logging EventLogging events is enabled for the duration of the user's
* session, then the appriopriate function is `mw.track`; otherwise it's
* `$.noop`.
*
* [0]: https://github.com/wikimedia/mediawiki-extensions-EventLogging/blob/d1409759/modules/ext.eventLogging.subscriber.js
*
* @param {Object} user
* @param {Object} config
* @param {String} bucket for user
* @param {Window} window
* @return {EventTracker}
*/
function getEventLoggingTracker( user, config, bucket, window ) {
return isEventLoggingEnabled(
user,
config,
bucket,
window
) ? mw.track : $.noop;
}
/**
* Returns timestamp since the beginning of the current document's origin
* as reported by `window.performance.now()`. See
* https://developer.mozilla.org/en-US/docs/Web/API/DOMHighResTimeStamp#The_time_origin
* for a detailed explanation of the time origin.
*
* The value returned by this function is used for [the `timestamp` property
* of the Schema:Popups events sent by the EventLogging
* instrumentation](./src/changeListeners/eventLogging.js).
*
* @return {number|null}
*/
function getCurrentTimestamp() {
if ( window.performance && window.performance.now ) {
// return an integer; see T182000
return Math.round( window.performance.now() );
}
return null;
}
/**
* Subscribes the registered change listeners to the
* [store](http://redux.js.org/docs/api/Store.html#store).
*
* @param {Redux.Store} store
* @param {Object} actions
* @param {UserSettings} userSettings
* @param {Function} settingsDialog
* @param {PreviewBehavior} previewBehavior
* @param {EventTracker} statsvTracker
* @param {EventTracker} eventLoggingTracker
* @param {EventTracker} pageviewTracker
* @param {Function} getCurrentTimestamp
*/
function registerChangeListeners(
store, actions, userSettings, settingsDialog, previewBehavior,
statsvTracker, eventLoggingTracker, pageviewTracker, getCurrentTimestamp
) {
registerChangeListener( store, changeListeners.footerLink( actions ) );
registerChangeListener( store, changeListeners.linkTitle() );
registerChangeListener( store, changeListeners.render( previewBehavior ) );
registerChangeListener(
store, changeListeners.statsv( actions, statsvTracker ) );
registerChangeListener(
store, changeListeners.syncUserSettings( userSettings ) );
registerChangeListener(
store, changeListeners.settings( actions, settingsDialog ) );
registerChangeListener(
store,
changeListeners.eventLogging(
actions, eventLoggingTracker, getCurrentTimestamp
) );
registerChangeListener( store,
changeListeners.pageviews( actions, pageviewTracker )
);
}
/*
* Initialize the application by:
* 1. Creating the state store
* 2. Binding the actions to such store
* 3. Trigger the boot action to bootstrap the system
* 4. When the page content is ready:
* - Process the eligible links for page previews
* - Initialize the renderer
* - Bind hover and click events to the eligible links to trigger actions
*/
mw.requestIdleCallback( function () {
let compose = Redux.compose;
const
// So-called "services".
generateToken = mw.user.generateRandomSessionId,
gateway = createGateway( mw.config );
const userBucket = getUserBucket(
mw.experiments,
mw.config.get( 'wgPopupsAnonsExperimentalGroupSize' ),
mw.user.sessionId() );
const userSettings = createUserSettings( mw.storage );
const settingsDialog = createSettingsDialogRenderer();
const experiments = createExperiments( mw.experiments );
const statsvTracker = getStatsvTracker( mw.user, mw.config, experiments );
// Virtual pageviews are always tracked.
const pageviewTracker = getPageViewTracker( mw.config );
const eventLoggingTracker = getEventLoggingTracker(
mw.user,
mw.config,
userBucket,
window
);
const isEnabled =
createIsEnabled( mw.user, userSettings, mw.config, userBucket );
// If debug mode is enabled, then enable Redux DevTools.
if ( mw.config.get( 'debug' ) === true ) {
// eslint-disable-next-line no-underscore-dangle
compose = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
}
const store = Redux.createStore(
Redux.combineReducers( reducers ),
compose( Redux.applyMiddleware(
ReduxThunk.default
) )
);
const boundActions = Redux.bindActionCreators( actions, store.dispatch );
const previewBehavior =
createPreviewBehavior( mw.config, mw.user, boundActions );
registerChangeListeners(
store, boundActions, userSettings, settingsDialog,
previewBehavior, statsvTracker, eventLoggingTracker,
pageviewTracker,
getCurrentTimestamp
);
boundActions.boot(
isEnabled,
mw.user,
userSettings,
generateToken,
mw.config,
window.location.href
);
/*
* Register external interface exposing popups internals so that other
* extensions can query it (T171287)
*/
mw.popups = createMediaWikiPopupsObject( store );
mw.hook( 'wikipage.content' ).add( function ( $container ) {
const invalidLinksSelector = BLACKLISTED_LINKS.join( ', ' ),
validLinkSelector = `a[href][title]:not(${ invalidLinksSelector })`;
rendererInit();
$container
.on( 'mouseover keyup', validLinkSelector, function ( event ) {
const mwTitle = titleFromElement( this, mw.config );
if ( mwTitle ) {
boundActions.linkDwell(
mwTitle, this, event, gateway, generateToken
);
}
} )
.on( 'mouseout blur', validLinkSelector, function () {
const mwTitle = titleFromElement( this, mw.config );
if ( mwTitle ) {
boundActions.abandon( this );
}
} )
.on( 'click', validLinkSelector, function () {
const mwTitle = titleFromElement( this, mw.config );
if ( mwTitle ) {
boundActions.linkClick( this );
}
} );
} );
} );
window.Redux = Redux;
window.ReduxThunk = ReduxThunk;