Merge "mediawiki.special.upload: Use ES5 .forEach() instead of jQuery"
[lhc/web/wiklou.git] / resources / src / mediawiki.action / mediawiki.action.edit.preview.js
1 /*!
2 * Live edit preview.
3 */
4 ( function ( mw, $ ) {
5
6 /**
7 * @ignore
8 * @param {jQuery.Event} e
9 */
10 function doLivePreview( e ) {
11 var isDiff, api, parseRequest, diffRequest, postData, copySelectors, section, summary,
12 $wikiPreview, $wikiDiff, $editform, $textbox, $copyElements, $spinner, $errorBox;
13
14 isDiff = ( e.target.name === 'wpDiff' );
15 $wikiPreview = $( '#wikiPreview' );
16 $wikiDiff = $( '#wikiDiff' );
17 $editform = $( '#editform' );
18 $textbox = $editform.find( '#wpTextbox1' );
19
20 summary = OO.ui.infuse( $( '#wpSummaryWidget' ) );
21
22 $spinner = $( '.mw-spinner-preview' );
23 $errorBox = $( '.errorbox' );
24 section = $editform.find( '[name="wpSection"]' ).val();
25
26 if ( $textbox.length === 0 ) {
27 return;
28 }
29 // Show changes for a new section is not yet supported
30 if ( isDiff && section === 'new' ) {
31 return;
32 }
33 e.preventDefault();
34
35 // Remove any previously displayed errors
36 $errorBox.remove();
37 // Show #wikiPreview if it's hidden to be able to scroll to it
38 // (if it is hidden, it's also empty, so nothing changes in the rendering)
39 $wikiPreview.show();
40
41 // Jump to where the preview will appear
42 $wikiPreview[ 0 ].scrollIntoView();
43
44 copySelectors = [
45 // Main
46 '.mw-indicators',
47 '#firstHeading',
48 '#wikiPreview',
49 '#wikiDiff',
50 '#catlinks',
51 '#p-lang',
52 // Editing-related
53 '.templatesUsed',
54 '.limitreport',
55 '.mw-summary-preview'
56 ];
57 $copyElements = $( copySelectors.join( ',' ) );
58
59 // Not shown during normal preview, to be removed if present
60 $( '.mw-newarticletext' ).remove();
61
62 if ( $spinner.length === 0 ) {
63 $spinner = $.createSpinner( {
64 size: 'large',
65 type: 'block'
66 } )
67 .addClass( 'mw-spinner-preview' )
68 .css( 'margin-top', '1em' );
69 $wikiPreview.before( $spinner );
70 } else {
71 $spinner.show();
72 }
73
74 // Can't use fadeTo because it calls show(), and we might want to keep some elements hidden
75 // (e.g. empty #catlinks)
76 $copyElements.animate( { opacity: 0.4 }, 'fast' );
77
78 api = new mw.Api();
79 postData = {
80 formatversion: 2,
81 action: 'parse',
82 title: mw.config.get( 'wgPageName' ),
83 summary: summary.getValue(),
84 prop: ''
85 };
86
87 if ( isDiff ) {
88 $wikiPreview.hide();
89
90 if ( postData.summary ) {
91 parseRequest = api.post( postData );
92 }
93
94 diffRequest = api.post( {
95 formatversion: 2,
96 action: 'query',
97 prop: 'revisions',
98 titles: mw.config.get( 'wgPageName' ),
99 rvdifftotext: $textbox.textSelection( 'getContents' ),
100 rvdifftotextpst: true,
101 rvprop: '',
102 rvsection: section === '' ? undefined : section
103 } );
104
105 // Wait for the summary before showing the diff so the page doesn't jump twice
106 $.when( diffRequest, parseRequest ).done( function ( response ) {
107 var diffHtml;
108 try {
109 diffHtml = response[ 0 ].query.pages[ 0 ]
110 .revisions[ 0 ].diff.body;
111 $wikiDiff.find( 'table.diff tbody' ).html( diffHtml );
112 mw.hook( 'wikipage.diff' ).fire( $wikiDiff.find( 'table.diff' ) );
113 } catch ( err ) {
114 // "result.blah is undefined" error, ignore
115 mw.log.warn( err );
116 }
117 $wikiDiff.show();
118 } );
119 } else {
120 $wikiDiff.hide();
121
122 $.extend( postData, {
123 prop: 'text|indicators|displaytitle|modules|jsconfigvars|categorieshtml|templates|langlinks|limitreporthtml',
124 text: $textbox.textSelection( 'getContents' ),
125 pst: true,
126 preview: true,
127 sectionpreview: section !== '',
128 disableeditsection: true,
129 useskin: mw.config.get( 'skin' ),
130 uselang: mw.config.get( 'wgUserLanguage' )
131 } );
132 if ( section === 'new' ) {
133 postData.section = 'new';
134 postData.sectiontitle = postData.summary;
135 }
136
137 parseRequest = api.post( postData );
138 parseRequest.done( function ( response ) {
139 var newList, $displaytitle, $content, $parent, $list;
140 if ( response.parse.jsconfigvars ) {
141 mw.config.set( response.parse.jsconfigvars );
142 }
143 if ( response.parse.modules ) {
144 mw.loader.load( response.parse.modules.concat(
145 response.parse.modulescripts,
146 response.parse.modulestyles
147 ) );
148 }
149
150 newList = [];
151 $.each( response.parse.indicators, function ( name, indicator ) {
152 newList.push(
153 $( '<div>' )
154 .addClass( 'mw-indicator' )
155 .attr( 'id', mw.util.escapeIdForAttribute( 'mw-indicator-' + name ) )
156 .html( indicator )
157 .get( 0 ),
158 // Add a whitespace between the <div>s because
159 // they get displayed with display: inline-block
160 document.createTextNode( '\n' )
161 );
162 } );
163 $( '.mw-indicators' ).empty().append( newList );
164
165 if ( response.parse.displaytitle ) {
166 $displaytitle = $( $.parseHTML( response.parse.displaytitle ) );
167 $( '#firstHeading' ).msg(
168 mw.config.get( 'wgEditMessage', 'editing' ),
169 $displaytitle
170 );
171 document.title = mw.msg(
172 'pagetitle',
173 mw.msg(
174 mw.config.get( 'wgEditMessage', 'editing' ),
175 $displaytitle.text()
176 )
177 );
178 }
179 if ( response.parse.categorieshtml ) {
180 $content = $( $.parseHTML( response.parse.categorieshtml ) );
181 mw.hook( 'wikipage.categories' ).fire( $content );
182 $( '.catlinks[data-mw="interface"]' ).replaceWith( $content );
183 }
184 if ( response.parse.templates ) {
185 newList = response.parse.templates.map( function ( template ) {
186 return $( '<li>' )
187 .append( $( '<a>' )
188 .attr( {
189 href: mw.util.getUrl( template.title ),
190 'class': ( template.exists ? '' : 'new' )
191 } )
192 .text( template.title )
193 );
194 } );
195
196 $editform.find( '.templatesUsed .mw-editfooter-list' ).detach().empty().append( newList ).appendTo( '.templatesUsed' );
197 }
198 if ( response.parse.limitreporthtml ) {
199 $( '.limitreport' ).html( response.parse.limitreporthtml );
200 }
201 if ( response.parse.langlinks && mw.config.get( 'skin' ) === 'vector' ) {
202 newList = response.parse.langlinks.map( function ( langlink ) {
203 var bcp47 = mw.language.bcp47( langlink.lang );
204 return $( '<li>' )
205 .addClass( 'interlanguage-link interwiki-' + langlink.lang )
206 .append( $( '<a>' )
207 .attr( {
208 href: langlink.url,
209 title: langlink.title + ' - ' + langlink.langname,
210 lang: bcp47,
211 hreflang: bcp47
212 } )
213 .text( langlink.autonym )
214 );
215 } );
216 $list = $( '#p-lang ul' );
217 $parent = $list.parent();
218 $list.detach().empty().append( newList ).prependTo( $parent );
219 }
220
221 if ( response.parse.text ) {
222 $content = $wikiPreview.children( '.mw-content-ltr,.mw-content-rtl' );
223 $content
224 .detach()
225 .html( response.parse.text );
226
227 mw.hook( 'wikipage.content' ).fire( $content );
228
229 // Reattach
230 $wikiPreview.append( $content );
231
232 $wikiPreview.show();
233 }
234 } );
235 }
236 $.when( parseRequest, diffRequest ).done( function ( parseResp ) {
237 var parse = parseResp && parseResp[ 0 ].parse,
238 isSubject = ( section === 'new' ),
239 summaryMsg = isSubject ? 'subject-preview' : 'summary-preview',
240 $summaryPreview = $editform.find( '.mw-summary-preview' ).empty();
241 if ( parse && parse.parsedsummary ) {
242 $summaryPreview.append(
243 mw.message( summaryMsg ).parse(),
244 ' ',
245 $( '<span>' ).addClass( 'comment' ).html(
246 // There is no equivalent to rawParams
247 mw.message( 'parentheses' ).escaped()
248 // .replace() use $ as start of a pattern.
249 // $$ is the pattern for '$'.
250 // The inner .replace() duplicates any $ and
251 // the outer .replace() simplifies the $$.
252 .replace( '$1', parse.parsedsummary.replace( /\$/g, '$$$$' ) )
253 )
254 );
255 }
256 mw.hook( 'wikipage.editform' ).fire( $editform );
257 } ).always( function () {
258 $spinner.hide();
259 $copyElements.animate( {
260 opacity: 1
261 }, 'fast' );
262 } ).fail( function ( code, result ) {
263 // This just shows the error for whatever request failed first
264 var errorMsg = 'API error: ' + code;
265 if ( code === 'http' ) {
266 errorMsg = 'HTTP error: ';
267 if ( result.exception ) {
268 errorMsg += result.exception;
269 } else {
270 errorMsg += result.textStatus;
271 }
272 }
273 $errorBox = $( '<div>' )
274 .addClass( 'errorbox' )
275 .html( '<strong>' + mw.message( 'previewerrortext' ).escaped() + '</strong><br>' )
276 .append( document.createTextNode( errorMsg ) );
277 $wikiDiff.hide();
278 $wikiPreview.hide().before( $errorBox );
279 } );
280 }
281
282 $( function () {
283 // Do not enable on user .js/.css pages, as there's no sane way of "previewing"
284 // the scripts or styles without reloading the page.
285 if ( $( '#mw-userjsyoucanpreview' ).length || $( '#mw-usercssyoucanpreview' ).length ) {
286 return;
287 }
288
289 // The following elements can change in a preview but are not output
290 // by the server when they're empty until the preview response.
291 // TODO: Make the server output these always (in a hidden state), so we don't
292 // have to fish and (hopefully) put them in the right place (since skins
293 // can change where they are output).
294
295 if ( !document.getElementById( 'p-lang' ) && document.getElementById( 'p-tb' ) && mw.config.get( 'skin' ) === 'vector' ) {
296 $( '.portal:last' ).after(
297 $( '<div>' ).attr( {
298 'class': 'portal',
299 id: 'p-lang',
300 role: 'navigation',
301 'aria-labelledby': 'p-lang-label'
302 } )
303 .append( $( '<h3>' ).attr( 'id', 'p-lang-label' ).text( mw.msg( 'otherlanguages' ) ) )
304 .append( $( '<div>' ).addClass( 'body' ).append( '<ul>' ) )
305 );
306 }
307
308 if ( !$( '.mw-summary-preview' ).length ) {
309 $( '#wpSummaryWidget' ).after(
310 $( '<div>' ).addClass( 'mw-summary-preview' )
311 );
312 }
313
314 if ( !document.getElementById( 'wikiDiff' ) && document.getElementById( 'wikiPreview' ) ) {
315 $( '#wikiPreview' ).after(
316 $( '<div>' )
317 .hide()
318 .attr( 'id', 'wikiDiff' )
319 .html( '<table class="diff"><col class="diff-marker"/><col class="diff-content"/>' +
320 '<col class="diff-marker"/><col class="diff-content"/><tbody/></table>' )
321 );
322 }
323
324 // This should be moved down to '#editform', but is kept on the body for now
325 // because the LiquidThreads extension is re-using this module with only half
326 // the EditPage (doesn't include #editform presumably, T57463).
327 $( document.body ).on( 'click', '#wpPreview, #wpDiff', doLivePreview );
328 } );
329
330 }( mediaWiki, jQuery ) );