wikimedia/mediawiki-extensions-VisualEditor

View on GitHub
modules/ve-mw/ui/contextitems/ve.ui.MWGalleryContextItem.js

Summary

Maintainability
A
1 hr
Test Coverage
/*!
 * VisualEditor MWGalleryContextItem class.
 *
 * @copyright See AUTHORS.txt
 */

/**
 * Context item for a MWGallery.
 *
 * @class
 * @extends ve.ui.LinearContextItem
 *
 * @param {ve.ui.LinearContext} context Context the item is in
 * @param {ve.dm.Model} model Model the item is related to
 * @param {Object} [config]
 */
ve.ui.MWGalleryContextItem = function VeUiMWGalleryContextItem() {
    // Parent constructor
    ve.ui.MWGalleryContextItem.super.apply( this, arguments );

    // Initialization
    this.$element.addClass( 've-ui-mwGalleryContextItem' );
};

/* Inheritance */

OO.inheritClass( ve.ui.MWGalleryContextItem, ve.ui.LinearContextItem );

/* Static Properties */

ve.ui.MWGalleryContextItem.static.name = 'mwGallery';

ve.ui.MWGalleryContextItem.static.icon = 'imageGallery';

ve.ui.MWGalleryContextItem.static.label = OO.ui.deferMsg( 'visualeditor-mwgallerydialog-title' );

ve.ui.MWGalleryContextItem.static.modelClasses = [ ve.dm.MWGalleryNode ];

ve.ui.MWGalleryContextItem.static.commandName = 'gallery';

/* Methods */

/**
 * @inheritdoc
 */
ve.ui.MWGalleryContextItem.prototype.getDescription = function () {
    return ve.msg( 'visualeditor-mwgallerycontext-description', this.model.getImageNodes().length );
};

/* Registration */

ve.ui.contextItemFactory.register( ve.ui.MWGalleryContextItem );