2024-01-12 22:30:44 +00:00
|
|
|
const { TYPE_REFERENCE } = require( './constants.js' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @module isReferencePreviewsEnabled
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given the global state of the application, creates a function that gets
|
|
|
|
* whether or not the user should have Reference Previews enabled.
|
|
|
|
*
|
|
|
|
* @param {mw.user} user The `mw.user` singleton instance
|
|
|
|
* @param {Function} isPreviewTypeEnabled check whether preview has been disabled or enabled.
|
|
|
|
* @param {mw.Map} config
|
|
|
|
*
|
|
|
|
* @return {boolean|null} Null when there is no way the popup type can be enabled at run-time.
|
|
|
|
*/
|
|
|
|
function isReferencePreviewsEnabled( user, isPreviewTypeEnabled, config ) {
|
|
|
|
// TODO: This and the final `mw.user.options` check are currently redundant. Only this here
|
2024-04-15 08:29:38 +00:00
|
|
|
// should be removed when the wgCiteReferencePreviews feature flag is not needed any more.
|
|
|
|
if ( !config.get( 'wgCiteReferencePreviews' ) ) {
|
2024-01-12 22:30:44 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// T265872: Unavailable when in conflict with (one of the) reference tooltips gadgets.
|
2024-04-15 08:29:38 +00:00
|
|
|
if ( config.get( 'wgCiteReferencePreviewsConflictsWithRefTooltipsGadget' ) ||
|
2024-01-12 22:30:44 +00:00
|
|
|
config.get( 'wgPopupsConflictsWithNavPopupGadget' ) ||
|
|
|
|
// T243822: Temporarily disabled in the mobile skin
|
|
|
|
config.get( 'skin' ) === 'minerva'
|
|
|
|
) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( user.isAnon() ) {
|
|
|
|
return isPreviewTypeEnabled( TYPE_REFERENCE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registered users never can enable popup types at run-time.
|
|
|
|
return user.options.get( 'popups-reference-previews' ) === '1' ? true : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = isReferencePreviewsEnabled;
|