2018-12-04 22:05:46 +00:00
|
|
|
( function ( M, EventEmitter ) {
|
2019-02-07 16:34:18 +00:00
|
|
|
var
|
|
|
|
mobile = M.require( 'mobile.startup' ),
|
|
|
|
loader = mobile.rlModuleLoader,
|
|
|
|
LoadingOverlay = mobile.LoadingOverlay,
|
2018-12-04 22:05:46 +00:00
|
|
|
eventBus = new EventEmitter(),
|
2019-01-09 13:57:26 +00:00
|
|
|
// eslint-disable-next-line jquery/no-global-selector
|
2019-01-10 22:59:56 +00:00
|
|
|
$talk = $( '.talk, [rel="discussion"]' ),
|
2017-07-12 15:12:40 +00:00
|
|
|
// 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' ),
|
2017-09-28 20:06:39 +00:00
|
|
|
inTalkNamespace = false,
|
|
|
|
pageTitle, talkTitle, talkNs, pageNs;
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
// T127190
|
2019-01-10 22:59:56 +00:00
|
|
|
if ( title ) {
|
|
|
|
title = decodeURIComponent( title );
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
// 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' ) );
|
2019-01-10 22:59:56 +00:00
|
|
|
talkTitle = title ? mw.Title.newFromText( title ) : pageTitle.getTalkPage();
|
2017-09-28 20:06:39 +00:00
|
|
|
|
2019-01-10 22:59:56 +00:00
|
|
|
// Check that there is a valid page and talk title
|
|
|
|
if ( !pageTitle || !talkTitle ||
|
|
|
|
// the talk link points to something other than the current page
|
|
|
|
// so we chose to leave this as a normal link
|
|
|
|
pageTitle.getMainText() !== talkTitle.getMainText() ) {
|
2017-09-28 20:06:39 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
talkNs = talkTitle.getNamespaceId();
|
|
|
|
pageNs = pageTitle.getNamespaceId();
|
|
|
|
inTalkNamespace = talkNs === pageNs;
|
|
|
|
|
|
|
|
if ( pageNs + 1 !== talkNs && !inTalkNamespace ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
overlayManager.add( /^\/talk\/?(.*)$/, function ( id ) {
|
2018-08-22 00:26:46 +00:00
|
|
|
var talkOptions = {
|
|
|
|
api: new mw.Api(),
|
2019-01-10 22:59:56 +00:00
|
|
|
title: talkTitle.toText(),
|
2018-09-13 15:33:20 +00:00
|
|
|
// T184273 using `getCurrentPage` because 'wgPageName' contains underscores instead of
|
|
|
|
// spaces.
|
2018-08-22 00:26:46 +00:00
|
|
|
currentPageTitle: M.getCurrentPage().title,
|
2018-12-04 22:05:46 +00:00
|
|
|
licenseMsg: skin.getLicenseMsg(),
|
|
|
|
eventBus: eventBus
|
2018-08-22 00:26:46 +00:00
|
|
|
};
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-08-22 00:26:46 +00:00
|
|
|
return loader.loadModule( 'mobile.talk.overlays' ).then( function () {
|
2017-07-12 15:12:40 +00:00
|
|
|
if ( id === 'new' ) {
|
2019-02-11 21:27:17 +00:00
|
|
|
return new ( M.require( 'mobile.talk.overlays/TalkSectionAddOverlay' ) )( talkOptions );
|
|
|
|
}
|
|
|
|
if ( id ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
talkOptions.id = id;
|
2019-02-11 21:27:17 +00:00
|
|
|
return new ( M.require( 'mobile.talk.overlays/TalkSectionOverlay' ) )( talkOptions );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2019-02-11 21:27:17 +00:00
|
|
|
return M.require( 'mobile.talk.overlays/talkOverlay' )( talkOptions );
|
2017-07-12 15:12:40 +00:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create route '#/talk'
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function init() {
|
|
|
|
$talk.on( 'click', function () {
|
2017-09-28 20:06:39 +00:00
|
|
|
if ( $talk.hasClass( 'add' ) ) {
|
|
|
|
window.location.hash = '#/talk/new';
|
|
|
|
} else {
|
|
|
|
window.location.hash = '#/talk';
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
return false;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
init();
|
|
|
|
|
2017-09-28 20:06:39 +00:00
|
|
|
if ( inTalkNamespace ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
// reload the page after the new discussion was added
|
2018-12-04 22:05:46 +00:00
|
|
|
eventBus.on( 'talk-added-wo-overlay', function () {
|
2017-07-12 15:12:40 +00:00
|
|
|
var loadingOverlay = new LoadingOverlay();
|
|
|
|
|
|
|
|
window.location.hash = '';
|
2018-09-13 15:33:20 +00:00
|
|
|
// setTimeout to make sure, that loadingOverlay's overlayenabled class on html doesnt
|
|
|
|
// get removed by OverlayManager (who closes TalkSectionAddOverlay).
|
2017-07-12 15:12:40 +00:00
|
|
|
window.setTimeout( function () {
|
|
|
|
loadingOverlay.show();
|
|
|
|
window.location.reload();
|
|
|
|
}, 10 );
|
|
|
|
} );
|
|
|
|
}
|
2018-12-04 22:05:46 +00:00
|
|
|
}( mw.mobileFrontend, OO.EventEmitter ) );
|