mediawiki-skins-MinervaNeue/resources/skins.minerva.scripts/ctaDrawers.js
Sergio Gimeno 73fe281d50 Hooks: change wikipedia is made for you warning to a notice message
The message box is changed from warning to
notice for the following messages:
 - mobile-frontend-generic-login-new
 - mobile-frontend-watchlist-purpose
 - mobile-frontend-watchlist-signup-action

Bug: T366127
Depends-On: I358ee59a1a0b7a5bb94e66bca9a2437517f40141
Change-Id: Ifa4418cbecda38011a6ee4d09c03db3ded7a9eb9
2024-08-01 13:22:36 +02:00

91 lines
3 KiB
JavaScript

const mobile = require( 'mobile.startup' );
const drawers = require( './drawers.js' );
const CtaDrawer = mobile.CtaDrawer;
/**
* Initialize red links call-to-action
*
* Upon clicking a red link, show an interstitial CTA explaining that the page doesn't exist
* with a button to create it, rather than directly navigate to the edit form.
*
* Special case T201339: following a red link to a user or user talk page should not prompt for
* its creation. The reasoning is that user pages should be created by their owners and it's far
* more common that non-owners follow a user's red linked user page to consider their
* contributions, account age, or other activity.
*
* For example, a user adds a section to a Talk page and signs their contribution (which creates
* a link to their user page whether exists or not). If the user page does not exist, that link
* will be red. In both cases, another user follows this link, not to edit create a page for
* that user but to obtain information on them.
*
* @private
* @param {jQuery} $redLinks
*/
function initRedlinksCta( $redLinks ) {
$redLinks.on( 'click', function ( ev ) {
const drawerOptions = {
progressiveButton: {
progressive: true,
label: mw.msg( 'mobile-frontend-editor-redlink-create' ),
href: $( this ).attr( 'href' )
},
actionAnchor: {
progressive: true,
label: mw.msg( 'mobile-frontend-editor-redlink-leave' ),
additionalClassNames: 'cancel'
},
onBeforeHide: drawers.discardDrawer,
content: mw.msg( 'mobile-frontend-editor-redlink-explain' )
},
drawer = CtaDrawer( drawerOptions );
// use preventDefault() and not return false to close other open
// drawers or anything else.
ev.preventDefault();
ev.stopPropagation();
drawers.displayDrawer( drawer, { hideOnScroll: true } );
} );
}
/**
* A CtaDrawer should show for anonymous users.
*
* @param {jQuery} $watchstar
* @ignore
*/
function initWatchstarCta( $watchstar ) {
let watchCtaDrawer;
// show a CTA for anonymous users
$watchstar.on( 'click', ( ev ) => {
if ( !watchCtaDrawer ) {
watchCtaDrawer = CtaDrawer( {
content: mw.msg( 'minerva-watchlist-cta' ),
queryParams: {
notice: 'mobile-frontend-watchlist-purpose',
campaign: 'mobile_watchPageActionCta',
returntoquery: 'article_action=watch'
},
onBeforeHide: drawers.discardDrawer,
signupQueryParams: {
notice: 'mobile-frontend-watchlist-signup-action'
}
} );
}
// If it's already shown dont display again
// (if user is clicking fast since we are reusing the drawer
// this might result in the drawer opening and closing)
if ( !watchCtaDrawer.$el[ 0 ].parentNode ) {
drawers.displayDrawer( watchCtaDrawer, { hideOnScroll: true } );
}
// prevent default to stop the user
// being navigated to Special:UserLogin
ev.preventDefault();
// Don't stopProgation, as we want WikimediaEvents to log clicks to this.
} );
}
module.exports = {
initWatchstarCta: initWatchstarCta,
initRedlinksCta: initRedlinksCta
};