/*! * VisualEditor MWLanuageVariantNodeContextItem class. * * @copyright 2011-2017 VisualEditor Team and others; see http://ve.mit-license.org */ /** * Context item for a ve.dm.MWLanguageVariantNode. * * @class * @extends ve.ui.LinearContextItem * * @constructor * @param {ve.ui.Context} context Context item is in * @param {ve.dm.MWLanguageVariantNode} model Model item is related to * @param {Object} config Configuration options */ ve.ui.MWLanguageVariantNodeContextItem = function VeUiMWLanguageVariantNodeContextItem() { // Parent constructor ve.ui.MWLanguageVariantNodeContextItem.super.apply( this, arguments ); // Initialization this.$element.addClass( 've-ui-mwLanguageVariantNodeContextItem' ); }; /* Inheritance */ OO.inheritClass( ve.ui.MWLanguageVariantNodeContextItem, ve.ui.LinearContextItem ); /* Static Properties */ ve.ui.MWLanguageVariantNodeContextItem.static.name = 'mwLanguageVariant'; ve.ui.MWLanguageVariantNodeContextItem.static.icon = 'language'; ve.ui.MWLanguageVariantNodeContextItem.static.label = null; // see #setup() ve.ui.MWLanguageVariantNodeContextItem.static.modelClasses = [ ve.dm.MWLanguageVariantBlockNode, ve.dm.MWLanguageVariantInlineNode, ve.dm.MWLanguageVariantHiddenNode ]; ve.ui.MWLanguageVariantNodeContextItem.static.commandName = 'mwLanguageVariant'; /* Methods */ /** * @inheritdoc */ ve.ui.MWLanguageVariantNodeContextItem.prototype.setup = function () { // Set up label var messageKey = 'visualeditor-mwlanguagevariantcontextitem-title-' + this.model.getRuleType(); this.setLabel( OO.ui.deferMsg( messageKey ) ); // Invoke superclass method. return ve.ui.MWLanguageVariantNodeContextItem.super.prototype.setup.call( this ); }; /** * @inheritdoc */ ve.ui.MWLanguageVariantNodeContextItem.prototype.renderBody = function () { var $body = this.$body, $table = $( '
' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-name-label' ) ) ) .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-code-label' ) ) ); languageCodes = ( type === 'filter' ) ? variantInfo.filter.l : [ variantInfo.name.t ]; languageCodes.forEach( function ( code ) { var name = ve.init.platform.getLanguageName( code.toLowerCase() ); if ( !name ) { name = ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-invalid-language-label' ); } $table .append( $( ' | ||||||
---|---|---|---|---|---|---|---|
' ).text( name ).attr( 'lang', code ) ) .append( $( ' | ' ).text( code ) ) ); } ); break; case 'oneway': $header .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-name-label' ) ) ) .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-code-label' ) ) ) .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-text-from-label' ) ) ) .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-text-to-label' ) ) ); variantInfo.oneway.forEach( function ( item ) { var $fromText = $( ' | ' ).html( item.f ), $toText = $( ' | ' ).html( item.t ), code = item.l, name = ve.init.platform.getLanguageName( code.toLowerCase() ); $table .append( $( ' |
' ).text( name ).attr( 'lang', code ) ) .append( $( ' | ' ).text( code ) ) .append( $fromText ) .append( $toText ) ); } ); break; case 'twoway': $header .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-name-label' ) ) ) .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-code-label' ) ) ) .append( $( ' | ' ).append( ve.msg( 'visualeditor-mwlanguagevariantcontextitem-rule-text-twoway-label' ) ) ); variantInfo.twoway.forEach( function ( item ) { var code = item.l, name = ve.init.platform.getLanguageName( code.toLowerCase() ), $text = $( ' | ' ).html( item.t ); ve.dm.MWLanguageVariantNode.static.processVariants( $text, { showHidden: true } ); $table .append( $( ' | ||
' ).text( name ).attr( 'lang', code ) ) .append( $( ' | ' ).text( code ) )
.append( $text )
);
} );
break;
default:
break;
}
if ( $table.find( 'tr' ).length > 1 ) {
// Don't put $table in $body if the table is empty; this allows
// CSS :empty rules to have their proper effect.
ve.dm.MWLanguageVariantNode.static.processVariants(
$table, { showHidden: true }
);
$body.append( $table );
}
// Show "extra" properties, like describe, title, etc.
[ 'describe', 'title', 'hidden' ].forEach( function ( flag ) {
var f = ( flag === 'hidden' ) ? isHidden : variantInfo[ flag ];
if ( f ) {
$body.append( $( ' ' ).text( OO.ui.msg( 'visualeditor-mwlanguagevariantcontextitem-flag-' + flag ) ) ); } } ); }; /** * @inheritdoc */ ve.ui.MWLanguageVariantNodeContextItem.prototype.getCommand = function () { var type = this.model.getRuleType(), cmdName = this.constructor.static.commandName + '-' + type; return this.context.getSurface().commandRegistry.lookup( cmdName ); }; /* Registration */ ve.ui.contextItemFactory.register( ve.ui.MWLanguageVariantNodeContextItem ); [ 'disabled', 'filter', 'name', 'twoway', 'oneway' ].forEach( function ( type ) { ve.ui.commandRegistry.register( new ve.ui.Command( 'mwLanguageVariant-' + type, 'window', 'open', { args: [ 'mwLanguageVariant-' + type ], supportedSelections: [ 'linear' ] } ) ); } ); |