mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-14 18:05:01 +00:00
aa7e20f8c3
Passing in a new currentPageTitle option to TalkSectionAddOverlay. Since `title` param has spaces instead of underscores, `pageTitle` also gets spaces by using `M.getCurrentPage().title` instead of mw.config.get( 'wgPageName' ) Bug: T184273 Change-Id: I68a46e512fde0c6c15e888bd3b57da21417b1085
95 lines
2.8 KiB
JavaScript
95 lines
2.8 KiB
JavaScript
( function ( M, $ ) {
|
|
var loader = M.require( 'mobile.startup/rlModuleLoader' ),
|
|
LoadingOverlay = M.require( 'mobile.startup/LoadingOverlay' ),
|
|
$talk = $( '.talk' ),
|
|
// use the plain return value here - T128273
|
|
title = $talk.attr( 'data-title' ),
|
|
overlayManager = M.require( 'skins.minerva.scripts/overlayManager' ),
|
|
skin = M.require( 'skins.minerva.scripts/skin' ),
|
|
inTalkNamespace = false,
|
|
pageTitle, talkTitle, talkNs, pageNs;
|
|
|
|
// if there's no title for any reason, don't do anything
|
|
if ( !title ) {
|
|
return;
|
|
}
|
|
// T127190
|
|
title = decodeURIComponent( title );
|
|
|
|
// sanity check: the talk namespace needs to have the next higher integer
|
|
// of the page namespace (the api should add topics only to the talk page of the current
|
|
// page)
|
|
// (https://www.mediawiki.org/wiki/Manual:Using_custom_namespaces#Creating_a_custom_namespace)
|
|
// The method to get associated namespaces will change later (maybe), see T487
|
|
pageTitle = mw.Title.newFromText( mw.config.get( 'wgPageName' ) );
|
|
talkTitle = mw.Title.newFromText( title );
|
|
|
|
if ( !pageTitle || !talkTitle || pageTitle.getMainText() !== talkTitle.getMainText() ) {
|
|
return;
|
|
}
|
|
talkNs = talkTitle.getNamespaceId();
|
|
pageNs = pageTitle.getNamespaceId();
|
|
inTalkNamespace = talkNs === pageNs;
|
|
|
|
if ( pageNs + 1 !== talkNs && !inTalkNamespace ) {
|
|
return;
|
|
}
|
|
|
|
overlayManager.add( /^\/talk\/?(.*)$/, function ( id ) {
|
|
var result = $.Deferred(),
|
|
talkOptions = {
|
|
api: new mw.Api(),
|
|
title: title,
|
|
// T184273 using `getCurrentPage` because 'wgPageName' contains underscores instead of spaces.
|
|
currentPageTitle: M.getCurrentPage().title,
|
|
licenseMsg: skin.getLicenseMsg()
|
|
};
|
|
|
|
loader.loadModule( 'mobile.talk.overlays' ).done( function () {
|
|
var Overlay;
|
|
if ( id === 'new' ) {
|
|
Overlay = M.require( 'mobile.talk.overlays/TalkSectionAddOverlay' );
|
|
} else if ( id ) {
|
|
talkOptions.id = id;
|
|
Overlay = M.require( 'mobile.talk.overlays/TalkSectionOverlay' );
|
|
} else {
|
|
Overlay = M.require( 'mobile.talk.overlays/TalkOverlay' );
|
|
}
|
|
result.resolve( new Overlay( talkOptions ) );
|
|
} );
|
|
return result;
|
|
} );
|
|
|
|
/**
|
|
* Create route '#/talk'
|
|
* @ignore
|
|
*/
|
|
function init() {
|
|
$talk.on( 'click', function () {
|
|
if ( $talk.hasClass( 'add' ) ) {
|
|
window.location.hash = '#/talk/new';
|
|
} else {
|
|
window.location.hash = '#/talk';
|
|
}
|
|
return false;
|
|
} );
|
|
}
|
|
|
|
init();
|
|
|
|
if ( inTalkNamespace ) {
|
|
// reload the page after the new discussion was added
|
|
M.on( 'talk-added-wo-overlay', function () {
|
|
var loadingOverlay = new LoadingOverlay();
|
|
|
|
window.location.hash = '';
|
|
// setTimeout to make sure, that loadingOverlay's overlayenabled class on html doesnt get removed by
|
|
// OverlayManager (who closes TalkSectionAddOverlay
|
|
window.setTimeout( function () {
|
|
loadingOverlay.show();
|
|
window.location.reload();
|
|
}, 10 );
|
|
} );
|
|
}
|
|
}( mw.mobileFrontend, jQuery ) );
|