mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
b93b7eda7c
The talk page JavaScript progressively enhances an existing button in the page. Remove the frontend logic and rely entirely on whether the button is in the page or not. Additional change: * The browser tests incorrectly suggest a user needs 5 edits to be able to use the talk feature. This is not true. They just need to be logged in. Update that logic. Bug: T167728 Change-Id: Iacedea30bdd0775b3d785db5b143abafd7a18b39
93 lines
2.7 KiB
JavaScript
93 lines
2.7 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,
|
|
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 ) );
|