mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-15 10:27:31 +00:00
b0fa66d537
This reverts commit 7856f79d11
.
Reason for revert: This version of the instrument isn't in use. It was
enabled on the Beta Cluster but then superseded in I39adbce1f2c8.
Change-Id: I273a6f21a881f69298d6219e435639ced0fe8afe
93 lines
2.2 KiB
JavaScript
93 lines
2.2 KiB
JavaScript
var drawers = require( './drawers.js' );
|
|
|
|
/*
|
|
* Warn people if they're trying to switch to desktop but have cookies disabled.
|
|
*/
|
|
module.exports = function ( amcOutreach, currentPage ) {
|
|
/**
|
|
* Checks whether cookies are enabled
|
|
*
|
|
* @method
|
|
* @ignore
|
|
* @return {boolean} Whether cookies are enabled
|
|
*/
|
|
function cookiesEnabled() {
|
|
// If session cookie already set, return true
|
|
if ( mw.cookie.get( 'mf_testcookie' ) === 'test_value' ) {
|
|
return true;
|
|
// Otherwise try to set mf_testcookie and return true if it was set
|
|
} else {
|
|
mw.cookie.set( 'mf_testcookie', 'test_value', {
|
|
path: '/'
|
|
} );
|
|
return mw.cookie.get( 'mf_testcookie' ) === 'test_value';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* An event handler for the toggle to desktop link.
|
|
* If cookies are enabled it will redirect you to desktop site as described in
|
|
* the link href associated with the handler.
|
|
* If cookies are not enabled, show a toast and die.
|
|
*
|
|
* @method
|
|
* @ignore
|
|
* @return {boolean|undefined}
|
|
*/
|
|
function desktopViewClick() {
|
|
if ( !cookiesEnabled() ) {
|
|
mw.notify(
|
|
mw.msg( 'mobile-frontend-cookies-required' ),
|
|
{ type: 'error' }
|
|
);
|
|
// Prevent default action
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @method
|
|
* @ignore
|
|
* @param {jQuery.Event} ev
|
|
* @return {boolean|undefined}
|
|
*/
|
|
function amcDesktopClickHandler( ev ) {
|
|
var
|
|
self = this,
|
|
executeWrappedEvent = function () {
|
|
if ( desktopViewClick() === false ) {
|
|
return false;
|
|
}
|
|
|
|
window.location = self.href;
|
|
},
|
|
amcCampaign = amcOutreach.loadCampaign(),
|
|
onDismiss = function () {
|
|
executeWrappedEvent();
|
|
},
|
|
drawer = amcCampaign.showIfEligible(
|
|
amcOutreach.ACTIONS.onDesktopLink,
|
|
onDismiss,
|
|
currentPage.title
|
|
);
|
|
|
|
if ( drawer ) {
|
|
ev.preventDefault();
|
|
// stopPropagation is needed to prevent drawer from immediately closing
|
|
// when shown (drawers.js adds a click event to window when drawer is
|
|
// shown
|
|
ev.stopPropagation();
|
|
|
|
drawers.displayDrawer( drawer, {} );
|
|
drawers.lockScroll();
|
|
|
|
return;
|
|
}
|
|
|
|
return executeWrappedEvent();
|
|
}
|
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
|
$( '#mw-mf-display-toggle' ).on( 'click', amcDesktopClickHandler );
|
|
};
|