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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /*! * VisualEditor UserInterface TableDialog class. * * @copyright See AUTHORS.txt */ /** * Dialog for table properties. * * @class * @extends ve.ui.FragmentDialog * * @constructor * @param {Object} [config] Configuration options */ ve.ui.TableDialog = function VeUiTableDialog( config ) { // Parent constructor ve.ui.TableDialog.super.call( this, config ); this.$element.addClass( 've-ui-tableDialog' ); }; /* Inheritance */ OO.inheritClass( ve.ui.TableDialog, ve.ui.FragmentDialog ); /* Static Properties */ ve.ui.TableDialog.static.name = 'table'; ve.ui.TableDialog.static.size = 'medium'; ve.ui.TableDialog.static.title = OO.ui.deferMsg( 'visualeditor-dialog-table-title' ); /* Methods */ /** * @inheritdoc */ ve.ui.TableDialog.prototype.initialize = function () { // Parent method ve.ui.TableDialog.super.prototype.initialize.call( this ); this.initialValues = null; this.panel = new OO.ui.PanelLayout( { padded: true, expanded: false, classes: [ 've-ui-tableDialog-panel' ] } ); this.captionToggle = new OO.ui.ToggleSwitchWidget(); this.captionField = new OO.ui.FieldLayout( this.captionToggle, { align: 'left', label: ve.msg( 'visualeditor-dialog-table-caption' ) } ); this.captionToggle.connect( this, { change: 'updateActions' } ); this.panel.$element.append( this.captionField.$element ); this.$body.append( this.panel.$element ); }; /** * Update the 'done' action according to whether there are changes */ ve.ui.TableDialog.prototype.updateActions = function () { this.actions.setAbilities( { done: !ve.compare( this.getValues(), this.initialValues ) } ); }; /** * Get object describing current form values. * * To be compared against this.initialValues * * @return {Object} Current form values */ ve.ui.TableDialog.prototype.getValues = function () { return { caption: this.captionToggle.getValue() }; }; /** * @inheritdoc */ ve.ui.TableDialog.prototype.getSetupProcess = function ( data ) { return ve.ui.TableDialog.super.prototype.getSetupProcess.call( this, data ) .next( () => { const isReadOnly = this.isReadOnly(); this.initialValues = { caption: !!this.getFragment().getSelection().getTableNode( this.getFragment().getDocument() ).getCaptionNode() }; this.captionToggle.setValue( this.initialValues.caption ).setDisabled( isReadOnly ); this.closingFragment = null; this.updateActions(); } ); }; /** * @inheritdoc */ ve.ui.TableDialog.prototype.getActionProcess = function ( action ) { return ve.ui.TableDialog.super.prototype.getActionProcess.call( this, action ) .next( () => { if ( action === 'done' ) { const surfaceModel = this.getFragment().getSurface(); const selection = surfaceModel.getSelection(); const captionNode = this.getFragment().getSelection().getTableNode( this.getFragment().getDocument() ).getCaptionNode(); if ( this.captionToggle.getValue() !== this.initialValues.caption ) { let fragment; if ( this.initialValues.caption ) { fragment = surfaceModel.getLinearFragment( captionNode.getOuterRange(), true ); fragment.removeContent(); } else { fragment = surfaceModel.getLinearFragment( new ve.Range( selection.tableRange.start + 1 ), true ); fragment.insertContent( [ { type: 'tableCaption' }, { type: 'paragraph', internal: { generated: 'wrapper' } }, { type: '/paragraph' }, { type: '/tableCaption' } ], false ); // Don't change this.fragment immediately, wait until teardown process, as child // dialogs my want access to the original fragment this.closingFragment = fragment.collapseToStart().adjustLinearSelection( 2, 2 ); } } this.close( { action: 'done' } ); } } ); }; /** * @inheritdoc */ ve.ui.TableDialog.prototype.getTeardownProcess = function ( action ) { return ve.ui.TableDialog.super.prototype.getTeardownProcess.call( this, action ) .first( () => { this.fragment = this.closingFragment || this.fragment; } ); }; /* Registration */ ve.ui.windowFactory.register( ve.ui.TableDialog ); |