mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
c0f08790ea
Note: this agitates T230232 again - when merging this please make sure a merge for I929090848f3e04647a97f4979ec78682623fa070 is pending. In various places we try to override the default mw-ui-icon behaviours The hacks need to be removed as part of addressing the core problem. Changes: * Wherever we use mw-ui-icon-before in PHP - wrap the label with a span so that label font-size is altered where needed - not the icon * Where a small icon is needed us isSmall parameter for the Icon component * Apply font-size to labels of mw-ui-icon-before elements * The browser tests need a slight update to access the span element inside a menu item - in the case of the logout button the label is always hidden, so we need to check the visibility of the parent element (secondary_action) Bug: T229440 Depends-On: I3f803ec4c9068b30aa93b803391aa4d65d8310ff Change-Id: I07e4ae233979636b739f1117dd7703571e0a9366
74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* @file
|
|
*/
|
|
namespace MediaWiki\Minerva\Menu\User;
|
|
|
|
use MinervaUI;
|
|
use TemplateParser;
|
|
use MessageLocalizer;
|
|
|
|
/**
|
|
* Director responsible for building the user menu.
|
|
*/
|
|
final class UserMenuDirector {
|
|
/**
|
|
* @var IUserMenuBuilder
|
|
*/
|
|
private $builder;
|
|
|
|
/**
|
|
* @var MessageLocalizer
|
|
*/
|
|
private $localizer;
|
|
|
|
/**
|
|
* @param IUserMenuBuilder $builder
|
|
* @param MessageLocalizer $localizer
|
|
*/
|
|
public function __construct( IUserMenuBuilder $builder, MessageLocalizer $localizer ) {
|
|
$this->builder = $builder;
|
|
$this->localizer = $localizer;
|
|
}
|
|
|
|
/**
|
|
* Build the menu data array that can be passed to views/javascript
|
|
* @param array $personalTools Personal tools list generated by BaseTemplate::getPersonalTools
|
|
* @return string|null
|
|
*/
|
|
public function renderMenuData( array $personalTools ) {
|
|
$entries = $this->builder->getGroup( $personalTools )->getEntries();
|
|
|
|
$templateParser = new TemplateParser( __DIR__ . '/../../../components' );
|
|
return empty( $entries )
|
|
? null
|
|
: $templateParser->processTemplate( 'ToggleList', [
|
|
'class' => 'minerva-user-menu',
|
|
'checkboxID' => 'minerva-user-menu-checkbox',
|
|
'toggleID' => 'minerva-user-menu-toggle', // See minerva.mustache too.
|
|
'toggleClass' => MinervaUI::iconClass(
|
|
'page-actions-overflow', 'element', 'wikimedia-ui-' . 'userAvatarOutline' . '-base20'
|
|
),
|
|
'listClass' => 'minerva-user-menu-list toggle-list__list--drop-down', // See ToggleList/*.less.
|
|
'text' => $this->localizer->msg( 'minerva-user-menu-button' )->escaped(),
|
|
'analyticsEventName' => 'ui.usermenu',
|
|
'items' => $entries
|
|
] );
|
|
}
|
|
}
|