All files / src/ui/dialogs ve.ui.SpecialCharacterDialog.js

29.82% Statements 17/57
0% Branches 0/22
0% Functions 0/14
29.82% Lines 17/57

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                              1x                     1x       1x     1x     1x   1x   1x   1x             1x                               1x                                               1x                       1x                 1x                 1x                                                         1x       1x             1x  
/*!
 * VisualEditor UserInterface SpecialCharacterDialog class.
 *
 * @copyright See AUTHORS.txt
 */
 
/**
 * Inspector for inserting special characters.
 *
 * @class
 * @extends ve.ui.ToolbarDialog
 *
 * @constructor
 * @param {Object} [config] Configuration options
 */
ve.ui.SpecialCharacterDialog = function VeUiSpecialCharacterDialog() {
	// Parent constructor
	ve.ui.SpecialCharacterDialog.super.apply( this, arguments );
 
	this.characterListLoaded = false;
 
	this.$element.addClass( 've-ui-specialCharacterDialog' );
};
 
/* Inheritance */
 
OO.inheritClass( ve.ui.SpecialCharacterDialog, ve.ui.ToolbarDialog );
 
/* Static properties */
 
ve.ui.SpecialCharacterDialog.static.name = 'specialCharacter';
 
// Invisible title for accessibility
ve.ui.SpecialCharacterDialog.static.title =
	OO.ui.deferMsg( 'visualeditor-specialcharacter-button-tooltip' );
 
ve.ui.SpecialCharacterDialog.static.size = 'full';
 
ve.ui.SpecialCharacterDialog.static.padded = false;
 
ve.ui.SpecialCharacterDialog.static.activeSurface = true;
 
ve.ui.SpecialCharacterDialog.static.handlesSource = true;
 
/* Methods */
 
/**
 * @inheritdoc
 */
ve.ui.SpecialCharacterDialog.prototype.initialize = function () {
	// Parent method
	ve.ui.SpecialCharacterDialog.super.prototype.initialize.call( this );
 
	// Use 'visualeditor-symbolList-recentlyUsed-specialCharacters' in Hooks.php
	this.characterListLayout = new ve.ui.SymbolListBookletLayout( { preferenceNameSuffix: 'specialCharacters' } );
	this.characterListLayout.connect( this, {
		choose: 'onCharacterListChoose'
	} );
 
	this.$body.append( this.characterListLayout.$element );
};
 
/**
 * @inheritdoc
 */
ve.ui.SpecialCharacterDialog.prototype.getSetupProcess = function ( data ) {
	data = data || {};
	return ve.ui.SpecialCharacterDialog.super.prototype.getSetupProcess.call( this, data )
		.next( () => {
			this.surface = data.surface;
			this.surface.getModel().connect( this, { contextChange: 'onContextChange' } );
 
			this.characterListLayout.$element.toggleClass( 've-ui-specialCharacterDialog-characterList-source', this.surface.getMode() === 'source' );
 
			if ( !this.characterListLoaded ) {
				this.characterListLoaded = true;
 
				ve.init.platform.fetchSpecialCharList()
					.then( ( symbolData ) => {
						this.characterListLayout.setSymbolData( symbolData );
						this.updateSize();
					} );
			}
		} );
};
 
/**
 * @inheritdoc
 */
ve.ui.SpecialCharacterDialog.prototype.getTeardownProcess = function ( data ) {
	data = data || {};
	return ve.ui.SpecialCharacterDialog.super.prototype.getTeardownProcess.call( this, data )
		.first( () => {
			this.surface.getModel().disconnect( this );
			this.surface = null;
		} );
};
 
/**
 * @inheritdoc
 */
ve.ui.SpecialCharacterDialog.prototype.getActionProcess = function ( action ) {
	return new OO.ui.Process( () => {
		this.close( { action: action } );
	} );
};
 
/**
 * Handle context change events from the surface model
 */
ve.ui.SpecialCharacterDialog.prototype.onContextChange = function () {
	this.setDisabled( !( this.surface.getModel().getSelection() instanceof ve.dm.LinearSelection ) );
};
 
/**
 * Handle a character being chosen from the list
 *
 * @param {Object} character Character data
 */
ve.ui.SpecialCharacterDialog.prototype.onCharacterListChoose = function ( character ) {
	const fragment = this.surface.getModel().getFragment(),
		mode = this.surface.getMode();
 
	function encode( text ) {
		if ( mode === 'visual' && character.entities ) {
			return ve.init.platform.decodeEntities( text );
		} else {
			return text;
		}
	}
 
	if ( character ) {
		if ( typeof character === 'string' || character.string ) {
			fragment.insertContent( encode( character.string || character ), true ).collapseToEnd().select();
		} else if ( character.action.type === 'replace' ) {
			fragment.insertContent( encode( character.action.options.peri ), true ).collapseToEnd().select();
		} else if ( character.action.type === 'encapsulate' ) {
			fragment.collapseToStart().insertContent( encode( character.action.options.pre ), true );
			fragment.collapseToEnd().insertContent( encode( character.action.options.post ), true ).collapseToEnd().select();
		}
 
		ve.track(
			'activity.' + this.constructor.static.name,
			{ action: 'insert-' + this.characterListLayout.currentPageName }
		);
	}
};
 
ve.ui.SpecialCharacterDialog.prototype.getBodyHeight = function () {
	return 150;
};
 
ve.ui.SpecialCharacterDialog.prototype.getContentHeight = function () {
	// Skip slow complicated measurements that always return 0 for this window
	return this.getBodyHeight();
};
 
/* Registration */
 
ve.ui.windowFactory.register( ve.ui.SpecialCharacterDialog );