mediawiki.action.edit.preview: Disable if there is no #wpTextbox1
[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, request, postData, copySelectors, section,
12 $wikiPreview, $wikiDiff, $editform, $copyElements, $spinner;
13
14 e.preventDefault();
15
16 isDiff = ( e.target.name === 'wpDiff' );
17 $wikiPreview = $( '#wikiPreview' );
18 $wikiDiff = $( '#wikiDiff' );
19 $editform = $( '#editform' );
20 section = $editform.find( '[name="wpSection"]' ).val();
21
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();
25
26 // Jump to where the preview will appear
27 $wikiPreview[0].scrollIntoView();
28
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( ',' ) );
42
43 // Not shown during normal preview, to be removed if present
44 $( '.mw-newarticletext' ).remove();
45
46 $spinner = $.createSpinner( {
47 size: 'large',
48 type: 'block'
49 } );
50 $wikiPreview.before( $spinner );
51 $spinner.css( {
52 marginTop: $spinner.height()
53 } );
54
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' );
58
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 };
67
68 if ( isDiff ) {
69 $wikiPreview.hide();
70
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, $content, $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 } );
138
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 }
164
165 if ( response.parse.text['*'] ) {
166 $content = $wikiPreview.children( '.mw-content-ltr,.mw-content-rtl' );
167 $content
168 .detach()
169 .html( response.parse.text['*'] );
170
171 mw.hook( 'wikipage.content' ).fire( $content );
172
173 // Reattach
174 $wikiPreview.append( $content );
175
176 $wikiPreview.show();
177
178 }
179 } );
180 }
181 request.done( function ( response ) {
182 if ( response.parse.parsedsummary ) {
183 // TODO implement special behavior for section === 'new'
184 $editform.find( '.mw-summary-preview' )
185 .empty()
186 .append(
187 mw.message( 'summary-preview' ).parse(),
188 ' ',
189 $( '<span>' ).addClass( 'comment' ).html(
190 // There is no equivalent to rawParams
191 mw.message( 'parentheses' ).escaped()
192 .replace( '$1', response.parse.parsedsummary['*'] )
193 )
194 );
195 }
196 } );
197 request.always( function () {
198 $spinner.remove();
199 $copyElements.animate( {
200 opacity: 1
201 }, 'fast' );
202 } );
203 }
204
205 $( function () {
206 // Do not enable on user .js/.css pages, as there's no sane way of "previewing"
207 // the scripts or styles without reloading the page.
208 // Do not enable for ProofreadPage Index page editors, which have no textbox
209 if ( $( '#mw-userjsyoucanpreview' ).length || $( '#mw-usercssyoucanpreview' ).length || $( '#wpTextbox1' ).length === 0 ) {
210 return;
211 }
212
213 // The following elements can change in a preview but are not output
214 // by the server when they're empty until the preview response.
215 // TODO: Make the server output these always (in a hidden state), so we don't
216 // have to fish and (hopefully) put them in the right place (since skins
217 // can change where they are output).
218
219 if ( !document.getElementById( 'p-lang' ) && document.getElementById( 'p-tb' ) && mw.config.get( 'skin' ) === 'vector' ) {
220 $( '.portal:last' ).after(
221 $( '<div>' ).attr( {
222 'class': 'portal',
223 'id': 'p-lang',
224 'role': 'navigation',
225 'title': mw.msg( 'tooltip-p-lang' ),
226 'aria-labelledby': 'p-lang-label'
227 } )
228 .append( $( '<h3>' ).attr( 'id', 'p-lang-label' ).text( mw.msg( 'otherlanguages' ) ) )
229 .append( $( '<div>' ).addClass( 'body' ).append( '<ul>' ) )
230 );
231 }
232
233 if ( !$( '.mw-summary-preview' ).length ) {
234 $( '.editCheckboxes' ).before(
235 $( '<div>' ).addClass( 'mw-summary-preview' )
236 );
237 }
238
239 if ( !document.getElementById( 'wikiDiff' ) && document.getElementById( 'wikiPreview' ) ) {
240 $( '#wikiPreview' ).after(
241 $( '<div>' )
242 .hide()
243 .attr( 'id', 'wikiDiff' )
244 .html( '<table class="diff"><col class="diff-marker"/><col class="diff-content"/>' +
245 '<col class="diff-marker"/><col class="diff-content"/><tbody/></table>' )
246 );
247 }
248
249 // This should be moved down to '#editform', but is kept on the body for now
250 // because the LiquidThreads extension is re-using this module with only half
251 // the EditPage (doesn't include #editform presumably, bug 55463).
252 $( document.body ).on( 'click', '#wpPreview, #wpDiff', doLivePreview );
253 } );
254
255 }( mediaWiki, jQuery ) );