mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-14 18:15:19 +00:00
73 lines
1.6 KiB
JavaScript
73 lines
1.6 KiB
JavaScript
/**
|
|
* Creates an ve.ui.Inspector object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {String} name
|
|
*/
|
|
ve.ui.Inspector = function( toolbar, context ) {
|
|
// Inheritance
|
|
ve.EventEmitter.call( this );
|
|
if ( !toolbar || !context ) {
|
|
return;
|
|
}
|
|
|
|
// Properties
|
|
this.toolbar = toolbar;
|
|
this.context = context;
|
|
this.$ = $( '<div class="es-inspector"></div>' );
|
|
this.$closeButton = $( '<div class="es-inspector-button es-inspector-closeButton"></div>' )
|
|
.appendTo( this.$ );
|
|
this.$acceptButton = $( '<div class="es-inspector-button es-inspector-acceptButton"></div>' )
|
|
.appendTo( this.$ );
|
|
this.$form = $( '<form></form>' ).appendTo( this.$ );
|
|
|
|
// Events
|
|
var _this = this;
|
|
this.$closeButton.click( function() {
|
|
_this.context.closeInspector( false );
|
|
} );
|
|
this.$acceptButton.click( function() {
|
|
if ( !$(this).is( '.es-inspector-button-disabled' ) ) {
|
|
_this.context.closeInspector( true );
|
|
}
|
|
} );
|
|
this.$form.submit( function( e ) {
|
|
_this.context.closeInspector( true );
|
|
e.preventDefault();
|
|
return false;
|
|
} );
|
|
this.$form.keydown( function( e ) {
|
|
// Escape
|
|
if ( e.which === 27 ) {
|
|
_this.context.closeInspector( false );
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
} );
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.Inspector.prototype.open = function() {
|
|
this.$.show();
|
|
this.context.closeMenu();
|
|
if ( this.onOpen ) {
|
|
this.onOpen();
|
|
}
|
|
this.emit( 'open' );
|
|
};
|
|
|
|
ve.ui.Inspector.prototype.close = function( accept ) {
|
|
this.$.hide();
|
|
if ( this.onClose ) {
|
|
this.onClose( accept );
|
|
}
|
|
this.emit( 'close' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ui.Inspector, ve.EventEmitter );
|