mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-14 18:05:01 +00:00
d342cb32ef
Use the Button.mustache partial in the PageActionsMenu.mustache template. This converts the page actions menu to use the Button template in a way that doesn't change the existing HTML. The mw-ui-icon-element and mw-ui-icon-with-label-desktop classes are placed onto the Button.mustache markup. Bug: T342908 Change-Id: Ib5dadd929eea2e72a24e061c4174348615890617
120 lines
3.4 KiB
PHP
120 lines
3.4 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\PageActions;
|
|
|
|
use MessageLocalizer;
|
|
|
|
/**
|
|
* Director responsible for building Page Actions menu.
|
|
* This class is stateless.
|
|
*/
|
|
final class PageActionsDirector {
|
|
|
|
/**
|
|
* @var ToolbarBuilder
|
|
*/
|
|
private $toolbarBuilder;
|
|
|
|
/**
|
|
* @var IOverflowBuilder
|
|
*/
|
|
private $overflowBuilder;
|
|
|
|
/**
|
|
* @var MessageLocalizer
|
|
*/
|
|
private $messageLocalizer;
|
|
|
|
/**
|
|
* Director responsible for Page Actions menu building
|
|
*
|
|
* @param ToolbarBuilder $toolbarBuilder
|
|
* @param IOverflowBuilder $overflowBuilder The overflow menu builder
|
|
* @param MessageLocalizer $messageLocalizer Message localizer used to translate texts
|
|
*/
|
|
public function __construct(
|
|
ToolbarBuilder $toolbarBuilder,
|
|
IOverflowBuilder $overflowBuilder,
|
|
MessageLocalizer $messageLocalizer
|
|
) {
|
|
$this->toolbarBuilder = $toolbarBuilder;
|
|
$this->overflowBuilder = $overflowBuilder;
|
|
$this->messageLocalizer = $messageLocalizer;
|
|
}
|
|
|
|
/**
|
|
* Build the menu data array that can be passed to views/javascript
|
|
* @param array $toolbox An array of common toolbox items from the sidebar menu
|
|
* @param array $actions An array of actions usually bucketed under the more menu
|
|
* @return array
|
|
*/
|
|
public function buildMenu( array $toolbox, array $actions ): array {
|
|
$toolbar = $this->toolbarBuilder->getGroup();
|
|
$overflowMenu = $this->overflowBuilder->getGroup( $toolbox, $actions );
|
|
|
|
$menu = [
|
|
'toolbar' => $toolbar->getEntries()
|
|
];
|
|
if ( $overflowMenu->hasEntries() ) {
|
|
// See includes/Skins/ToggleList.
|
|
$toggleID = 'page-actions-overflow-toggle';
|
|
$checkboxID = 'page-actions-overflow-checkbox';
|
|
$menu[ 'overflowMenu' ] = [
|
|
'item-id' => 'page-actions-overflow',
|
|
'checkboxID' => $checkboxID,
|
|
'toggleID' => $toggleID,
|
|
'data-btn' => [
|
|
'tag-name' => 'label',
|
|
'data-icon' => [
|
|
'icon' => 'minerva-ellipsis',
|
|
],
|
|
'classes' => 'toggle-list__toggle mw-ui-icon-with-label-desktop',
|
|
'array-attributes' => [
|
|
[
|
|
'key' => 'id',
|
|
'value' => $toggleID,
|
|
],
|
|
[
|
|
'key' => 'for',
|
|
'value' => $checkboxID,
|
|
],
|
|
[
|
|
'key' => 'aria-hidden',
|
|
'value' => 'true'
|
|
],
|
|
[
|
|
'key' => 'data-event-name',
|
|
'value' => 'ui.overflowmenu',
|
|
],
|
|
],
|
|
// class = toggle-list__toggle {{toggleClass}}
|
|
// data-event-name="{{analyticsEventName}}">
|
|
'label' => $this->messageLocalizer->msg( 'minerva-page-actions-overflow' ),
|
|
],
|
|
'listID' => $overflowMenu->getId(),
|
|
'listClass' => 'page-actions-overflow-list toggle-list__list--drop-down',
|
|
'items' => $overflowMenu->getEntries()
|
|
];
|
|
}
|
|
return $menu;
|
|
}
|
|
|
|
}
|