Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | 1x 1x 1x 1x 1x 1x 1x 1x 1x | /* global ve, $ */ const mobile = require( 'mobile.startup' ), EditorOverlayBase = require( './EditorOverlayBase.js' ), EditorGateway = require( './EditorGateway.js' ), identifyLeadParagraph = require( './identifyLeadParagraph.js' ), setPreferredEditor = require( './setPreferredEditor.js' ), util = mobile.util, overlayManager = mobile.getOverlayManager(), currentPageFn = mobile.currentPage; /** * Overlay for VisualEditor view * * @private */ class VisualEditorOverlay extends EditorOverlayBase { /** * @param {Object} options Configuration options * @param {SourceEditorOverlay} options.SourceEditorOverlay Class to use for standard * Wikitext editor. It must be passed in explicitly to avoid a cyclic * dependency between VisualEditorOverlay and SourceEditorOverlay */ constructor( options ) { const surfaceReady = util.Deferred(); super( util.extend( { editSwitcher: false, hasToolbar: true, onBeforeExit: ( exit, cancel ) => { this.onBeforeExit( exit, cancel ); }, isBorderBox: false, className: 'overlay editor-overlay editor-overlay-ve' }, options ) ); // VE surfaces must be attached to the DOM while initializing, and measurable this.$el.addClass( 'editor-overlay-ve-initializing' ); overlayManager.container.appendChild( this.$el[ 0 ] ); this.SourceEditorOverlay = options.SourceEditorOverlay; this.isNewPage = options.isNewPage; this.fromModified = options.dataPromise && options.switched; // Gateway present for a few utility purposes; the VE articletarget // handles the actual API calls separately this.gateway = new EditorGateway( { api: options.api, title: options.title, sectionId: options.sectionId, oldId: options.oldId } ); const origDataPromise = options.dataPromise || mw.libs.ve.targetLoader.requestPageData( 'visual', options.titleObj.getPrefixedDb(), { sessionStore: true, section: options.sectionId || null, oldId: options.oldId || undefined, targetName: ve.init.mw.MobileArticleTarget.static.trackingName, preload: options.preload, preloadparams: options.preloadparams, editintro: options.editintro } ); const modes = []; const currentPage = currentPageFn(); if ( currentPage.isVEVisualAvailable() ) { modes.push( 'visual' ); } if ( currentPage.isVESourceAvailable() ) { modes.push( 'source' ); } this.target = ve.init.mw.targetFactory.create( 'article', this, { $element: this.$el, // string or null, but not undefined section: this.options.sectionId || null, modes, // If source is passed in without being in modes, it'll just fall back to visual defaultMode: this.options.mode === 'source' ? 'source' : 'visual' } ); this.target.once( 'surfaceReady', () => { surfaceReady.resolve(); this.target.getSurface().getModel().getDocument().once( 'transact', () => { this.log( { action: 'firstChange' } ); } ); } ); let firstLoad = true; this.target.on( 'surfaceReady', () => { setPreferredEditor( this.target.getDefaultMode() === 'source' ? 'SourceEditor' : 'VisualEditor' ); // On first surfaceReady we wait for any dialogs to be closed before running targetInit. // On subsequent surfaceReady's (i.e. edit mode switch) we can initialize immediately. if ( !firstLoad ) { this.targetInit(); } firstLoad = false; } ); this.target.load( origDataPromise ); // Overlay is only shown after this is resolved. It must be resolved // with the API response regardless of what we are waiting for. this.dataPromise = origDataPromise.then( ( data ) => { this.gateway.wouldautocreate = data && data.visualeditor && data.visualeditor.wouldautocreate; return surfaceReady.then( () => { this.$el.removeClass( 'editor-overlay-ve-initializing' ); return data && data.visualeditor; } ); } ); } /** * @inheritdoc */ get templatePartials() { return util.extend( {}, super.templatePartials, { editHeader: util.template( ` <div class="overlay-header header initial-header hideable hidden"> <div class="toolbar"></div> </div> ` ), content: util.template( ` <div class="surface" lang="{{contentLang}}" dir="{{contentDir}}"> </div> ` ) } ); } /** * @inheritdoc */ get editor() { return 'visualeditor'; } /** * Destroy the existing VisualEditor target. * */ destroyTarget() { if ( this.target ) { this.target.destroy(); this.target = null; } } /** * @inheritdoc */ show() { const options = this.options, showAnonWarning = options.isAnon && !options.switched; super.show(); // log edit attempt this.log( { action: 'ready' } ); this.log( { action: 'loaded' } ); if ( !showAnonWarning ) { this.targetInit(); } else { this.$anonWarning = this.createAnonWarning( this.options ); this.$anonTalkWarning = this.createAnonTalkWarning(); this.$el.append( [ this.$anonTalkWarning, this.$anonWarning ] ); this.$el.find( '.overlay-content' ).hide(); } this.emit( 'editor-loaded' ); } /** * Initialize the target after it has been made visible */ targetInit() { // Note this.target will not be set if an error occurred and/or destroyTarget was called. if ( this.target ) { this.target.afterSurfaceReady(); this.scrollToLeadParagraph(); this.showEditNotices(); } } /** * Scroll so that the lead paragraph in edit mode shows at the same place on the screen * as the lead paragraph in read mode. * * Their normal position is different because of (most importantly) the lead paragraph * transformation to move it before the infobox, and also invisible templates and slugs * caused by the presence of hatnote templates (both only shown in edit mode). */ scrollToLeadParagraph() { let editLead, editLeadView, readLead, offset, initialCursorOffset; const currentPageHTMLParser = this.options.currentPageHTMLParser, fakeScroll = this.options.fakeScroll, $window = $( window ), section = this.target.section, surface = this.target.getSurface(), mode = surface.getMode(); if ( ( section === null || section === '0' ) && mode === 'visual' ) { editLead = identifyLeadParagraph( surface.getView().$attachedRootNode ); if ( currentPageHTMLParser.getLeadSectionElement() ) { readLead = identifyLeadParagraph( currentPageHTMLParser.getLeadSectionElement() ); } if ( editLead && readLead ) { offset = $( editLead ).offset().top - ( $( readLead ).offset().top - fakeScroll ); // Set a model range to match editLeadView = $( editLead ).data( 'view' ); if ( editLeadView ) { surface.getModel().setLinearSelection( new ve.Range( editLeadView.getModel().getRange().start ) ); initialCursorOffset = surface.getView().getSelection().getSelectionBoundingRect().top; // Ensure the surface is tall enough to scroll the cursor into view surface.$element.css( 'min-height', $window.height() + initialCursorOffset - surface.padding.top ); } $window.scrollTop( offset ); } } } /** * @inheritdoc */ onBeforeExit( exit, cancel ) { super.onBeforeExit( () => { // If this function is called, the parent method has decided that we should exit exit(); // VE-specific cleanup this.destroyTarget(); }, cancel ); } /** * @inheritdoc */ onClickBack() { super.onClickBack(); this.switchToEditor(); } /** * @inheritdoc */ onClickAnonymous() { this.$anonWarning.hide(); this.$anonTalkWarning.hide(); this.$el.find( '.overlay-content' ).show(); this.targetInit(); } /** * Reveal the editing interface. * */ switchToEditor() { this.showHidden( '.initial-header' ); } /** * Loads an {SourceEditorOverlay} and replaces the existing {VisualEditorOverlay} * * @param {jQuery.Promise} [dataPromise] Optional promise for loading content */ switchToSourceEditor( dataPromise ) { const SourceEditorOverlay = this.SourceEditorOverlay, options = this.getOptionsForSwitch(); this.log( { action: 'abort', type: 'switchnochange', mechanism: 'navigate' } ); this.logFeatureUse( { feature: 'editor-switch', action: 'source-mobile' } ); // Save a user setting indicating that this user prefers using the SourceEditor setPreferredEditor( 'SourceEditor' ); this.$el.addClass( 'switching' ); this.$el.find( '.overlay-header-container' ).hide(); this.$el.append( this.fakeToolbar() ); this.target.getSurface().setReadOnly( true ); if ( dataPromise ) { // If switching with edits we can't stay in section editing, as a VE edit // can always affect the whole document (e.g. references) options.sectionId = null; history.replaceState( null, document.title, '#/editor/all' ); } const newOverlay = new SourceEditorOverlay( options, dataPromise ); newOverlay.getLoadingPromise().then( () => { this.switching = true; this.overlayManager.replaceCurrent( newOverlay ); this.switching = false; } ); } /** * @inheritdoc */ hasChanged() { if ( this.saved ) { // If we just saved, there's not really any changes, and the // target is going to be destroyed in one tick return false; } return this.fromModified || ( this.target && this.target.getSurface() && this.target.getSurface().getModel().hasBeenModified() ); } } module.exports = VisualEditorOverlay; |