2019-12-18 21:15:26 +00:00
|
|
|
/**
|
|
|
|
* Initialise code that requires MobileFrontend.
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2019-12-18 21:15:26 +00:00
|
|
|
* @todo anything that doesn't require MobileFrontend should be moved into ./setup.js
|
|
|
|
* @todo anything that can be rewritten without MobileFrontend (possibly using new frontend
|
|
|
|
* framework or upstreamed from MobileFrotend to core) should be and moved into ./setup.js
|
|
|
|
* @todo anything left should be moved to MobileFrontend extension and removed from here.
|
|
|
|
*/
|
2021-11-01 21:00:19 +00:00
|
|
|
var HISTORY_ICON_CLASS = 'mw-ui-icon-wikimedia-history-base20';
|
|
|
|
var HISTORY_ARROW_CLASS = 'mw-ui-icon-mf-expand-gray';
|
2019-12-18 21:15:26 +00:00
|
|
|
module.exports = function () {
|
2017-10-27 17:09:46 +00:00
|
|
|
var
|
2019-12-18 21:15:26 +00:00
|
|
|
// eslint-disable-next-line no-restricted-properties
|
|
|
|
mobile = mw.mobileFrontend.require( 'mobile.startup' ),
|
2019-02-08 19:29:14 +00:00
|
|
|
PageGateway = mobile.PageGateway,
|
2020-07-17 07:48:17 +00:00
|
|
|
LanguageInfo = mobile.LanguageInfo,
|
2019-09-18 23:07:21 +00:00
|
|
|
permissions = mw.config.get( 'wgMinervaPermissions' ) || {},
|
2019-02-07 16:34:18 +00:00
|
|
|
toast = mobile.toast,
|
2019-08-30 00:02:35 +00:00
|
|
|
Icon = mobile.Icon,
|
2019-02-07 16:34:18 +00:00
|
|
|
time = mobile.time,
|
2019-07-02 21:10:10 +00:00
|
|
|
preInit = require( './preInit.js' ),
|
|
|
|
mobileRedirect = require( './mobileRedirect.js' ),
|
|
|
|
search = require( './search.js' ),
|
|
|
|
references = require( './references.js' ),
|
|
|
|
TitleUtil = require( './TitleUtil.js' ),
|
|
|
|
issues = require( './page-issues/index.js' ),
|
|
|
|
Toolbar = require( './Toolbar.js' ),
|
2021-10-19 18:45:43 +00:00
|
|
|
ToggleList = require( '../../includes/Skins/ToggleList/ToggleList.js' ),
|
2019-06-25 01:10:51 +00:00
|
|
|
TabScroll = require( './TabScroll.js' ),
|
2017-07-12 15:12:40 +00:00
|
|
|
router = require( 'mediawiki.router' ),
|
2019-09-19 21:19:07 +00:00
|
|
|
ctaDrawers = require( './ctaDrawers.js' ),
|
2020-01-13 23:34:58 +00:00
|
|
|
drawers = require( './drawers.js' ),
|
2019-07-19 19:13:57 +00:00
|
|
|
desktopMMV = mw.loader.getState( 'mmv.bootstrap' ),
|
2019-09-06 20:32:01 +00:00
|
|
|
overlayManager = mobile.OverlayManager.getSingleton(),
|
2019-07-11 00:56:04 +00:00
|
|
|
currentPage = mobile.currentPage(),
|
|
|
|
currentPageHTMLParser = mobile.currentPageHTMLParser(),
|
|
|
|
$redLinks = currentPageHTMLParser.getRedLinks(),
|
2018-07-26 10:47:05 +00:00
|
|
|
api = new mw.Api(),
|
2019-03-04 22:19:33 +00:00
|
|
|
eventBus = mobile.eventBusSingleton,
|
|
|
|
namespaceIDs = mw.config.get( 'wgNamespaceIds' );
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Event handler for clicking on an image thumbnail
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
|
|
|
* @param {jQuery.Event} ev
|
2017-07-12 15:12:40 +00:00
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function onClickImage( ev ) {
|
2018-11-19 20:00:47 +00:00
|
|
|
// Do not interfere with non-left clicks or if modifier keys are pressed.
|
|
|
|
if ( ( ev.button !== 0 && ev.which !== 1 ) ||
|
|
|
|
ev.altKey || ev.ctrlKey || ev.shiftKey || ev.metaKey ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
ev.preventDefault();
|
2018-03-05 20:42:00 +00:00
|
|
|
routeThumbnail( $( this ).data( 'thumb' ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-06-02 21:21:44 +00:00
|
|
|
* @param {jQuery.Element} thumbnail
|
2018-03-05 20:42:00 +00:00
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function routeThumbnail( thumbnail ) {
|
|
|
|
router.navigate( '#/media/' + encodeURIComponent( thumbnail.getFileName() ) );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add routes to images and handle clicks
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @method
|
|
|
|
* @ignore
|
2020-06-02 21:21:44 +00:00
|
|
|
* @param {jQuery.Object} [$container] Optional container to search within
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
2019-04-19 17:36:50 +00:00
|
|
|
function initMediaViewer( $container ) {
|
2019-07-11 00:56:04 +00:00
|
|
|
currentPageHTMLParser.getThumbnails( $container ).forEach( function ( thumb ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
thumb.$el.off().data( 'thumb', thumb ).on( 'click', onClickImage );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-02-22 17:59:56 +00:00
|
|
|
* Hijack the Special:Languages link and replace it with a trigger to a languageOverlay
|
2017-07-12 15:12:40 +00:00
|
|
|
* that displays the same data
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function initButton() {
|
|
|
|
// This catches language selectors in page actions and in secondary actions (e.g. Main Page)
|
2019-04-03 23:32:18 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
2017-07-12 15:12:40 +00:00
|
|
|
var $primaryBtn = $( '.language-selector' );
|
|
|
|
|
|
|
|
if ( $primaryBtn.length ) {
|
|
|
|
// We only bind the click event to the first language switcher in page
|
|
|
|
$primaryBtn.on( 'click', function ( ev ) {
|
|
|
|
ev.preventDefault();
|
|
|
|
|
|
|
|
if ( $primaryBtn.attr( 'href' ) || $primaryBtn.find( 'a' ).length ) {
|
|
|
|
router.navigate( '/languages' );
|
|
|
|
} else {
|
2020-05-13 11:20:25 +00:00
|
|
|
mw.notify( mw.msg( 'mobile-frontend-languages-not-available' ) );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:47:05 +00:00
|
|
|
/**
|
2019-03-25 20:08:54 +00:00
|
|
|
* Returns a rejected promise if MultimediaViewer is available. Otherwise
|
|
|
|
* returns the mediaViewerOverlay
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2018-07-26 10:47:05 +00:00
|
|
|
* @method
|
|
|
|
* @ignore
|
2019-03-25 20:08:54 +00:00
|
|
|
* @param {string} title the title of the image
|
2020-12-03 22:59:35 +00:00
|
|
|
* @return {void|Overlay} note must return void if the overlay should not show (see T262703)
|
|
|
|
* otherwise an Overlay is expected and this can lead to e.on/off is not a function
|
2018-07-26 10:47:05 +00:00
|
|
|
*/
|
2019-03-25 20:08:54 +00:00
|
|
|
function makeMediaViewerOverlayIfNeeded( title ) {
|
2017-07-19 23:08:24 +00:00
|
|
|
if ( mw.loader.getState( 'mmv.bootstrap' ) === 'ready' ) {
|
|
|
|
// This means MultimediaViewer has been installed and is loaded.
|
|
|
|
// Avoid loading it (T169622)
|
2020-12-03 22:59:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
title = decodeURIComponent( title );
|
|
|
|
} catch ( e ) {
|
|
|
|
// e.g. https://ro.m.wikipedia.org/wiki/Elisabeta_I_a_Angliei#/media/Fi%C8%18ier:Elizabeth_I_Rainbow_Portrait.jpg
|
|
|
|
return;
|
2018-08-31 22:48:34 +00:00
|
|
|
}
|
2019-03-25 20:08:54 +00:00
|
|
|
|
|
|
|
return mobile.mediaViewer.overlay( {
|
|
|
|
api: api,
|
2019-07-11 00:56:04 +00:00
|
|
|
thumbnails: currentPageHTMLParser.getThumbnails(),
|
2020-12-03 22:59:35 +00:00
|
|
|
title: title,
|
2019-03-25 20:08:54 +00:00
|
|
|
eventBus: eventBus
|
2018-08-31 22:48:34 +00:00
|
|
|
} );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Routes
|
2019-03-25 20:08:54 +00:00
|
|
|
overlayManager.add( /^\/media\/(.+)$/, makeMediaViewerOverlayIfNeeded );
|
2017-07-12 15:12:40 +00:00
|
|
|
overlayManager.add( /^\/languages$/, function () {
|
2019-02-14 16:39:37 +00:00
|
|
|
return mobile.languageOverlay( new PageGateway( api ) );
|
2017-07-12 15:12:40 +00:00
|
|
|
} );
|
2020-07-17 07:48:17 +00:00
|
|
|
// Register a LanguageInfo overlay which has no built-in functionality;
|
|
|
|
// a hook is fired when a language is selected, and extensions can respond
|
|
|
|
// to that hook. See GrowthExperiments WelcomeSurvey feature (in gerrit
|
|
|
|
// Ib558dc7c46cc56ff667957f9126bbe0471d25b8e for example usage).
|
|
|
|
overlayManager.add( /^\/languages\/all$/, function () {
|
2020-08-19 13:45:09 +00:00
|
|
|
return mobile.languageInfoOverlay( new LanguageInfo( api ), true );
|
|
|
|
} );
|
|
|
|
overlayManager.add( /^\/languages\/all\/no-suggestions$/, function () {
|
|
|
|
return mobile.languageInfoOverlay( new LanguageInfo( api ), false );
|
2020-07-17 07:48:17 +00:00
|
|
|
} );
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
// Setup
|
|
|
|
$( function () {
|
|
|
|
initButton();
|
|
|
|
} );
|
|
|
|
|
2019-07-19 19:13:57 +00:00
|
|
|
// If the MMV module is missing or disabled from the page, initialise our version
|
|
|
|
if ( desktopMMV === null || desktopMMV === 'registered' ) {
|
|
|
|
mw.hook( 'wikipage.content' ).add( initMediaViewer );
|
|
|
|
}
|
2019-04-19 17:36:50 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Initialisation function for last modified module.
|
|
|
|
*
|
|
|
|
* Enhances an element representing a time
|
|
|
|
* to show a human friendly date in seconds, minutes, hours, days
|
|
|
|
* months or years
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @ignore
|
2020-06-02 21:21:44 +00:00
|
|
|
* @param {jQuery.Object} $lastModifiedLink
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
|
|
|
function initHistoryLink( $lastModifiedLink ) {
|
2021-11-11 13:20:13 +00:00
|
|
|
var delta, $msg, $bar,
|
2017-07-12 15:12:40 +00:00
|
|
|
ts, username, gender;
|
|
|
|
|
|
|
|
ts = $lastModifiedLink.data( 'timestamp' );
|
|
|
|
username = $lastModifiedLink.data( 'user-name' ) || false;
|
|
|
|
gender = $lastModifiedLink.data( 'user-gender' );
|
|
|
|
|
|
|
|
if ( ts ) {
|
|
|
|
delta = time.getTimeAgoDelta( parseInt( ts, 10 ) );
|
|
|
|
if ( time.isRecent( delta ) ) {
|
|
|
|
$bar = $lastModifiedLink.closest( '.last-modified-bar' );
|
|
|
|
$bar.addClass( 'active' );
|
2021-11-01 21:00:19 +00:00
|
|
|
$bar.find( '.' + HISTORY_ICON_CLASS )
|
|
|
|
.addClass( HISTORY_ICON_CLASS.replace( '-base20', '-invert' ) )
|
|
|
|
.removeClass( HISTORY_ICON_CLASS );
|
|
|
|
$bar.find( '.' + HISTORY_ARROW_CLASS )
|
|
|
|
.addClass( HISTORY_ARROW_CLASS.replace( '-gray', '-invert' ) )
|
|
|
|
.removeClass( HISTORY_ARROW_CLASS );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2020-04-29 20:32:47 +00:00
|
|
|
|
|
|
|
$msg = $( '<span>' )
|
|
|
|
// The new element should maintain the non-js element's CSS classes.
|
|
|
|
.attr( 'class', $lastModifiedLink.attr( 'class' ) )
|
|
|
|
.html(
|
2021-11-11 13:20:13 +00:00
|
|
|
time.getLastModifiedMessage( ts, username, gender,
|
|
|
|
// For cached HTML
|
|
|
|
$lastModifiedLink.attr( 'href' )
|
|
|
|
)
|
2020-04-29 20:32:47 +00:00
|
|
|
);
|
2019-10-31 21:36:43 +00:00
|
|
|
$lastModifiedLink.replaceWith( $msg );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 03:07:48 +00:00
|
|
|
/**
|
|
|
|
* @method
|
2020-06-02 21:21:44 +00:00
|
|
|
* @param {jQuery.Event} ev
|
2019-09-18 03:07:48 +00:00
|
|
|
*/
|
|
|
|
function amcHistoryClickHandler( ev ) {
|
|
|
|
var
|
|
|
|
self = this,
|
|
|
|
amcOutreach = mobile.amcOutreach,
|
|
|
|
amcCampaign = amcOutreach.loadCampaign(),
|
|
|
|
onDismiss = function () {
|
|
|
|
toast.showOnPageReload( mw.message( 'mobile-frontend-amc-outreach-dismissed-message' ).text() );
|
|
|
|
window.location = self.href;
|
2020-01-13 23:34:58 +00:00
|
|
|
},
|
|
|
|
drawer = amcCampaign.showIfEligible( amcOutreach.ACTIONS.onHistoryLink, onDismiss, currentPage.title, 'action=history' );
|
2019-09-18 03:07:48 +00:00
|
|
|
|
2020-01-13 23:34:58 +00:00
|
|
|
if ( drawer ) {
|
2019-09-18 03:07:48 +00:00
|
|
|
ev.preventDefault();
|
2020-01-13 23:34:58 +00:00
|
|
|
// 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();
|
2019-09-18 03:07:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method
|
2020-06-02 21:21:44 +00:00
|
|
|
* @param {jQuery.Object} $lastModifiedLink
|
2019-09-18 03:07:48 +00:00
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function initAmcHistoryLink( $lastModifiedLink ) {
|
|
|
|
$lastModifiedLink.one( 'click', amcHistoryClickHandler );
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Initialisation function for last modified times
|
|
|
|
*
|
|
|
|
* Enhances .modified-enhancement element
|
|
|
|
* to show a human friendly date in seconds, minutes, hours, days
|
|
|
|
* months or years
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function initModifiedInfo() {
|
2019-04-03 23:32:18 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
2017-07-12 15:12:40 +00:00
|
|
|
$( '.modified-enhancement' ).each( function () {
|
|
|
|
initHistoryLink( $( this ) );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialisation function for user creation module.
|
|
|
|
*
|
|
|
|
* Enhances an element representing a time
|
2021-11-09 14:48:40 +00:00
|
|
|
* to show a human friendly date in seconds, minutes, hours, days
|
2017-07-12 15:12:40 +00:00
|
|
|
* months or years
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @ignore
|
2020-06-02 21:21:44 +00:00
|
|
|
* @param {jQuery.Object} [$tagline]
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
|
|
|
function initRegistrationDate( $tagline ) {
|
|
|
|
var msg, ts;
|
|
|
|
|
|
|
|
ts = $tagline.data( 'userpage-registration-date' );
|
|
|
|
|
|
|
|
if ( ts ) {
|
|
|
|
msg = time.getRegistrationMessage( ts, $tagline.data( 'userpage-gender' ) );
|
|
|
|
$tagline.text( msg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialisation function for registration date on user page
|
|
|
|
*
|
|
|
|
* Enhances .tagline-userpage element
|
|
|
|
* to show human friendly date in seconds, minutes, hours, days
|
|
|
|
* months or years
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function initRegistrationInfo() {
|
2019-04-03 23:32:18 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
2017-07-12 15:12:40 +00:00
|
|
|
$( '#tagline-userpage' ).each( function () {
|
|
|
|
initRegistrationDate( $( this ) );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2019-03-04 22:19:33 +00:00
|
|
|
/**
|
|
|
|
* Tests a URL to determine if it links to a local User namespace page or not.
|
|
|
|
*
|
|
|
|
* Assuming the current page visited is hosted on metawiki, the following examples would return
|
|
|
|
* true:
|
|
|
|
*
|
|
|
|
* https://meta.wikimedia.org/wiki/User:Foo
|
|
|
|
* /wiki/User:Foo
|
|
|
|
* /wiki/User:Nonexistent_user_page
|
|
|
|
*
|
|
|
|
* The following examples return false:
|
|
|
|
*
|
|
|
|
* https://en.wikipedia.org/wiki/User:Foo
|
|
|
|
* /wiki/Foo
|
|
|
|
* /wiki/User_talk:Foo
|
|
|
|
*
|
|
|
|
* @param {string} url
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
function isUserUri( url ) {
|
|
|
|
var
|
|
|
|
title = TitleUtil.newFromUri( url ),
|
|
|
|
namespace = title ? title.getNamespaceId() : undefined;
|
|
|
|
return namespace === namespaceIDs.user;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Strip the edit action from red links to nonexistent User namespace pages.
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2019-03-04 22:19:33 +00:00
|
|
|
* @return {void}
|
|
|
|
*/
|
|
|
|
function initUserRedLinks() {
|
2019-06-12 20:29:49 +00:00
|
|
|
$redLinks.filter( function ( _, element ) {
|
2019-03-04 22:19:33 +00:00
|
|
|
// Filter out non-User namespace pages.
|
|
|
|
return isUserUri( element.href );
|
|
|
|
} ).each( function ( _, element ) {
|
|
|
|
var uri = new mw.Uri( element.href );
|
|
|
|
if ( uri.query.action !== 'edit' ) {
|
|
|
|
// Nothing to strip.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strip the action.
|
|
|
|
delete uri.query.action;
|
|
|
|
|
|
|
|
// Update the element with the new link.
|
|
|
|
element.href = uri.toString();
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
2018-01-12 17:45:39 +00:00
|
|
|
$( function () {
|
2019-08-30 00:02:35 +00:00
|
|
|
var
|
2019-09-19 21:19:07 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
|
|
|
$watch = $( '#page-actions-watch' ),
|
[UI] [new] add user menu
Add new user menu. The changes required include:
- Break up AuthMenuEntry into reusable components. They're now simple,
independent, static functions in AuthUtil that are easy to reason
about and compose.
There's lots of verbose code because of the builder and director
patterns. That is, most of the code is for building the thing we
actually want to build instead of just building it. It's easy to write
but no fun to read--even simple configurations are extremely verbose
expressions that must be threaded through the system.
These builders are also single purpose and unlikely to be reusable
unlike a URI builder, for example. As objects, they're not especially
composable either.
- Similarly, break up Menu/DefaultBuilder into BuilderUtil and ban
inheritance. Inheritance has not worked well on the frontend of
MobileFrontend. I don't think it's going to work well here. E.g., I
could have made changes to the base class' getPersonalTools() method
such that the client passes a parameter for the advanced config or
maybe I just override it in the subclass. In either case, I think it
makes the whole hierarchy nuanced and harder to reason about for
something that should be simple.
- Add ProfileMenuEntry and LogOutMenuEntry for the user menu.
- Rename insertLogInOutMenuItem() to insertAuthMenuItem() which matches
the entry name, AuthMenuEntry.
- Extension:SandboxLink is needed to display the sandbox link in the
user menu.
- Performance note: the toolbar is now processed in MinervaTemplate,
which corresponds to removing the buildPersonalUrls() override.
- To mimic the design of main menu, the following steps would be
necessary:
1. Create a user/Default and user/Advanced user menu builder and also
a user/IBuilder interface.
2. Create a user/Director.
3. Create a service entry for Minerva.Menu.UserDirector in
ServiceWiring. The Director is actually powerless and doesn't get
to make any decisions--the appropriate builder is passed in from
ServiceWiring which checks the mode.
4. Access the service in SkinMinerva to set a userMenuHTML data member
on the Minerva QuickTemplate.
5. In MinervaTemplate, access the userMenuHTML QuickTemplate member
and do the usual song and dance of inflating a Mustache template.
This patch does everything except add a service, which was agreed to
be unnecessary, so that logic is now in SkinMinerva.
- Wrap the existing echo user notifications button and new user menu
button in a nav element. This seems like a semantic improvement.
- The existing styling and logic for the search bar and search overlay
are pretty messy and delicate. Changes made to that LESS endeavored to
be surgical. There's lots of room for improvement in the toolbar but
it's out of scope.
- Rename logout icon to logOut.
Bug: T214540
Change-Id: Ib517864fcf4e4d611e05525a6358ee6662fe4e05
2019-06-25 20:12:58 +00:00
|
|
|
toolbarElement = document.querySelector( Toolbar.selector ),
|
2021-12-15 22:59:11 +00:00
|
|
|
userMenu = document.querySelector( '.minerva-user-menu' ), // See UserMenuDirector.
|
|
|
|
navigationDrawer = document.querySelector( '.navigation-drawer' );
|
2019-10-31 18:56:40 +00:00
|
|
|
|
2020-01-07 21:27:29 +00:00
|
|
|
// The `minerva-animations-ready` class can be used by clients to prevent unwanted
|
|
|
|
// CSS transitions from firing on page load in some browsers (see
|
|
|
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=332189 as well as
|
|
|
|
// https://phabricator.wikimedia.org/T234570#5779890). Since JS adds this
|
|
|
|
// class after the CSS transitions loads, this issue is circumvented. See
|
|
|
|
// MainMenu.less for an example of how this is used.
|
|
|
|
$( document.body ).addClass( 'minerva-animations-ready' );
|
|
|
|
|
2019-10-31 18:56:40 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
|
|
|
$( '.mw-mf-page-center__mask' ).on( 'click', function ( ev ) {
|
|
|
|
var path = router.getPath();
|
|
|
|
// avoid jumping to the top of the page and polluting history by avoiding the
|
|
|
|
// resetting of the hash unless the hash is being utilised (T237015).
|
|
|
|
if ( !path ) {
|
|
|
|
ev.preventDefault();
|
|
|
|
}
|
|
|
|
} );
|
2019-07-02 21:10:10 +00:00
|
|
|
// Init:
|
|
|
|
// - main menu closes when you click outside of it
|
|
|
|
// - redirects show a toast.
|
|
|
|
preInit();
|
|
|
|
// - references
|
|
|
|
references();
|
|
|
|
// - search
|
|
|
|
search();
|
|
|
|
// - mobile redirect
|
2019-09-18 03:07:48 +00:00
|
|
|
mobileRedirect( mobile.amcOutreach, currentPage );
|
2019-12-18 21:15:26 +00:00
|
|
|
|
2020-04-29 20:32:47 +00:00
|
|
|
// Enhance timestamps on last-modified bar and watchlist
|
|
|
|
// to show relative time.
|
2018-01-12 17:45:39 +00:00
|
|
|
initModifiedInfo();
|
|
|
|
initRegistrationInfo();
|
2019-04-03 23:32:18 +00:00
|
|
|
// eslint-disable-next-line no-jquery/no-global-selector
|
2019-09-18 03:07:48 +00:00
|
|
|
initAmcHistoryLink( $( '.last-modified-bar__text a' ) );
|
2019-12-18 21:15:26 +00:00
|
|
|
|
2019-04-04 21:20:39 +00:00
|
|
|
if ( toolbarElement ) {
|
2019-07-31 17:36:19 +00:00
|
|
|
Toolbar.bind( window, toolbarElement );
|
2019-12-18 21:15:26 +00:00
|
|
|
// Update the edit icon and add a download icon.
|
2019-04-04 21:20:39 +00:00
|
|
|
Toolbar.render( window, toolbarElement );
|
|
|
|
}
|
[UI] [new] add user menu
Add new user menu. The changes required include:
- Break up AuthMenuEntry into reusable components. They're now simple,
independent, static functions in AuthUtil that are easy to reason
about and compose.
There's lots of verbose code because of the builder and director
patterns. That is, most of the code is for building the thing we
actually want to build instead of just building it. It's easy to write
but no fun to read--even simple configurations are extremely verbose
expressions that must be threaded through the system.
These builders are also single purpose and unlikely to be reusable
unlike a URI builder, for example. As objects, they're not especially
composable either.
- Similarly, break up Menu/DefaultBuilder into BuilderUtil and ban
inheritance. Inheritance has not worked well on the frontend of
MobileFrontend. I don't think it's going to work well here. E.g., I
could have made changes to the base class' getPersonalTools() method
such that the client passes a parameter for the advanced config or
maybe I just override it in the subclass. In either case, I think it
makes the whole hierarchy nuanced and harder to reason about for
something that should be simple.
- Add ProfileMenuEntry and LogOutMenuEntry for the user menu.
- Rename insertLogInOutMenuItem() to insertAuthMenuItem() which matches
the entry name, AuthMenuEntry.
- Extension:SandboxLink is needed to display the sandbox link in the
user menu.
- Performance note: the toolbar is now processed in MinervaTemplate,
which corresponds to removing the buildPersonalUrls() override.
- To mimic the design of main menu, the following steps would be
necessary:
1. Create a user/Default and user/Advanced user menu builder and also
a user/IBuilder interface.
2. Create a user/Director.
3. Create a service entry for Minerva.Menu.UserDirector in
ServiceWiring. The Director is actually powerless and doesn't get
to make any decisions--the appropriate builder is passed in from
ServiceWiring which checks the mode.
4. Access the service in SkinMinerva to set a userMenuHTML data member
on the Minerva QuickTemplate.
5. In MinervaTemplate, access the userMenuHTML QuickTemplate member
and do the usual song and dance of inflating a Mustache template.
This patch does everything except add a service, which was agreed to
be unnecessary, so that logic is now in SkinMinerva.
- Wrap the existing echo user notifications button and new user menu
button in a nav element. This seems like a semantic improvement.
- The existing styling and logic for the search bar and search overlay
are pretty messy and delicate. Changes made to that LESS endeavored to
be surgical. There's lots of room for improvement in the toolbar but
it's out of scope.
- Rename logout icon to logOut.
Bug: T214540
Change-Id: Ib517864fcf4e4d611e05525a6358ee6662fe4e05
2019-06-25 20:12:58 +00:00
|
|
|
if ( userMenu ) {
|
2019-07-31 17:36:19 +00:00
|
|
|
ToggleList.bind( window, userMenu );
|
[UI] [new] add user menu
Add new user menu. The changes required include:
- Break up AuthMenuEntry into reusable components. They're now simple,
independent, static functions in AuthUtil that are easy to reason
about and compose.
There's lots of verbose code because of the builder and director
patterns. That is, most of the code is for building the thing we
actually want to build instead of just building it. It's easy to write
but no fun to read--even simple configurations are extremely verbose
expressions that must be threaded through the system.
These builders are also single purpose and unlikely to be reusable
unlike a URI builder, for example. As objects, they're not especially
composable either.
- Similarly, break up Menu/DefaultBuilder into BuilderUtil and ban
inheritance. Inheritance has not worked well on the frontend of
MobileFrontend. I don't think it's going to work well here. E.g., I
could have made changes to the base class' getPersonalTools() method
such that the client passes a parameter for the advanced config or
maybe I just override it in the subclass. In either case, I think it
makes the whole hierarchy nuanced and harder to reason about for
something that should be simple.
- Add ProfileMenuEntry and LogOutMenuEntry for the user menu.
- Rename insertLogInOutMenuItem() to insertAuthMenuItem() which matches
the entry name, AuthMenuEntry.
- Extension:SandboxLink is needed to display the sandbox link in the
user menu.
- Performance note: the toolbar is now processed in MinervaTemplate,
which corresponds to removing the buildPersonalUrls() override.
- To mimic the design of main menu, the following steps would be
necessary:
1. Create a user/Default and user/Advanced user menu builder and also
a user/IBuilder interface.
2. Create a user/Director.
3. Create a service entry for Minerva.Menu.UserDirector in
ServiceWiring. The Director is actually powerless and doesn't get
to make any decisions--the appropriate builder is passed in from
ServiceWiring which checks the mode.
4. Access the service in SkinMinerva to set a userMenuHTML data member
on the Minerva QuickTemplate.
5. In MinervaTemplate, access the userMenuHTML QuickTemplate member
and do the usual song and dance of inflating a Mustache template.
This patch does everything except add a service, which was agreed to
be unnecessary, so that logic is now in SkinMinerva.
- Wrap the existing echo user notifications button and new user menu
button in a nav element. This seems like a semantic improvement.
- The existing styling and logic for the search bar and search overlay
are pretty messy and delicate. Changes made to that LESS endeavored to
be surgical. There's lots of room for improvement in the toolbar but
it's out of scope.
- Rename logout icon to logOut.
Bug: T214540
Change-Id: Ib517864fcf4e4d611e05525a6358ee6662fe4e05
2019-06-25 20:12:58 +00:00
|
|
|
}
|
2021-12-15 22:59:11 +00:00
|
|
|
if ( navigationDrawer ) {
|
|
|
|
ToggleList.bind( window, navigationDrawer );
|
|
|
|
var navigationDrawerMask = navigationDrawer.querySelector( '.main-menu-mask' );
|
|
|
|
// The 'for' attribute is used to close the drawer when the mask is clicked without JS
|
|
|
|
// Since we are using JS to enhance the drawer behavior, we need to
|
|
|
|
// remove the attribute to prevent the drawer from being toggled twice
|
|
|
|
navigationDrawerMask.removeAttribute( 'for' );
|
|
|
|
}
|
2019-06-25 01:10:51 +00:00
|
|
|
TabScroll.initTabsScrollPosition();
|
2018-07-30 14:45:44 +00:00
|
|
|
// Setup the issues banner on the page
|
|
|
|
// Pages which dont exist (id 0) cannot have issues
|
2019-07-11 00:56:04 +00:00
|
|
|
if ( !currentPage.isMissing ) {
|
|
|
|
issues.init( overlayManager, currentPageHTMLParser );
|
2018-07-30 14:45:44 +00:00
|
|
|
}
|
2019-07-16 21:41:37 +00:00
|
|
|
|
2019-07-16 23:19:07 +00:00
|
|
|
// deprecation notices
|
|
|
|
mw.log.deprecate( router, 'navigate', router.navigate, 'use navigateTo instead' );
|
2019-08-30 00:02:35 +00:00
|
|
|
|
2019-12-18 21:15:26 +00:00
|
|
|
// If MobileFrontend installed we add a table of contents icon to the table of contents.
|
|
|
|
// This should probably be done in the parser.
|
2019-08-30 00:02:35 +00:00
|
|
|
// setup toc icons
|
2022-02-17 22:21:22 +00:00
|
|
|
mw.hook( 'wikipage.content' ).add( function ( $container ) {
|
|
|
|
var $toctitle = $container.find( '.toctitle' );
|
|
|
|
new Icon( {
|
|
|
|
glyphPrefix: 'minerva',
|
|
|
|
name: 'listBullet'
|
|
|
|
} ).$el.prependTo( $toctitle );
|
|
|
|
new Icon( {
|
|
|
|
glyphPrefix: 'mf',
|
|
|
|
name: 'expand',
|
|
|
|
isSmall: true
|
|
|
|
} ).$el.appendTo( $toctitle );
|
|
|
|
} );
|
2019-09-18 23:07:21 +00:00
|
|
|
|
|
|
|
// wire up talk icon if necessary
|
|
|
|
if ( permissions.talk ) {
|
|
|
|
require( './talk.js' )( mobile );
|
|
|
|
}
|
|
|
|
|
|
|
|
// wire up watch icon if necessary
|
2019-12-18 21:15:26 +00:00
|
|
|
if ( permissions.watch && mw.user.isAnon() ) {
|
|
|
|
ctaDrawers.initWatchstarCta( $watch );
|
2019-09-18 23:07:21 +00:00
|
|
|
}
|
2019-09-19 21:19:07 +00:00
|
|
|
ctaDrawers.initRedlinksCta(
|
|
|
|
$redLinks.filter( function ( _, element ) {
|
|
|
|
// Filter out local User namespace pages.
|
|
|
|
return !isUserUri( element.href );
|
|
|
|
} )
|
|
|
|
);
|
|
|
|
initUserRedLinks();
|
2017-07-12 15:12:40 +00:00
|
|
|
} );
|
2019-10-01 21:40:49 +00:00
|
|
|
};
|