/*! * Live edit preview. */ ( function ( mw, $ ) { /** * @ignore * @param {jQuery.Event} e */ function doLivePreview( e ) { var isDiff, api, request, postData, copySelectors, section, $wikiPreview, $wikiDiff, $editform, $textbox, $summary, $copyElements, $spinner, $errorBox; isDiff = ( e.target.name === 'wpDiff' ); $wikiPreview = $( '#wikiPreview' ); $wikiDiff = $( '#wikiDiff' ); $editform = $( '#editform' ); $textbox = $editform.find( '#wpTextbox1' ); $summary = $editform.find( '#wpSummary' ); $spinner = $( '.mw-spinner-preview' ); $errorBox = $( '.errorbox' ); section = $editform.find( '[name="wpSection"]' ).val(); if ( $textbox.length === 0 ) { return; } // Show changes for a new section is not yet supported if ( isDiff && section === 'new' ) { return; } e.preventDefault(); // Remove any previously displayed errors $errorBox.remove(); // Show #wikiPreview if it's hidden to be able to scroll to it // (if it is hidden, it's also empty, so nothing changes in the rendering) $wikiPreview.show(); // Jump to where the preview will appear $wikiPreview[ 0 ].scrollIntoView(); copySelectors = [ // Main '#firstHeading', '#wikiPreview', '#wikiDiff', '#catlinks', '#p-lang', // Editing-related '.templatesUsed', '.limitreport', '.mw-summary-preview' ]; $copyElements = $( copySelectors.join( ',' ) ); // Not shown during normal preview, to be removed if present $( '.mw-newarticletext' ).remove(); if ( $spinner.length === 0 ) { $spinner = $.createSpinner( { size: 'large', type: 'block' } ) .addClass( 'mw-spinner-preview' ) .css( 'margin-top', '1em' ); $wikiPreview.before( $spinner ); } else { $spinner.show(); } // Can't use fadeTo because it calls show(), and we might want to keep some elements hidden // (e.g. empty #catlinks) $copyElements.animate( { opacity: 0.4 }, 'fast' ); api = new mw.Api(); postData = { action: 'parse', uselang: mw.config.get( 'wgUserLanguage' ), title: mw.config.get( 'wgPageName' ), text: $textbox.textSelection( 'getContents' ), summary: $summary.textSelection( 'getContents' ) }; if ( section !== '' ) { postData.sectionpreview = ''; if ( section === 'new' ) { postData.section = section; postData.sectiontitle = postData.summary; } } if ( isDiff ) { $wikiPreview.hide(); // First PST the input, then diff it postData.onlypst = ''; request = api.post( postData ); request.done( function ( response ) { var postData; postData = { action: 'query', indexpageids: '', prop: 'revisions', titles: mw.config.get( 'wgPageName' ), rvdifftotext: response.parse.text[ '*' ], rvprop: '' }; if ( section !== '' ) { postData.rvsection = section; } return api.post( postData ).done( function ( result2 ) { try { var diffHtml = result2.query.pages[ result2.query.pageids[ 0 ] ] .revisions[ 0 ].diff[ '*' ]; $wikiDiff.find( 'table.diff tbody' ).html( diffHtml ); } catch ( e ) { // "result.blah is undefined" error, ignore mw.log.warn( e ); } $wikiDiff.show(); } ); } ); } else { $wikiDiff.hide(); $.extend( postData, { pst: '', preview: '', prop: 'text|displaytitle|modules|jsconfigvars|categorieshtml|templates|langlinks|limitreporthtml', disableeditsection: true } ); request = api.post( postData ); request.done( function ( response ) { var li, newList, $displaytitle, $content, $parent, $list; if ( response.parse.jsconfigvars ) { mw.config.set( response.parse.jsconfigvars ); } if ( response.parse.modules ) { mw.loader.load( response.parse.modules.concat( response.parse.modulescripts, response.parse.modulestyles, response.parse.modulemessages ) ); } if ( response.parse.displaytitle ) { $displaytitle = $( $.parseHTML( response.parse.displaytitle ) ); $( '#firstHeading' ).msg( mw.config.get( 'wgEditMessage', 'editing' ), $displaytitle ); document.title = mw.msg( 'pagetitle', mw.msg( mw.config.get( 'wgEditMessage', 'editing' ), $displaytitle.text() ) ); } if ( response.parse.categorieshtml ) { $( '#catlinks' ).replaceWith( response.parse.categorieshtml[ '*' ] ); } if ( response.parse.templates ) { newList = []; $.each( response.parse.templates, function ( i, template ) { li = $( '
  • ' ) .append( $( '' ) .attr( { href: mw.util.getUrl( template[ '*' ] ), 'class': ( template.exists !== undefined ? '' : 'new' ) } ) .text( template[ '*' ] ) ); newList.push( li ); } ); $editform.find( '.templatesUsed .mw-editfooter-list' ).detach().empty().append( newList ).appendTo( '.templatesUsed' ); } if ( response.parse.limitreporthtml ) { $( '.limitreport' ).html( response.parse.limitreporthtml[ '*' ] ); } if ( response.parse.langlinks && mw.config.get( 'skin' ) === 'vector' ) { newList = []; $.each( response.parse.langlinks, function ( i, langlink ) { li = $( '
  • ' ) .addClass( 'interlanguage-link interwiki-' + langlink.lang ) .append( $( '' ) .attr( { href: langlink.url, title: langlink[ '*' ] + ' - ' + langlink.langname, lang: langlink.lang, hreflang: langlink.lang } ) .text( langlink.autonym ) ); newList.push( li ); } ); $list = $( '#p-lang ul' ); $parent = $list.parent(); $list.detach().empty().append( newList ).prependTo( $parent ); } if ( response.parse.text[ '*' ] ) { $content = $wikiPreview.children( '.mw-content-ltr,.mw-content-rtl' ); $content .detach() .html( response.parse.text[ '*' ] ); mw.hook( 'wikipage.content' ).fire( $content ); // Reattach $wikiPreview.append( $content ); $wikiPreview.show(); } } ); } request.done( function ( response ) { var isSubject = ( section === 'new' ), summaryMsg = isSubject ? 'subject-preview' : 'summary-preview', $summaryPreview = $editform.find( '.mw-summary-preview' ).empty(); if ( response.parse.parsedsummary && response.parse.parsedsummary[ '*' ] !== '' ) { $summaryPreview.append( mw.message( summaryMsg ).parse(), ' ', $( '' ).addClass( 'comment' ).html( // There is no equivalent to rawParams mw.message( 'parentheses' ).escaped() .replace( '$1', response.parse.parsedsummary[ '*' ] ) ) ); } mw.hook( 'wikipage.editform' ).fire( $editform ); } ); request.always( function () { $spinner.hide(); $copyElements.animate( { opacity: 1 }, 'fast' ); } ); request.fail( function ( code, result ) { var errorMsg = 'API error: ' + code; if ( code === 'http' ) { errorMsg = 'HTTP error: '; if ( result.exception ) { errorMsg += result.exception; } else { errorMsg += result.textStatus; } } $errorBox = $( '
    ' ) .addClass( 'errorbox' ) .html( '' + mw.message( 'previewerrortext' ).escaped() + '
    ' ) .append( document.createTextNode( errorMsg ) ); $wikiDiff.hide(); $wikiPreview.hide().before( $errorBox ); } ); } $( function () { // Do not enable on user .js/.css pages, as there's no sane way of "previewing" // the scripts or styles without reloading the page. if ( $( '#mw-userjsyoucanpreview' ).length || $( '#mw-usercssyoucanpreview' ).length ) { return; } // The following elements can change in a preview but are not output // by the server when they're empty until the preview response. // TODO: Make the server output these always (in a hidden state), so we don't // have to fish and (hopefully) put them in the right place (since skins // can change where they are output). if ( !document.getElementById( 'p-lang' ) && document.getElementById( 'p-tb' ) && mw.config.get( 'skin' ) === 'vector' ) { $( '.portal:last' ).after( $( '
    ' ).attr( { 'class': 'portal', id: 'p-lang', role: 'navigation', title: mw.msg( 'tooltip-p-lang' ), 'aria-labelledby': 'p-lang-label' } ) .append( $( '

    ' ).attr( 'id', 'p-lang-label' ).text( mw.msg( 'otherlanguages' ) ) ) .append( $( '
    ' ).addClass( 'body' ).append( '
      ' ) ) ); } if ( !$( '.mw-summary-preview' ).length ) { $( '#wpSummary' ).after( $( '
      ' ).addClass( 'mw-summary-preview' ) ); } if ( !document.getElementById( 'wikiDiff' ) && document.getElementById( 'wikiPreview' ) ) { $( '#wikiPreview' ).after( $( '
      ' ) .hide() .attr( 'id', 'wikiDiff' ) .html( '' + '
      ' ) ); } // This should be moved down to '#editform', but is kept on the body for now // because the LiquidThreads extension is re-using this module with only half // the EditPage (doesn't include #editform presumably, bug 55463). $( document.body ).on( 'click', '#wpPreview, #wpDiff', doLivePreview ); } ); }( mediaWiki, jQuery ) );