/** * @param {Object} mobile mobileFrontend component library */ module.exports = function ( mobile ) { var SKIN_MINERVA_TALK_SIMPLIFIED_CLASS = 'skin-minerva--talk-simplified', toast = mobile.toast, currentPage = mobile.currentPage(), api = new mw.Api(), overlayManager = mobile.OverlayManager.getSingleton(), // FIXME: This dependency shouldn't exist skin = mobile.Skin.getSingleton(), talkTitle = currentPage.titleObj.getTalkPage() ? currentPage.titleObj.getTalkPage().getPrefixedText() : undefined; /** * Render a type of talk overlay * @param {string} className name of talk overlay to create * @param {Object} talkOptions * @return {Overlay|JQuery.Promise} */ function createOverlay( className, talkOptions ) { // eslint-disable-next-line no-restricted-properties var M = mw.mobileFrontend; return new ( M.require( 'mobile.talk.overlays/' + className ) )( talkOptions ); } /** * Cleanup the listeners previously added in initTalkSection * so that events like clicking on a section) won't cause * scroll changes/things only needed for the simplified view. * Also restore ids for table of contents. */ function restoreSectionHeadings() { // eslint-disable-next-line no-jquery/no-global-selector $( '.section-heading' ).each( function () { var $heading = $( this ), $headline = $heading.find( '.mw-headline' ); $heading.off( 'click.talkSectionOverlay' ); // restore for table of contents: $headline.attr( 'id', $headline.data( 'id' ) ); } ); } /** * @param {JQuery.Element} $heading * @param {JQuery.Element} $headline * @param {string} sectionId * @return {JQuery.Promise} A promise that rejects if simplified mode is off. * A promise that resolves to the TalkSectionOverlay otherwise (unless a * network error occurs). */ function createTalkSectionOverlay( $heading, $headline, sectionId ) { if ( !isSimplifiedViewEnabled() ) { // If the simplified view is not enabled, we don't want to show the // talk section overlay (e.g. when user clicks on a link in TOC) return mobile.util.Deferred().reject(); } return createOverlay( 'TalkSectionOverlay', { id: sectionId, section: new mobile.Section( { line: $headline.text(), text: $heading.next().html() } ), // FIXME: Replace this api param with onSaveComplete api: api, title: talkTitle, // T184273 using `currentPage` because 'wgPageName' // contains underscores instead of spaces. licenseMsg: skin.getLicenseMsg(), onSaveComplete: function () { toast.showOnPageReload( mw.message( 'minerva-talk-reply-success' ).text() ); window.location.reload(); } } ); } /** * Initializes code needed to display the TalkSectionOverlay */ function initTalkSection() { // register route for each of the sub-headings // eslint-disable-next-line no-jquery/no-global-selector $( '.section-heading' ).each( function () { var sectionId, $heading = $( this ), $headline = $heading.find( '.mw-headline' ), sectionIdMatch = $heading.next().attr( 'class' ).match( /mf-section-(\d+)/ ), headlineId = $headline.attr( 'id' ); if ( sectionIdMatch === null || sectionIdMatch.length !== 2 ) { // If section id couldn't be parsed, there is no point in continuing return; } sectionId = sectionIdMatch[ 1 ]; $heading.on( 'click.talkSectionOverlay', function ( ev ) { ev.preventDefault(); window.location.hash = '#' + headlineId; } ); // remove the `id` to avoid conflicts with the overlay route. // Without JS the id will still be present. With JS the overlay will open. $headline.removeAttr( 'id' ); // however cache it to data for cooperation with the 'read as wiki page' button. $headline.data( 'id', headlineId ); overlayManager.add( headlineId, function () { return createTalkSectionOverlay( $heading, $headline, sectionId ); } ); } ); } /** * Initializes code needed to display the TalkSectionAddOverlay */ function initTalkSectionAdd() { overlayManager.add( /^\/talk\/new$/, function () { return createOverlay( 'TalkSectionAddOverlay', { api: api, title: talkTitle, // T184273 using `currentPage` because 'wgPageName' // contains underscores instead of spaces. licenseMsg: skin.getLicenseMsg(), currentPageTitle: currentPage.title, onSaveComplete: function () { toast.showOnPageReload( mw.message( 'minerva-talk-topic-feedback' ).text() ); window.location = currentPage.titleObj.getTalkPage().getUrl(); } } ); } ); } /** * T230695: In the simplified view, we need to display a "Read as wikipage" * button which enables the user to switch from simplified mode to the regular * version of the mobile talk page (with TOC and sections that you can * expand/collapse). */ function renderReadAsWikiPageButton() { $( '