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 | 1x 22x 22x 22x 22x 22x 1x 1x 1x 1x 1x 1x 22x 22x 22x 22x 22x 22x 22x 22x 22x 1x 1x 70x 70x 1x 22x 22x 1x 22x 22x 1x 22x 1x | /*!
* VisualEditor UserInterface FragmentInspector class.
*
* @copyright See AUTHORS.txt
*/
/**
* Inspector for working with fragments of content.
*
* @class
* @extends OO.ui.ProcessDialog
* @mixes ve.ui.FragmentWindow
*
* @constructor
* @param {Object} [config] Configuration options
* @param {boolean} [config.padded=true] Inspector form area has padding,
* set to false for edge-to-edge layouts, e.g. IndexLayout
*/
ve.ui.FragmentInspector = function VeUiFragmentInspector( config = {} ) {
// Parent constructor
ve.ui.FragmentInspector.super.call( this, config );
// Mixin constructor
ve.ui.FragmentWindow.call( this, config );
// Properties
this.initialFragment = null;
this.previousSelection = null;
this.padded = config.padded !== false;
};
/* Inheritance */
OO.inheritClass( ve.ui.FragmentInspector, OO.ui.ProcessDialog );
OO.mixinClass( ve.ui.FragmentInspector, ve.ui.FragmentWindow );
/* Static Properties */
ve.ui.FragmentInspector.static.actions = [
{
label: OO.ui.deferMsg( 'visualeditor-dialog-action-cancel' ),
flags: [ 'safe', 'close' ],
modes: [ 'readonly', 'edit', 'insert' ]
},
{
action: 'done',
label: OO.ui.deferMsg( 'visualeditor-dialog-action-done' ),
flags: [ 'progressive', 'primary' ],
modes: 'edit'
},
{
action: 'done',
label: OO.ui.deferMsg( 'visualeditor-dialog-action-insert' ),
flags: [ 'progressive', 'primary' ],
modes: 'insert'
}
];
ve.ui.FragmentInspector.static.size = 'large';
/* Methods */
/**
* Handle form submit events.
*
* Executes the 'done' action when the user presses enter in the form.
*/
ve.ui.FragmentInspector.prototype.onFormSubmit = function () {
this.executeAction( 'done' );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.initialize = function () {
// Parent method
ve.ui.FragmentInspector.super.prototype.initialize.call( this );
// Properties
this.container = new OO.ui.PanelLayout( {
classes: [ 've-ui-fragmentInspector-container' ],
scrollable: true,
expanded: false,
padded: this.padded
} );
this.form = new OO.ui.FormLayout( {
classes: [ 've-ui-fragmentInspector-form' ]
} );
// Events
this.form.connect( this, { submit: 'onFormSubmit' } );
// Initialization
this.$element.addClass( 've-ui-fragmentInspector' );
this.$content.addClass( 've-ui-fragmentInspector-content' );
this.container.$element.append( this.form.$element );
this.$body.append( this.container.$element );
this.tabIndexScope = new ve.ui.TabIndexScope( {
root: this.$content
} );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.getActionProcess = function ( action ) {
if ( action === 'done' ) {
return new OO.ui.Process( () => {
this.close( { action: 'done' } );
} );
}
return ve.ui.FragmentInspector.super.prototype.getActionProcess.call( this, action );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.getActionWidgetConfig = function ( config = {} ) {
// Mixin method
config = ve.ui.FragmentWindow.prototype.getActionWidgetConfig.call( this, config );
// Parent method
return ve.ui.FragmentInspector.super.prototype.getActionWidgetConfig.call( this, config );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.getSetupProcess = function ( data ) {
// Parent method
const process = ve.ui.FragmentInspector.super.prototype.getSetupProcess.call( this, data );
// Mixin method
return ve.ui.FragmentWindow.prototype.getSetupProcess.call( this, data, process );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.getTeardownProcess = function ( data ) {
// Parent method
const process = ve.ui.FragmentInspector.super.prototype.getTeardownProcess.call( this, data );
// Mixin method
return ve.ui.FragmentWindow.prototype.getTeardownProcess.call( this, data, process );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.getReadyProcess = function ( data ) {
return ve.ui.FragmentInspector.super.prototype.getReadyProcess.call( this, data )
// Add a 0ms timeout before doing anything. Because⦠Internet Explorer :(
.first( 0 );
};
/**
* @inheritdoc
*/
ve.ui.FragmentInspector.prototype.getBodyHeight = function () {
return Math.ceil( this.container.$element[ 0 ].scrollHeight );
};
|