2014-08-07 11:38:34 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Vector - Modern version of MonoBook with fresh look and many usability
|
|
|
|
* improvements.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
|
2020-04-28 21:16:21 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2020-07-07 08:59:14 +00:00
|
|
|
use Vector\Constants;
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
2020-04-28 21:16:21 +00:00
|
|
|
* Skin subclass for Vector
|
2014-08-07 11:38:34 +00:00
|
|
|
* @ingroup Skins
|
2020-07-09 16:42:33 +00:00
|
|
|
* Skins extending SkinVector are not supported
|
2020-08-04 00:17:53 +00:00
|
|
|
* @package Vector
|
|
|
|
* @internal
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
2020-07-09 16:42:33 +00:00
|
|
|
class SkinVector extends SkinMustache {
|
2020-04-28 21:16:21 +00:00
|
|
|
|
2020-04-07 22:55:08 +00:00
|
|
|
/** @var array of alternate message keys for menu labels */
|
|
|
|
private const MENU_LABEL_KEYS = [
|
|
|
|
'cactions' => 'vector-more-actions',
|
2020-04-07 23:21:20 +00:00
|
|
|
'tb' => 'toolbox',
|
2020-04-07 22:55:08 +00:00
|
|
|
'personal' => 'personaltools',
|
2020-04-07 23:21:20 +00:00
|
|
|
'lang' => 'otherlanguages',
|
2020-04-07 22:55:08 +00:00
|
|
|
];
|
|
|
|
/** @var int */
|
2020-04-03 20:05:22 +00:00
|
|
|
private const MENU_TYPE_DEFAULT = 0;
|
2020-04-07 22:55:08 +00:00
|
|
|
/** @var int */
|
2020-04-03 20:05:22 +00:00
|
|
|
private const MENU_TYPE_TABS = 1;
|
2020-04-07 22:55:08 +00:00
|
|
|
/** @var int */
|
2020-04-03 20:05:22 +00:00
|
|
|
private const MENU_TYPE_DROPDOWN = 2;
|
2020-04-07 23:21:20 +00:00
|
|
|
private const MENU_TYPE_PORTAL = 3;
|
2020-04-03 20:05:22 +00:00
|
|
|
|
Add opt-out link to Sidebar for Vector/Logged-in Users Without Abstractions
This commit is singularly focused on adding a link to the sidebar for
Vector, logged-in users. It does the bare minimum to fulfill the
requirements of T243281.
Additionally, it will help to answer the question "Do we need to use
abstractions (other than maybe different templates) to separate Legacy
Vector from Vector" by intentionally leaving out any abstractions in
order to make it easier to compare with a follow-up patch
(Ib2ef15180df73360cc1de25b893e49d415d23e1a) which does use abstractions.
It is a good thing to question whether or not we need addtional
abstractions in VectorTemplate and if they will help us as unnecessary
abstractions can have the opposite effect and just lead to further
frustrations down the road.
Therefore, I urge you, the reviewer, to let me know your thoughts! If
abstractions are viewed as not making our lives any easier, the
follow-up patches may be completely discarded and that's totally okay
with me. :) I think it's a good think to talk about now though.
Important changes:
* The VectorTemplate constructor was changed to allow injecting the
config, templateParser, and isLegacy boolean (only the config was
allowed before this commit). According to MediaWiki's Stable Interface
Policy, "Constructor signatures are generally considered unstable unless
explicitly declared stable for calling" [3]. Given that VecorTemplate's
constructor is not marked as stable, it is justified to do this without
warning according to the policy.
* Due to the above, the 'setTemplate' method is no longer needed and was
marked as deprecated.
* VectorTemplateTest was made to adapt to the new VectorTemplate
constructor. Additionally, it now extends from
MediaWikiIntegrationTestCase which my intelliphense server can pick up.
I *think* MediaWikiTestCase is just an alias to
MediaWikiIntegrationTestCase [1] and MediaWikiTestCase file was renamed
to MediaWikiIntegrationTestCase in [2], but I'm willing to change it
back if there is pushback to this.
Open questions:
* What are VectorTemplate's responsibilities? To me, it acts right now
as a controller (because it echos the full HTML string from the
template), a model (because SkinTemplate::prepareQuickTemplate sets data
on it which it later retrieves through `$this->get()`), a presenter
(because it adds data tailored for a web-centric view), and a view
(because it renders HTML strings instead of letting the view/template be
solely responsible for that). Arguably, some business logic might be
mixed in there as well (because it checks to see if a User is logged
in/has necessary permissions to show x which my changes here add to).
This might not be a problem if we keep VectorTemplate relatively small,
but will it remain this way as we progress further in Desktop
Improvements?
* How do we write tests for VectorTemplate without exposing unnecessary
public methods? For example, if I want to test the `getSkinData()`
method to see what state will be sent to the template, how should I do
this? One option might be to use `TestingAccessWrapper` to expose these
private methods which is what
`VectorTemplateTest::testbuildViewsProps()` does. Another option is to
accept this method as public. Is there a better way? Keep in mind that
even with access to this method, there might be many things to mock.
[1] https://github.com/wikimedia/mediawiki/blob/0030cb525be6cabc1d63de80586b2017d4bbe354/tests/common/TestsAutoLoader.php#L64
[2] Ie717b0ecf4fcfd089d46248f14853c80b7ef4a76
[3] https://www.mediawiki.org/wiki/Stable_interface_policy
Bug: T243281
Change-Id: I0571b041bcd7f19bec9f103fa7bccdd093f6394d
2020-03-17 20:21:33 +00:00
|
|
|
/**
|
|
|
|
* T243281: Code used to track clicks to opt-out link.
|
|
|
|
*
|
|
|
|
* The "vct" substring is used to describe the newest "Vector" (non-legacy)
|
|
|
|
* feature. The "w" describes the web platform. The "1" describes the version
|
|
|
|
* of the feature.
|
|
|
|
*
|
|
|
|
* @see https://wikitech.wikimedia.org/wiki/Provenance
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private const OPT_OUT_LINK_TRACKING_CODE = 'vctw1';
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2020-01-13 09:23:59 +00:00
|
|
|
/**
|
2020-04-28 21:16:21 +00:00
|
|
|
* Whether or not the legacy version of the skin is being used.
|
|
|
|
*
|
|
|
|
* @return bool
|
2020-01-13 09:23:59 +00:00
|
|
|
*/
|
2020-04-28 21:16:21 +00:00
|
|
|
private function isLegacy() : bool {
|
|
|
|
$isLatestSkinFeatureEnabled = MediaWikiServices::getInstance()
|
|
|
|
->getService( Constants::SERVICE_FEATURE_MANAGER )
|
|
|
|
->isFeatureEnabled( Constants::FEATURE_LATEST_SKIN );
|
2020-01-16 21:11:54 +00:00
|
|
|
|
2020-04-28 21:16:21 +00:00
|
|
|
return !$isLatestSkinFeatureEnabled;
|
2020-04-28 20:58:19 +00:00
|
|
|
}
|
|
|
|
|
2020-01-16 21:11:54 +00:00
|
|
|
/**
|
2020-04-28 21:16:21 +00:00
|
|
|
* Overrides template, styles and scripts module when skin operates
|
|
|
|
* in legacy mode.
|
2020-01-16 21:11:54 +00:00
|
|
|
*
|
2020-04-28 21:16:21 +00:00
|
|
|
* @inheritDoc
|
2020-01-16 21:11:54 +00:00
|
|
|
*/
|
2020-04-28 21:16:21 +00:00
|
|
|
public function __construct( $options = [] ) {
|
2020-07-30 20:32:13 +00:00
|
|
|
if ( $this->isLegacy() ) {
|
2020-04-28 21:16:21 +00:00
|
|
|
$options['scripts'] = [ 'skins.vector.legacy.js' ];
|
|
|
|
$options['styles'] = [ 'skins.vector.styles.legacy' ];
|
|
|
|
$options['template'] = 'skin-legacy';
|
2020-01-16 21:11:54 +00:00
|
|
|
}
|
2020-04-28 21:16:21 +00:00
|
|
|
$options['templateDirectory'] = __DIR__ . '/templates';
|
|
|
|
parent::__construct( $options );
|
2020-01-13 09:23:59 +00:00
|
|
|
}
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
2020-04-28 21:16:21 +00:00
|
|
|
* @inheritDoc
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
2020-04-28 21:16:21 +00:00
|
|
|
public function getTemplateData() : array {
|
|
|
|
$contentNavigation = $this->buildContentNavigationUrls();
|
|
|
|
$skin = $this;
|
2020-04-28 17:58:55 +00:00
|
|
|
$out = $skin->getOutput();
|
|
|
|
$title = $out->getTitle();
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2020-03-06 22:53:04 +00:00
|
|
|
// Naming conventions for Mustache parameters.
|
|
|
|
//
|
|
|
|
// Value type (first segment):
|
2020-04-14 22:44:33 +00:00
|
|
|
// - Prefix "is" or "has" for boolean values.
|
2020-03-06 22:53:04 +00:00
|
|
|
// - Prefix "msg-" for interface message text.
|
|
|
|
// - Prefix "html-" for raw HTML.
|
|
|
|
// - Prefix "data-" for an array of template parameters that should be passed directly
|
2020-02-17 19:49:43 +00:00
|
|
|
// to a template partial.
|
2020-03-06 22:53:04 +00:00
|
|
|
// - Prefix "array-" for lists of any values.
|
|
|
|
//
|
|
|
|
// Source of value (first or second segment)
|
|
|
|
// - Segment "page-" for data relating to the current page (e.g. Title, WikiPage, or OutputPage).
|
|
|
|
// - Segment "hook-" for any thing generated from a hook.
|
|
|
|
// It should be followed by the name of the hook in hyphenated lowercase.
|
|
|
|
//
|
|
|
|
// Conditionally used values must use null to indicate absence (not false or '').
|
[modern] A new version of Vector with a new logo
Changes to support feature:
* ResourceLoaderSkinModule logo features are dropped
* New layout provided given the fork in layout between legacy and new.
* Legacy sidebar styles now pulled out
* breakpoint styles are not carried over from legacy Vector
The new Vector layout for now has one breakpoint.
Changes to storybook:
* The storybook script now pulls down image assets so that the logos can
be shown in storybook. The script is adjusted to make use of a static folder to
serve these images.
Note:
* The legacy mode is not touched as part of this patchset.
* The personal menu is unaffected by this patch and is out of scope.
* The alignment issue is noted, but will be solved at a later date.
* Changes to portal are out of scope.
* Adding storybook for modern descoped, given its not possible to load
both legacy layout and modern layout inside a storybook at current time.
Sample config:
$wgLogos = [
'icon' => 'https://di-logo-sandbox.firebaseapp.com/img/globe.png',
'tagline' => [
'src' => 'https://di-logo-sandbox.firebaseapp.com/img/tagline/en-tagline-117-13.svg',
'width' => 117,
'height' => 13,
],
'1x' => 'https://en.wikipedia.org/static/images/project-logos/enwiki.png',
'wordmark' => [
'src' => 'https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg',
'width' => 116,
'height' => 18,
],
];
Coauthor: Aron Manning
Bug: T246170
Change-Id: Ibc4b055150761388a6b78f9127da342c451ce0e7
2020-03-09 05:51:00 +00:00
|
|
|
$mainPageHref = Skin::makeMainPageUrl();
|
2020-07-10 21:31:09 +00:00
|
|
|
// From Skin::getNewtalks(). Always returns string, cast to null if empty.
|
|
|
|
$newTalksHtml = $skin->getNewtalks() ?: null;
|
|
|
|
|
2020-04-28 21:16:21 +00:00
|
|
|
$commonSkinData = parent::getTemplateData() + [
|
2020-04-28 17:58:55 +00:00
|
|
|
'page-langcode' => $title->getPageViewLanguage()->getHtmlCode(),
|
|
|
|
'page-isarticle' => (bool)$out->isArticle(),
|
2019-02-26 18:44:10 +00:00
|
|
|
|
2019-04-02 18:42:01 +00:00
|
|
|
// Remember that the string '0' is a valid title.
|
|
|
|
// From OutputPage::getPageTitle, via ::setPageTitle().
|
2020-04-28 17:58:55 +00:00
|
|
|
'html-title' => $out->getPageTitle(),
|
2020-07-10 21:31:09 +00:00
|
|
|
'html-newtalk' => $newTalksHtml ? '<div class="usermessage">' . $newTalksHtml . '</div>' : '',
|
2019-01-23 02:51:20 +00:00
|
|
|
|
2020-07-09 16:32:45 +00:00
|
|
|
'html-categories' => $skin->getCategories(),
|
2020-06-15 21:45:16 +00:00
|
|
|
'data-footer' => $this->getFooterData(),
|
2020-07-07 22:52:12 +00:00
|
|
|
'is-search-in-header' => $this->getConfig()->get( Constants::CONFIG_SEARCH_IN_HEADER ),
|
[modern] A new version of Vector with a new logo
Changes to support feature:
* ResourceLoaderSkinModule logo features are dropped
* New layout provided given the fork in layout between legacy and new.
* Legacy sidebar styles now pulled out
* breakpoint styles are not carried over from legacy Vector
The new Vector layout for now has one breakpoint.
Changes to storybook:
* The storybook script now pulls down image assets so that the logos can
be shown in storybook. The script is adjusted to make use of a static folder to
serve these images.
Note:
* The legacy mode is not touched as part of this patchset.
* The personal menu is unaffected by this patch and is out of scope.
* The alignment issue is noted, but will be solved at a later date.
* Changes to portal are out of scope.
* Adding storybook for modern descoped, given its not possible to load
both legacy layout and modern layout inside a storybook at current time.
Sample config:
$wgLogos = [
'icon' => 'https://di-logo-sandbox.firebaseapp.com/img/globe.png',
'tagline' => [
'src' => 'https://di-logo-sandbox.firebaseapp.com/img/tagline/en-tagline-117-13.svg',
'width' => 117,
'height' => 13,
],
'1x' => 'https://en.wikipedia.org/static/images/project-logos/enwiki.png',
'wordmark' => [
'src' => 'https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg',
'width' => 116,
'height' => 18,
],
];
Coauthor: Aron Manning
Bug: T246170
Change-Id: Ibc4b055150761388a6b78f9127da342c451ce0e7
2020-03-09 05:51:00 +00:00
|
|
|
|
|
|
|
// Header
|
2020-05-01 19:09:01 +00:00
|
|
|
'data-logos' => ResourceLoaderSkinModule::getAvailableLogos( $this->getConfig() ),
|
[modern] A new version of Vector with a new logo
Changes to support feature:
* ResourceLoaderSkinModule logo features are dropped
* New layout provided given the fork in layout between legacy and new.
* Legacy sidebar styles now pulled out
* breakpoint styles are not carried over from legacy Vector
The new Vector layout for now has one breakpoint.
Changes to storybook:
* The storybook script now pulls down image assets so that the logos can
be shown in storybook. The script is adjusted to make use of a static folder to
serve these images.
Note:
* The legacy mode is not touched as part of this patchset.
* The personal menu is unaffected by this patch and is out of scope.
* The alignment issue is noted, but will be solved at a later date.
* Changes to portal are out of scope.
* Adding storybook for modern descoped, given its not possible to load
both legacy layout and modern layout inside a storybook at current time.
Sample config:
$wgLogos = [
'icon' => 'https://di-logo-sandbox.firebaseapp.com/img/globe.png',
'tagline' => [
'src' => 'https://di-logo-sandbox.firebaseapp.com/img/tagline/en-tagline-117-13.svg',
'width' => 117,
'height' => 13,
],
'1x' => 'https://en.wikipedia.org/static/images/project-logos/enwiki.png',
'wordmark' => [
'src' => 'https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg',
'width' => 116,
'height' => 18,
],
];
Coauthor: Aron Manning
Bug: T246170
Change-Id: Ibc4b055150761388a6b78f9127da342c451ce0e7
2020-03-09 05:51:00 +00:00
|
|
|
'main-page-href' => $mainPageHref,
|
|
|
|
|
2020-04-28 17:44:39 +00:00
|
|
|
'data-sidebar' => $this->buildSidebar(),
|
2020-07-07 08:59:14 +00:00
|
|
|
'sidebar-visible' => $this->isSidebarVisible(),
|
2020-04-03 20:05:22 +00:00
|
|
|
] + $this->getMenuProps();
|
2019-02-26 18:44:10 +00:00
|
|
|
|
2020-07-30 20:32:13 +00:00
|
|
|
if ( $skin->getUser()->isLoggedIn() ) {
|
|
|
|
// Note: This data is also passed to legacy template where it is unused.
|
2020-03-25 20:57:46 +00:00
|
|
|
$commonSkinData['data-sidebar']['data-emphasized-sidebar-action'] = [
|
Add opt-out link to Sidebar for Vector/Logged-in Users Without Abstractions
This commit is singularly focused on adding a link to the sidebar for
Vector, logged-in users. It does the bare minimum to fulfill the
requirements of T243281.
Additionally, it will help to answer the question "Do we need to use
abstractions (other than maybe different templates) to separate Legacy
Vector from Vector" by intentionally leaving out any abstractions in
order to make it easier to compare with a follow-up patch
(Ib2ef15180df73360cc1de25b893e49d415d23e1a) which does use abstractions.
It is a good thing to question whether or not we need addtional
abstractions in VectorTemplate and if they will help us as unnecessary
abstractions can have the opposite effect and just lead to further
frustrations down the road.
Therefore, I urge you, the reviewer, to let me know your thoughts! If
abstractions are viewed as not making our lives any easier, the
follow-up patches may be completely discarded and that's totally okay
with me. :) I think it's a good think to talk about now though.
Important changes:
* The VectorTemplate constructor was changed to allow injecting the
config, templateParser, and isLegacy boolean (only the config was
allowed before this commit). According to MediaWiki's Stable Interface
Policy, "Constructor signatures are generally considered unstable unless
explicitly declared stable for calling" [3]. Given that VecorTemplate's
constructor is not marked as stable, it is justified to do this without
warning according to the policy.
* Due to the above, the 'setTemplate' method is no longer needed and was
marked as deprecated.
* VectorTemplateTest was made to adapt to the new VectorTemplate
constructor. Additionally, it now extends from
MediaWikiIntegrationTestCase which my intelliphense server can pick up.
I *think* MediaWikiTestCase is just an alias to
MediaWikiIntegrationTestCase [1] and MediaWikiTestCase file was renamed
to MediaWikiIntegrationTestCase in [2], but I'm willing to change it
back if there is pushback to this.
Open questions:
* What are VectorTemplate's responsibilities? To me, it acts right now
as a controller (because it echos the full HTML string from the
template), a model (because SkinTemplate::prepareQuickTemplate sets data
on it which it later retrieves through `$this->get()`), a presenter
(because it adds data tailored for a web-centric view), and a view
(because it renders HTML strings instead of letting the view/template be
solely responsible for that). Arguably, some business logic might be
mixed in there as well (because it checks to see if a User is logged
in/has necessary permissions to show x which my changes here add to).
This might not be a problem if we keep VectorTemplate relatively small,
but will it remain this way as we progress further in Desktop
Improvements?
* How do we write tests for VectorTemplate without exposing unnecessary
public methods? For example, if I want to test the `getSkinData()`
method to see what state will be sent to the template, how should I do
this? One option might be to use `TestingAccessWrapper` to expose these
private methods which is what
`VectorTemplateTest::testbuildViewsProps()` does. Another option is to
accept this method as public. Is there a better way? Keep in mind that
even with access to this method, there might be many things to mock.
[1] https://github.com/wikimedia/mediawiki/blob/0030cb525be6cabc1d63de80586b2017d4bbe354/tests/common/TestsAutoLoader.php#L64
[2] Ie717b0ecf4fcfd089d46248f14853c80b7ef4a76
[3] https://www.mediawiki.org/wiki/Stable_interface_policy
Bug: T243281
Change-Id: I0571b041bcd7f19bec9f103fa7bccdd093f6394d
2020-03-17 20:21:33 +00:00
|
|
|
'href' => SpecialPage::getTitleFor(
|
|
|
|
'Preferences',
|
|
|
|
false,
|
2020-04-15 17:26:19 +00:00
|
|
|
'mw-prefsection-rendering-skin-skin-prefs'
|
Add opt-out link to Sidebar for Vector/Logged-in Users Without Abstractions
This commit is singularly focused on adding a link to the sidebar for
Vector, logged-in users. It does the bare minimum to fulfill the
requirements of T243281.
Additionally, it will help to answer the question "Do we need to use
abstractions (other than maybe different templates) to separate Legacy
Vector from Vector" by intentionally leaving out any abstractions in
order to make it easier to compare with a follow-up patch
(Ib2ef15180df73360cc1de25b893e49d415d23e1a) which does use abstractions.
It is a good thing to question whether or not we need addtional
abstractions in VectorTemplate and if they will help us as unnecessary
abstractions can have the opposite effect and just lead to further
frustrations down the road.
Therefore, I urge you, the reviewer, to let me know your thoughts! If
abstractions are viewed as not making our lives any easier, the
follow-up patches may be completely discarded and that's totally okay
with me. :) I think it's a good think to talk about now though.
Important changes:
* The VectorTemplate constructor was changed to allow injecting the
config, templateParser, and isLegacy boolean (only the config was
allowed before this commit). According to MediaWiki's Stable Interface
Policy, "Constructor signatures are generally considered unstable unless
explicitly declared stable for calling" [3]. Given that VecorTemplate's
constructor is not marked as stable, it is justified to do this without
warning according to the policy.
* Due to the above, the 'setTemplate' method is no longer needed and was
marked as deprecated.
* VectorTemplateTest was made to adapt to the new VectorTemplate
constructor. Additionally, it now extends from
MediaWikiIntegrationTestCase which my intelliphense server can pick up.
I *think* MediaWikiTestCase is just an alias to
MediaWikiIntegrationTestCase [1] and MediaWikiTestCase file was renamed
to MediaWikiIntegrationTestCase in [2], but I'm willing to change it
back if there is pushback to this.
Open questions:
* What are VectorTemplate's responsibilities? To me, it acts right now
as a controller (because it echos the full HTML string from the
template), a model (because SkinTemplate::prepareQuickTemplate sets data
on it which it later retrieves through `$this->get()`), a presenter
(because it adds data tailored for a web-centric view), and a view
(because it renders HTML strings instead of letting the view/template be
solely responsible for that). Arguably, some business logic might be
mixed in there as well (because it checks to see if a User is logged
in/has necessary permissions to show x which my changes here add to).
This might not be a problem if we keep VectorTemplate relatively small,
but will it remain this way as we progress further in Desktop
Improvements?
* How do we write tests for VectorTemplate without exposing unnecessary
public methods? For example, if I want to test the `getSkinData()`
method to see what state will be sent to the template, how should I do
this? One option might be to use `TestingAccessWrapper` to expose these
private methods which is what
`VectorTemplateTest::testbuildViewsProps()` does. Another option is to
accept this method as public. Is there a better way? Keep in mind that
even with access to this method, there might be many things to mock.
[1] https://github.com/wikimedia/mediawiki/blob/0030cb525be6cabc1d63de80586b2017d4bbe354/tests/common/TestsAutoLoader.php#L64
[2] Ie717b0ecf4fcfd089d46248f14853c80b7ef4a76
[3] https://www.mediawiki.org/wiki/Stable_interface_policy
Bug: T243281
Change-Id: I0571b041bcd7f19bec9f103fa7bccdd093f6394d
2020-03-17 20:21:33 +00:00
|
|
|
)->getLinkURL( 'wprov=' . self::OPT_OUT_LINK_TRACKING_CODE ),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $commonSkinData;
|
|
|
|
}
|
|
|
|
|
2020-01-16 22:11:53 +00:00
|
|
|
/**
|
|
|
|
* Get rows that make up the footer
|
|
|
|
* @return array for use in Mustache template describing the footer elements.
|
|
|
|
*/
|
2020-06-15 21:45:16 +00:00
|
|
|
private function getFooterData() : array {
|
2020-04-28 21:16:21 +00:00
|
|
|
$skin = $this;
|
2020-01-16 22:11:53 +00:00
|
|
|
$footerRows = [];
|
|
|
|
foreach ( $this->getFooterLinks() as $category => $links ) {
|
|
|
|
$items = [];
|
|
|
|
$rowId = "footer-$category";
|
|
|
|
|
2020-04-28 21:16:21 +00:00
|
|
|
foreach ( $links as $key => $link ) {
|
|
|
|
// Link may be null. If so don't include it.
|
|
|
|
if ( $link ) {
|
|
|
|
$items[] = [
|
|
|
|
'id' => "$rowId-$key",
|
|
|
|
'html' => $link,
|
|
|
|
];
|
|
|
|
}
|
2020-01-16 22:11:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$footerRows[] = [
|
|
|
|
'id' => $rowId,
|
2020-04-23 22:28:41 +00:00
|
|
|
'className' => null,
|
2020-01-16 22:11:53 +00:00
|
|
|
'array-items' => $items
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
// If footer icons are enabled append to the end of the rows
|
2020-04-28 21:16:21 +00:00
|
|
|
$footerIcons = $this->getFooterIcons();
|
|
|
|
|
2020-01-16 22:11:53 +00:00
|
|
|
if ( count( $footerIcons ) > 0 ) {
|
|
|
|
$items = [];
|
|
|
|
foreach ( $footerIcons as $blockName => $blockIcons ) {
|
|
|
|
$html = '';
|
|
|
|
foreach ( $blockIcons as $icon ) {
|
2020-04-28 21:16:21 +00:00
|
|
|
// Only output icons which have an image.
|
|
|
|
// For historic reasons this mimics the `icononly` option
|
|
|
|
// for BaseTemplate::getFooterIcons.
|
|
|
|
if ( is_string( $icon ) || isset( $icon['src'] ) ) {
|
|
|
|
$html .= $skin->makeFooterIcon( $icon );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// For historic reasons this mimics the `icononly` option
|
|
|
|
// for BaseTemplate::getFooterIcons. Empty rows should not be output.
|
|
|
|
if ( $html ) {
|
|
|
|
$items[] = [
|
|
|
|
'id' => 'footer-' . htmlspecialchars( $blockName ) . 'ico',
|
|
|
|
'html' => $html,
|
|
|
|
];
|
2020-01-16 22:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-28 21:16:21 +00:00
|
|
|
// Empty rows should not be output.
|
|
|
|
// This is how Vector has behaved historically but we can revisit.
|
|
|
|
if ( count( $items ) > 0 ) {
|
|
|
|
$footerRows[] = [
|
|
|
|
'id' => 'footer-icons',
|
|
|
|
'className' => 'noprint',
|
|
|
|
'array-items' => $items,
|
|
|
|
];
|
|
|
|
}
|
2020-01-16 22:11:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-25 01:21:10 +00:00
|
|
|
return [ 'array-footer-rows' => $footerRows ];
|
2020-01-16 22:11:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 08:59:14 +00:00
|
|
|
/**
|
|
|
|
* Determines wheather the initial state of sidebar is visible on not
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function isSidebarVisible() {
|
|
|
|
$skin = $this->getSkin();
|
|
|
|
if ( $skin->getUser()->isLoggedIn() ) {
|
2020-06-30 22:39:09 +00:00
|
|
|
$userPrefSidebarState = $skin->getUser()->getOption(
|
|
|
|
Constants::PREF_KEY_SIDEBAR_VISIBLE
|
|
|
|
);
|
|
|
|
|
|
|
|
$defaultLoggedinSidebarState = $this->getConfig()->get(
|
2020-07-07 08:59:14 +00:00
|
|
|
Constants::CONFIG_KEY_DEFAULT_SIDEBAR_VISIBLE_FOR_AUTHORISED_USER
|
|
|
|
);
|
2020-06-30 22:39:09 +00:00
|
|
|
|
|
|
|
// If the sidebar user preference has been set, return that value,
|
|
|
|
// if not, then the default sidebar state for logged-in users.
|
|
|
|
return ( $userPrefSidebarState !== null )
|
|
|
|
? (bool)$userPrefSidebarState
|
|
|
|
: $defaultLoggedinSidebarState;
|
2020-07-07 08:59:14 +00:00
|
|
|
}
|
|
|
|
return $this->getConfig()->get(
|
|
|
|
Constants::CONFIG_KEY_DEFAULT_SIDEBAR_VISIBLE_FOR_ANONYMOUS_USER
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
/**
|
|
|
|
* Render a series of portals
|
|
|
|
*
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2014-08-07 11:38:34 +00:00
|
|
|
*/
|
2020-04-28 21:16:21 +00:00
|
|
|
public function buildSidebar() {
|
|
|
|
$skin = $this;
|
|
|
|
$portals = parent::buildSidebar();
|
2020-02-14 20:33:54 +00:00
|
|
|
$props = [];
|
2020-06-22 18:01:10 +00:00
|
|
|
$languages = null;
|
2020-06-05 02:19:02 +00:00
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
// Render portals
|
|
|
|
foreach ( $portals as $name => $content ) {
|
|
|
|
if ( $content === false ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-01-10 20:38:46 +00:00
|
|
|
// Numeric strings gets an integer when set as key, cast back - T73639
|
|
|
|
$name = (string)$name;
|
|
|
|
|
2014-08-07 11:38:34 +00:00
|
|
|
switch ( $name ) {
|
|
|
|
case 'SEARCH':
|
|
|
|
break;
|
|
|
|
case 'TOOLBOX':
|
2020-07-25 01:46:02 +00:00
|
|
|
$props[] = $this->getMenuData(
|
|
|
|
'tb', $content, self::MENU_TYPE_PORTAL
|
2020-04-07 23:21:20 +00:00
|
|
|
);
|
2014-08-07 11:38:34 +00:00
|
|
|
break;
|
|
|
|
case 'LANGUAGES':
|
2020-05-14 21:19:12 +00:00
|
|
|
$portal = $this->getMenuData(
|
2020-07-25 01:46:02 +00:00
|
|
|
'lang', $content, self::MENU_TYPE_PORTAL
|
2020-05-14 21:19:12 +00:00
|
|
|
);
|
|
|
|
// The language portal will be added provided either
|
|
|
|
// languages exist or there is a value in html-after-portal
|
|
|
|
// for example to show the add language wikidata link (T252800)
|
2020-06-12 17:58:19 +00:00
|
|
|
if ( count( $content ) || $portal['html-after-portal'] ) {
|
2020-06-22 18:01:10 +00:00
|
|
|
$languages = $portal;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2020-08-01 10:20:17 +00:00
|
|
|
$props[] = $this->getMenuData(
|
2020-04-07 23:21:20 +00:00
|
|
|
$name, $content, self::MENU_TYPE_PORTAL
|
|
|
|
);
|
2014-08-07 11:38:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-03-11 18:58:05 +00:00
|
|
|
|
2020-04-15 18:10:17 +00:00
|
|
|
$firstPortal = $props[0] ?? null;
|
|
|
|
if ( $firstPortal ) {
|
|
|
|
$firstPortal[ 'class' ] .= ' portal-first';
|
|
|
|
}
|
|
|
|
|
2020-02-14 20:33:54 +00:00
|
|
|
return [
|
2020-04-28 17:44:39 +00:00
|
|
|
'html-logo-attributes' => Xml::expandAttributes(
|
|
|
|
Linker::tooltipAndAccesskeyAttribs( 'p-logo' ) + [
|
|
|
|
'class' => 'mw-wiki-logo',
|
|
|
|
'href' => Skin::makeMainPageUrl(),
|
|
|
|
]
|
|
|
|
),
|
2020-03-11 18:58:05 +00:00
|
|
|
'array-portals-rest' => array_slice( $props, 1 ),
|
2020-04-07 23:21:20 +00:00
|
|
|
'data-portals-first' => $firstPortal,
|
2020-06-22 18:01:10 +00:00
|
|
|
'data-portals-languages' => $languages,
|
2020-01-10 15:00:54 +00:00
|
|
|
];
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
2020-01-14 18:47:30 +00:00
|
|
|
/**
|
2020-04-03 20:05:22 +00:00
|
|
|
* @param string $label to be used to derive the id and human readable label of the menu
|
2020-04-07 23:21:20 +00:00
|
|
|
* If the key has an entry in the constant MENU_LABEL_KEYS then that message will be used for the
|
|
|
|
* human readable text instead.
|
2020-04-03 20:05:22 +00:00
|
|
|
* @param array $urls to convert to list items stored as string in html-items key
|
|
|
|
* @param int $type of menu (optional) - a plain list (MENU_TYPE_DEFAULT),
|
|
|
|
* a tab (MENU_TYPE_TABS) or a dropdown (MENU_TYPE_DROPDOWN)
|
2020-04-07 22:55:08 +00:00
|
|
|
* @param bool $setLabelToSelected (optional) the menu label will take the value of the
|
|
|
|
* selected item if found.
|
2020-02-14 20:33:54 +00:00
|
|
|
* @return array
|
2020-01-14 18:47:30 +00:00
|
|
|
*/
|
2020-04-03 20:05:22 +00:00
|
|
|
private function getMenuData(
|
2020-04-07 22:55:08 +00:00
|
|
|
string $label,
|
|
|
|
array $urls = [],
|
|
|
|
int $type = self::MENU_TYPE_DEFAULT,
|
|
|
|
bool $setLabelToSelected = false
|
2020-04-03 20:05:22 +00:00
|
|
|
) : array {
|
2020-07-08 18:04:32 +00:00
|
|
|
$skin = $this->getSkin();
|
2020-04-03 20:05:22 +00:00
|
|
|
$extraClasses = [
|
2020-04-16 18:40:39 +00:00
|
|
|
self::MENU_TYPE_DROPDOWN => 'vector-menu vector-menu-dropdown vectorMenu',
|
|
|
|
self::MENU_TYPE_TABS => 'vector-menu vector-menu-tabs vectorTabs',
|
|
|
|
self::MENU_TYPE_PORTAL => 'vector-menu vector-menu-portal portal',
|
2020-05-07 16:51:46 +00:00
|
|
|
self::MENU_TYPE_DEFAULT => 'vector-menu',
|
2020-04-03 20:05:22 +00:00
|
|
|
];
|
2020-05-21 18:49:24 +00:00
|
|
|
// A list of classes to apply the list element and override the default behavior.
|
|
|
|
$listClasses = [
|
|
|
|
// `.menu` is on the portal for historic reasons.
|
|
|
|
// It should not be applied elsewhere per T253329.
|
|
|
|
self::MENU_TYPE_DROPDOWN => 'menu vector-menu-content-list',
|
|
|
|
];
|
2020-07-30 16:01:59 +00:00
|
|
|
$isPortal = $type === self::MENU_TYPE_PORTAL;
|
2020-04-03 20:05:22 +00:00
|
|
|
|
2020-05-14 15:23:20 +00:00
|
|
|
// For some menu items, there is no language key corresponding with its menu key.
|
|
|
|
// These inconsitencies are captured in MENU_LABEL_KEYS
|
2020-07-08 18:04:32 +00:00
|
|
|
$msgObj = $skin->msg( self::MENU_LABEL_KEYS[ $label ] ?? $label );
|
2020-01-09 10:59:09 +00:00
|
|
|
$props = [
|
2020-04-03 20:05:22 +00:00
|
|
|
'id' => "p-$label",
|
|
|
|
'label-id' => "p-{$label}-label",
|
2020-05-14 15:23:20 +00:00
|
|
|
// If no message exists fallback to plain text (T252727)
|
|
|
|
'label' => $msgObj->exists() ? $msgObj->text() : $label,
|
2020-05-21 18:49:24 +00:00
|
|
|
'list-classes' => $listClasses[$type] ?? 'vector-menu-content-list',
|
2020-04-03 20:05:22 +00:00
|
|
|
'html-items' => '',
|
2020-07-30 16:01:59 +00:00
|
|
|
'is-dropdown' => $type === self::MENU_TYPE_DROPDOWN,
|
2020-04-07 23:21:20 +00:00
|
|
|
'html-tooltip' => Linker::tooltip( 'p-' . $label ),
|
2020-01-09 10:59:09 +00:00
|
|
|
];
|
2019-11-18 20:23:48 +00:00
|
|
|
|
2020-04-03 20:05:22 +00:00
|
|
|
foreach ( $urls as $key => $item ) {
|
2020-07-21 22:58:33 +00:00
|
|
|
$props['html-items'] .= $this->getSkin()->makeListItem( $key, $item );
|
2020-04-07 22:55:08 +00:00
|
|
|
// Check the class of the item for a `selected` class and if so, propagate the items
|
|
|
|
// label to the main label.
|
|
|
|
if ( $setLabelToSelected ) {
|
|
|
|
if ( isset( $item['class'] ) && stripos( $item['class'], 'selected' ) !== false ) {
|
|
|
|
$props['label'] = $item['text'];
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 20:05:22 +00:00
|
|
|
}
|
2020-04-07 23:21:20 +00:00
|
|
|
|
2020-04-28 21:16:21 +00:00
|
|
|
$afterPortal = '';
|
|
|
|
if ( $isPortal ) {
|
|
|
|
// The BaseTemplate::getAfterPortlet method ran the SkinAfterPortlet
|
|
|
|
// hook and if content is added appends it to the html-after-portal method.
|
|
|
|
// This replicates that historic behaviour.
|
|
|
|
// This code should eventually be upstreamed to SkinMustache in core.
|
|
|
|
// Currently in production this supports the Wikibase 'edit' link.
|
|
|
|
$content = $this->getAfterPortlet( $label );
|
|
|
|
if ( $content !== '' ) {
|
|
|
|
$afterPortal = Html::rawElement(
|
|
|
|
'div',
|
|
|
|
[ 'class' => [ 'after-portlet', 'after-portlet-' . $label ] ],
|
|
|
|
$content
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$props['html-after-portal'] = $afterPortal;
|
2020-05-14 21:19:12 +00:00
|
|
|
|
|
|
|
// Mark the portal as empty if it has no content
|
|
|
|
$class = ( count( $urls ) == 0 && !$props['html-after-portal'] )
|
|
|
|
? 'vector-menu-empty emptyPortlet' : '';
|
|
|
|
$props['class'] = trim( "$class $extraClasses[$type]" );
|
2020-04-03 20:05:22 +00:00
|
|
|
return $props;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function getMenuProps() : array {
|
2020-04-28 21:16:21 +00:00
|
|
|
$contentNavigation = $this->buildContentNavigationUrls();
|
|
|
|
$personalTools = self::getPersonalToolsForMakeListItem(
|
|
|
|
$this->buildPersonalUrls()
|
|
|
|
);
|
|
|
|
$skin = $this;
|
2020-04-03 20:05:22 +00:00
|
|
|
|
|
|
|
// For logged out users Vector shows a "Not logged in message"
|
|
|
|
// This should be upstreamed to core, with instructions for how to hide it for skins
|
|
|
|
// that do not want it.
|
|
|
|
// For now we create a dedicated list item to avoid having to sync the API internals
|
|
|
|
// of makeListItem.
|
2020-04-28 17:58:55 +00:00
|
|
|
if ( !$skin->getUser()->isLoggedIn() && User::groupHasPermission( '*', 'edit' ) ) {
|
2020-04-03 20:05:22 +00:00
|
|
|
$loggedIn =
|
2020-01-09 10:59:09 +00:00
|
|
|
Html::element( 'li',
|
|
|
|
[ 'id' => 'pt-anonuserpage' ],
|
2020-07-08 18:04:32 +00:00
|
|
|
$skin->msg( 'notloggedin' )->text()
|
2020-01-09 10:59:09 +00:00
|
|
|
);
|
2020-04-03 20:05:22 +00:00
|
|
|
} else {
|
|
|
|
$loggedIn = '';
|
2020-01-13 06:06:44 +00:00
|
|
|
}
|
2019-11-18 20:23:48 +00:00
|
|
|
|
2020-04-03 20:05:22 +00:00
|
|
|
// This code doesn't belong here, it belongs in the UniversalLanguageSelector
|
|
|
|
// It is here to workaround the fact that it wants to be the first item in the personal menus.
|
2020-01-09 10:59:09 +00:00
|
|
|
if ( array_key_exists( 'uls', $personalTools ) ) {
|
2020-05-11 22:09:21 +00:00
|
|
|
$uls = $skin->makeListItem( 'uls', $personalTools[ 'uls' ] );
|
2020-01-09 10:59:09 +00:00
|
|
|
unset( $personalTools[ 'uls' ] );
|
2020-04-03 20:05:22 +00:00
|
|
|
} else {
|
|
|
|
$uls = '';
|
2020-01-09 10:59:09 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 20:05:22 +00:00
|
|
|
$ptools = $this->getMenuData( 'personal', $personalTools );
|
|
|
|
// Append additional link items if present.
|
|
|
|
$ptools['html-items'] = $uls . $loggedIn . $ptools['html-items'];
|
2020-01-09 10:59:09 +00:00
|
|
|
|
2020-04-03 20:05:22 +00:00
|
|
|
return [
|
|
|
|
'data-personal-menu' => $ptools,
|
2020-04-07 22:55:08 +00:00
|
|
|
'data-namespace-tabs' => $this->getMenuData(
|
|
|
|
'namespaces',
|
|
|
|
$contentNavigation[ 'namespaces' ] ?? [],
|
|
|
|
self::MENU_TYPE_TABS
|
|
|
|
),
|
|
|
|
'data-variants' => $this->getMenuData(
|
|
|
|
'variants',
|
|
|
|
$contentNavigation[ 'variants' ] ?? [],
|
|
|
|
self::MENU_TYPE_DROPDOWN,
|
2020-07-21 22:58:33 +00:00
|
|
|
true
|
2020-04-07 22:55:08 +00:00
|
|
|
),
|
|
|
|
'data-page-actions' => $this->getMenuData(
|
|
|
|
'views',
|
|
|
|
$contentNavigation[ 'views' ] ?? [],
|
2020-07-21 22:58:33 +00:00
|
|
|
self::MENU_TYPE_TABS
|
2020-04-07 22:55:08 +00:00
|
|
|
),
|
|
|
|
'data-page-actions-more' => $this->getMenuData(
|
|
|
|
'cactions',
|
|
|
|
$contentNavigation[ 'actions' ] ?? [],
|
|
|
|
self::MENU_TYPE_DROPDOWN
|
|
|
|
),
|
2020-04-03 20:05:22 +00:00
|
|
|
];
|
2019-11-18 20:23:48 +00:00
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|