mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
6e297a7a9b
Rather than hardcoding the icons for all our menu items let's use the definitions in core. This also makes it easier for us to deprecate the MobileMenu hook in future. Rejoice at all the code this removed! Bug: T291568 Change-Id: I69b5ca13aee018982a5ea28677d4a37e663235d4
111 lines
3 KiB
PHP
111 lines
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 Hooks;
|
|
use MediaWiki\Minerva\Menu\Definitions;
|
|
use MediaWiki\Minerva\Menu\Entries\ProfileMenuEntry;
|
|
use MediaWiki\Minerva\Menu\Entries\SingleMenuEntry;
|
|
use MediaWiki\Minerva\Menu\Group;
|
|
use MessageLocalizer;
|
|
use User;
|
|
|
|
/**
|
|
* Logged-in, advanced Mobile Contributions user menu config generator.
|
|
*/
|
|
final class AdvancedUserMenuBuilder implements IUserMenuBuilder {
|
|
/**
|
|
* @var MessageLocalizer
|
|
*/
|
|
private $messageLocalizer;
|
|
|
|
/**
|
|
* @var User
|
|
*/
|
|
private $user;
|
|
|
|
/**
|
|
* @var Definitions
|
|
*/
|
|
private $definitions;
|
|
|
|
/**
|
|
* @param MessageLocalizer $messageLocalizer
|
|
* @param User $user
|
|
* @param Definitions $definitions A menu items definitions set
|
|
*/
|
|
public function __construct(
|
|
MessageLocalizer $messageLocalizer, User $user, Definitions $definitions
|
|
) {
|
|
$this->messageLocalizer = $messageLocalizer;
|
|
$this->user = $user;
|
|
$this->definitions = $definitions;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @param array $personalTools list of personal tools generated by
|
|
* SkinTemplate::getPersonalTools
|
|
* @return Group
|
|
*/
|
|
public function getGroup( array $personalTools ): Group {
|
|
$group = new Group( 'p-personal' );
|
|
$trackingKeyOverrides = [
|
|
'mytalk' => 'userTalk',
|
|
'watchlist' => 'unStar',
|
|
'mycontris' => 'contributions',
|
|
];
|
|
|
|
foreach ( $personalTools as $key => $item ) {
|
|
if ( in_array( $key, [ 'preferences', 'betafeatures', 'uploads' ] ) ) {
|
|
continue;
|
|
}
|
|
// Special casing for userpage to support Extension:GrowthExperiments.
|
|
// This can be removed when T291568 is resolved.
|
|
if ( $key === 'userpage' ) {
|
|
$entry = new ProfileMenuEntry( $this->user );
|
|
$entry->overrideProfileURL(
|
|
$item['href'],
|
|
$item['text']
|
|
);
|
|
$group->insertEntry( $entry );
|
|
continue;
|
|
}
|
|
$icon = $item['icon'] ?? null;
|
|
if ( $icon ) {
|
|
$entry = SingleMenuEntry::create(
|
|
$key,
|
|
$item['text'],
|
|
$item['href'],
|
|
$item['class'] ?? '',
|
|
$icon
|
|
);
|
|
// override tracking key where key mismatch
|
|
if ( array_key_exists( $key, $trackingKeyOverrides ) ) {
|
|
$entry->trackClicks( $trackingKeyOverrides[ $key ] );
|
|
}
|
|
$group->insertEntry( $entry );
|
|
}
|
|
}
|
|
Hooks::run( 'MobileMenu', [ 'user', &$group ] );
|
|
return $group;
|
|
}
|
|
}
|