Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/VisualEditor/lib/ve/src/ui/inspectors/ve.ui.CommentAnnotationInspector.js
Ðазад
/*! * VisualEditor UserInterface CommentAnnotationInspector class. * * @copyright See AUTHORS.txt */ /** * Inspector for linked content. * * @class * @extends ve.ui.AnnotationInspector * * @constructor * @param {Object} [config] Configuration options */ ve.ui.CommentAnnotationInspector = function VeUiCommentAnnotationInspector() { // Parent constructor ve.ui.CommentAnnotationInspector.super.apply( this, arguments ); }; /* Inheritance */ OO.inheritClass( ve.ui.CommentAnnotationInspector, ve.ui.AnnotationInspector ); /* Static properties */ ve.ui.CommentAnnotationInspector.static.name = 'commentAnnotation'; ve.ui.CommentAnnotationInspector.static.title = OO.ui.deferMsg( 'visualeditor-commentinspector-title' ); ve.ui.CommentAnnotationInspector.static.modelClasses = [ ve.dm.CommentAnnotation ]; /* Methods */ /** * Handle annotation input change events * * @param {ve.dm.CommentAnnotation} annotation New comment annotation value */ ve.ui.CommentAnnotationInspector.prototype.onTextInputChange = function () { this.updateActions(); }; /** * Handle annotation input resize events */ ve.ui.CommentAnnotationInspector.prototype.onTextInputResize = function () { this.updateSize(); }; /** * Update the actions based on the annotation state */ ve.ui.CommentAnnotationInspector.prototype.updateActions = function () { let isValid = false; this.textInput.getValidity() .then( () => { isValid = true; } ) .always( () => { this.actions.forEach( { actions: [ 'done', 'insert' ] }, ( action ) => { action.setDisabled( !isValid ); } ); } ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.shouldRemoveAnnotation = function () { return !this.textInput.getValue(); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getInsertionText = function () { return '…'; }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getAnnotation = function () { const comments = ( this.initialAnnotation && this.initialAnnotation.getAttribute( 'comments' ).slice() ) || []; comments.push( { author: this.getFragment().getSurface().synchronizer.getAuthorData().name, text: this.textInput.getValue().trim() } ); return new ve.dm.CommentAnnotation( { type: 'commentAnnotation', attributes: { comments: comments } } ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getAnnotationFromFragment = function () { return new ve.dm.CommentAnnotation( { type: 'commentAnnotation', attributes: { comments: [] } } ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.initialize = function () { // Parent method ve.ui.CommentAnnotationInspector.super.prototype.initialize.call( this ); // Properties this.textInput = new OO.ui.MultilineTextInputWidget( { autosize: true } ); this.$thread = $( '<div>' ); this.$user = $( '<strong>' ); // Events this.textInput.connect( this, { change: 'onTextInputChange', resize: 'onTextInputResize' } ); // Initialization this.form.$element.append( this.$thread, $( '<div>' ).addClass( 've-ui-commentAnnotationContextItem-comment' ).append( this.$user, this.textInput.$element ) ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getSetupProcess = function ( data ) { return ve.ui.CommentAnnotationInspector.super.prototype.getSetupProcess.call( this, data ) .next( () => { if ( this.initialAnnotation ) { const $thread = ve.ui.CommentAnnotationContextItem.static.renderThread( this.initialAnnotation ); this.$thread.empty().append( $thread ); } this.$user.text( this.getFragment().getSurface().synchronizer.getAuthorData().name ); this.textInput.setValue( '' ); this.actions.forEach( { actions: [ 'done' ] }, ( action ) => { action.setLabel( ve.msg( 'visualeditor-commentannotationcontextitem-comment' ) ); } ); this.updateActions(); } ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getReadyProcess = function ( data ) { return ve.ui.CommentAnnotationInspector.super.prototype.getReadyProcess.call( this, data ) .next( () => { this.textInput.focus().select(); // Clear validation state, so that we don't get "invalid" state immediately on focus this.textInput.setValidityFlag( true ); } ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getHoldProcess = function ( data ) { return ve.ui.CommentAnnotationInspector.super.prototype.getHoldProcess.call( this, data ) .next( () => { this.textInput.blur(); } ); }; /** * @inheritdoc */ ve.ui.CommentAnnotationInspector.prototype.getTeardownProcess = function ( data ) { return ve.ui.CommentAnnotationInspector.super.prototype.getTeardownProcess.call( this, data ) .next( () => { this.textInput.setValue( '' ); } ); }; /* Registration */ ve.ui.windowFactory.register( ve.ui.CommentAnnotationInspector );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка