Merge "DatabaseMssql: Don't duplicate body of makeList()"
[mediawiki.git] / resources / src / mediawiki.action / mediawiki.action.edit.preview.js
blobe4ccf2be193c9f8c6c8bfd3a720957b92108acfd
1 /*!
2  * Live edit preview.
3  */
4 ( function ( mw, $ ) {
6         /**
7          * @ignore
8          * @param {jQuery.Event} e
9          */
10         function doLivePreview( e ) {
11                 var isDiff, api, request, postData, copySelectors, section,
12                         $wikiPreview, $wikiDiff, $editform, $copyElements, $spinner;
14                 e.preventDefault();
16                 isDiff = ( e.target.name === 'wpDiff' );
17                 $wikiPreview = $( '#wikiPreview' );
18                 $wikiDiff = $( '#wikiDiff' );
19                 $editform = $( '#editform' );
20                 section = $editform.find( '[name="wpSection"]' ).val();
22                 // Show #wikiPreview if it's hidden to be able to scroll to it
23                 // (if it is hidden, it's also empty, so nothing changes in the rendering)
24                 $wikiPreview.show();
26                 // Jump to where the preview will appear
27                 $wikiPreview[0].scrollIntoView();
29                 copySelectors = [
30                         // Main
31                         '#firstHeading',
32                         '#wikiPreview',
33                         '#wikiDiff',
34                         '#catlinks',
35                         '#p-lang',
36                         // Editing-related
37                         '.templatesUsed',
38                         '.limitreport',
39                         '.mw-summary-preview'
40                 ];
41                 $copyElements = $( copySelectors.join( ',' ) );
43                 // Not shown during normal preview, to be removed if present
44                 $( '.mw-newarticletext' ).remove();
46                 $spinner = $.createSpinner( {
47                         size: 'large',
48                         type: 'block'
49                 } );
50                 $wikiPreview.before( $spinner );
51                 $spinner.css( {
52                         marginTop: $spinner.height()
53                 } );
55                 // Can't use fadeTo because it calls show(), and we might want to keep some elements hidden
56                 // (e.g. empty #catlinks)
57                 $copyElements.animate( { opacity: 0.4 }, 'fast' );
59                 api = new mw.Api();
60                 postData = {
61                         action: 'parse',
62                         uselang: mw.config.get( 'wgUserLanguage' ),
63                         title: mw.config.get( 'wgPageName' ),
64                         text: $editform.find( '#wpTextbox1' ).textSelection( 'getContents' ),
65                         summary: $editform.find( '#wpSummary' ).textSelection( 'getContents' )
66                 };
68                 if ( isDiff ) {
69                         $wikiPreview.hide();
71                         // First PST the input, then diff it
72                         postData.onlypst = '';
73                         request = api.post( postData );
74                         request.done( function ( response ) {
75                                 var postData;
76                                 postData = {
77                                         action: 'query',
78                                         indexpageids: '',
79                                         prop: 'revisions',
80                                         titles: mw.config.get( 'wgPageName' ),
81                                         rvdifftotext: response.parse.text['*'],
82                                         rvprop: ''
83                                 };
84                                 if ( section !== '' ) {
85                                         postData.rvsection = section;
86                                 }
87                                 return api.post( postData ).done( function ( result2 ) {
88                                         try {
89                                                 var diffHtml = result2.query.pages[result2.query.pageids[0]]
90                                                         .revisions[0].diff['*'];
91                                                 $wikiDiff.find( 'table.diff tbody' ).html( diffHtml );
92                                         } catch ( e ) {
93                                                 // "result.blah is undefined" error, ignore
94                                                 mw.log.warn( e );
95                                         }
96                                         $wikiDiff.show();
97                                 } );
98                         } );
99                 } else {
100                         $wikiDiff.hide();
101                         $.extend( postData, {
102                                 pst: '',
103                                 preview: '',
104                                 prop: 'text|displaytitle|modules|categorieshtml|templates|langlinks|limitreporthtml',
105                                 disableeditsection: true
106                         } );
107                         if ( section !== '' ) {
108                                 postData.sectionpreview = '';
109                         }
110                         request = api.post( postData );
111                         request.done( function ( response ) {
112                                 var li, newList, $next, $parent, $list;
113                                 if ( response.parse.modules ) {
114                                         mw.loader.load( response.parse.modules.concat(
115                                                 response.parse.modulescripts,
116                                                 response.parse.modulestyles,
117                                                 response.parse.modulemessages ) );
118                                 }
119                                 if ( response.parse.displaytitle ) {
120                                         $( '#firstHeading' ).html( response.parse.displaytitle );
121                                 }
122                                 if ( response.parse.categorieshtml ) {
123                                         $( '#catlinks' ).replaceWith( response.parse.categorieshtml['*'] );
124                                 }
125                                 if ( response.parse.templates ) {
126                                         newList = [];
127                                         $.each( response.parse.templates, function ( i, template ) {
128                                                 li = $( '<li>' )
129                                                         .append( $( '<a>' )
130                                                                 .attr( {
131                                                                         'href': mw.util.getUrl( template['*'] ),
132                                                                         'class': ( template.exists !== undefined ? '' : 'new' )
133                                                                 } )
134                                                                 .text( template['*'] )
135                                                         );
136                                                 newList.push( li );
137                                         } );
139                                         $editform.find( '.mw-editfooter-list' ).detach().empty().append( newList ).appendTo( '.templatesUsed' );
140                                 }
141                                 if ( response.parse.limitreporthtml ) {
142                                         $( '.limitreport' ).html( response.parse.limitreporthtml['*'] );
143                                 }
144                                 if ( response.parse.langlinks && mw.config.get( 'skin' ) === 'vector' ) {
145                                         newList = [];
146                                         $.each( response.parse.langlinks, function ( i, langlink ) {
147                                                 li = $( '<li>' )
148                                                         .addClass( 'interlanguage-link interwiki-' + langlink.lang )
149                                                         .append( $( '<a>' )
150                                                                 .attr( {
151                                                                         'href': langlink.url,
152                                                                         'title': langlink['*'] + ' - ' + langlink.langname,
153                                                                         'lang': langlink.lang,
154                                                                         'hreflang': langlink.lang
155                                                                 } )
156                                                                 .text( langlink.autonym )
157                                                         );
158                                                 newList.push( li );
159                                         } );
160                                         $list = $( '#p-lang ul' );
161                                         $parent = $list.parent();
162                                         $list.detach().empty().append( newList ).prependTo( $parent );
163                                 }
165                                 if ( response.parse.text['*'] ) {
166                                         $next = $wikiPreview.next();
167                                         // If there is no next node, use parent instead.
168                                         // Only query parent if needed, false otherwise.
169                                         $parent = !$next.length && $wikiPreview.parent();
171                                         $wikiPreview
172                                                 .detach()
173                                                 .html( response.parse.text['*'] );
175                                         mw.hook( 'wikipage.content' ).fire( $wikiPreview );
177                                         // Reattach
178                                         if ( $parent ) {
179                                                 $parent.append( $wikiPreview );
180                                         } else {
181                                                 $next.before( $wikiPreview );
182                                         }
183                                         $wikiPreview.show();
185                                 }
186                         } );
187                 }
188                 request.done( function ( response ) {
189                         if ( response.parse.parsedsummary ) {
190                                 // TODO implement special behavior for section === 'new'
191                                 $editform.find( '.mw-summary-preview' )
192                                         .empty()
193                                         .append(
194                                                 mw.message( 'summary-preview' ).parse(),
195                                                 ' ',
196                                                 $( '<span>' ).addClass( 'comment' ).html(
197                                                         // There is no equivalent to rawParams
198                                                         mw.message( 'parentheses' ).escaped()
199                                                                 .replace( '$1', response.parse.parsedsummary['*'] )
200                                                 )
201                                         );
202                         }
203                 } );
204                 request.always( function () {
205                         $spinner.remove();
206                         $copyElements.animate( {
207                                 opacity: 1
208                         }, 'fast' );
209                 } );
210         }
212         $( function () {
213                 // Do not enable on user .js/.css pages, as there's no sane way of "previewing"
214                 // the scripts or styles without reloading the page.
215                 if ( $( '#mw-userjsyoucanpreview' ).length || $( '#mw-usercssyoucanpreview' ).length ) {
216                         return;
217                 }
219                 // The following elements can change in a preview but are not output
220                 // by the server when they're empty until the preview response.
221                 // TODO: Make the server output these always (in a hidden state), so we don't
222                 // have to fish and (hopefully) put them in the right place (since skins
223                 // can change where they are output).
225                 if ( !document.getElementById( 'p-lang' ) && document.getElementById( 'p-tb' ) && mw.config.get( 'skin' ) === 'vector' ) {
226                         $( '.portal:last' ).after(
227                                 $( '<div>' ).attr( {
228                                         'class': 'portal',
229                                         'id': 'p-lang',
230                                         'role': 'navigation',
231                                         'title': mw.msg( 'tooltip-p-lang' ),
232                                         'aria-labelledby': 'p-lang-label'
233                                 } )
234                                 .append( $( '<h3>' ).attr( 'id', 'p-lang-label' ).text( mw.msg( 'otherlanguages' ) ) )
235                                 .append( $( '<div>' ).addClass( 'body' ).append( '<ul>' ) )
236                         );
237                 }
239                 if ( !$( '.mw-summary-preview' ).length ) {
240                         $( '.editCheckboxes' ).before(
241                                 $( '<div>' ).addClass( 'mw-summary-preview' )
242                         );
243                 }
245                 if ( !document.getElementById( 'wikiDiff' ) && document.getElementById( 'wikiPreview' ) ) {
246                         $( '#wikiPreview' ).after(
247                                 $( '<div>' )
248                                         .attr( 'id', 'wikiDiff' )
249                                         .html( '<table class="diff"><col class="diff-marker"/><col class="diff-content"/>' +
250                                                 '<col class="diff-marker"/><col class="diff-content"/><tbody/></table>' )
251                         );
252                 }
254                 // This should be moved down to '#editform', but is kept on the body for now
255                 // because the LiquidThreads extension is re-using this module with only half
256                 // the EditPage (doesn't include #editform presumably, bug 55463).
257                 $( document.body ).on( 'click', '#wpPreview, #wpDiff', doLivePreview );
258         } );
260 }( mediaWiki, jQuery ) );