2017-07-12 15:12:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2018-04-15 23:21:12 +00:00
|
|
|
* 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
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
2018-04-15 23:21:12 +00:00
|
|
|
|
2020-03-04 02:53:53 +00:00
|
|
|
use MediaWiki\Linker\LinkTarget;
|
2017-07-12 15:12:40 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2019-08-02 09:00:18 +00:00
|
|
|
use MediaWiki\Minerva\Menu\Main\MainMenuDirector;
|
2019-05-24 00:07:27 +00:00
|
|
|
use MediaWiki\Minerva\Permissions\IMinervaPagePermissions;
|
2019-04-08 17:08:57 +00:00
|
|
|
use MediaWiki\Minerva\SkinOptions;
|
2020-05-01 01:16:53 +00:00
|
|
|
use MediaWiki\Minerva\Skins\SkinUserPageHelper;
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Minerva: Born from the godhead of Jupiter with weapons!
|
|
|
|
* A skin that works on both desktop and mobile
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
2020-10-02 20:03:14 +00:00
|
|
|
class SkinMinerva extends SkinMustache {
|
2017-08-22 14:12:32 +00:00
|
|
|
/** @const LEAD_SECTION_NUMBER integer which corresponds to the lead section
|
2020-01-26 19:26:31 +00:00
|
|
|
* in editing mode
|
|
|
|
*/
|
2020-05-19 22:43:34 +00:00
|
|
|
public const LEAD_SECTION_NUMBER = 0;
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2020-11-05 02:02:15 +00:00
|
|
|
/** @var string Name of this skin */
|
2017-07-12 15:12:40 +00:00
|
|
|
public $skinname = 'minerva';
|
2020-11-05 02:02:15 +00:00
|
|
|
/** @var string Name of this used template */
|
2017-07-12 15:12:40 +00:00
|
|
|
public $template = 'MinervaTemplate';
|
2019-04-10 12:52:34 +00:00
|
|
|
|
2020-01-26 19:26:31 +00:00
|
|
|
/** @var SkinOptions */
|
2019-04-10 21:43:50 +00:00
|
|
|
private $skinOptions;
|
|
|
|
|
2019-05-24 00:07:27 +00:00
|
|
|
/**
|
|
|
|
* This variable is lazy loaded, please use getPermissions() getter
|
|
|
|
* @see SkinMinerva::getPermissions()
|
|
|
|
* @var IMinervaPagePermissions
|
|
|
|
*/
|
|
|
|
private $permissions;
|
|
|
|
|
2019-04-10 21:43:50 +00:00
|
|
|
/**
|
|
|
|
* Initialize Minerva Skin
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
2020-08-03 18:58:49 +00:00
|
|
|
parent::__construct( [
|
|
|
|
'name' => 'minerva',
|
2020-10-02 20:03:14 +00:00
|
|
|
'templateDirectory' => __DIR__,
|
2020-10-02 20:19:36 +00:00
|
|
|
'messages' => [
|
|
|
|
'mobile-frontend-footer-sitename'
|
|
|
|
],
|
2020-08-03 18:58:49 +00:00
|
|
|
'responsive' => true
|
|
|
|
] );
|
2019-04-10 21:43:50 +00:00
|
|
|
$this->skinOptions = MediaWikiServices::getInstance()->getService( 'Minerva.SkinOptions' );
|
|
|
|
}
|
|
|
|
|
2020-10-02 20:03:14 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getTemplateData() {
|
|
|
|
$data = parent::getTemplateData();
|
|
|
|
$tpl = $this->prepareQuickTemplate();
|
|
|
|
$tplData = $tpl->execute();
|
|
|
|
return $data + $tplData;
|
|
|
|
}
|
|
|
|
|
2019-05-24 00:07:27 +00:00
|
|
|
/**
|
|
|
|
* Lazy load the permissions object. We don't want to initialize it as it requires many
|
|
|
|
* dependencies, sometimes some of those dependencies cannot be fulfilled (like missing Title
|
|
|
|
* object)
|
|
|
|
* @return IMinervaPagePermissions
|
|
|
|
*/
|
2019-06-21 16:52:22 +00:00
|
|
|
private function getPermissions(): IMinervaPagePermissions {
|
2019-05-24 00:07:27 +00:00
|
|
|
if ( $this->permissions === null ) {
|
|
|
|
$this->permissions = MediaWikiServices::getInstance()
|
2019-10-08 17:22:31 +00:00
|
|
|
->getService( 'Minerva.Permissions' )
|
|
|
|
->setContext( $this->getContext() );
|
2019-05-24 00:07:27 +00:00
|
|
|
}
|
|
|
|
return $this->permissions;
|
|
|
|
}
|
|
|
|
|
2019-04-08 17:08:57 +00:00
|
|
|
/**
|
|
|
|
* Initalized main menu. Please use getter.
|
2019-07-14 14:44:29 +00:00
|
|
|
* @var MainMenuDirector
|
2019-04-08 17:08:57 +00:00
|
|
|
*/
|
|
|
|
private $mainMenu;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the Main Menu Director by passing the skin options
|
|
|
|
*
|
|
|
|
* @return MainMenuDirector
|
|
|
|
*/
|
2019-06-21 16:52:22 +00:00
|
|
|
protected function getMainMenu(): MainMenuDirector {
|
2019-04-08 17:08:57 +00:00
|
|
|
if ( !$this->mainMenu ) {
|
|
|
|
$this->mainMenu = MediaWikiServices::getInstance()->getService( 'Minerva.Menu.MainDirector' );
|
|
|
|
}
|
|
|
|
return $this->mainMenu;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* initialize various variables and generate the template
|
|
|
|
* @return QuickTemplate
|
2019-07-14 14:44:29 +00:00
|
|
|
* @suppress PhanTypeMismatchArgument
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
|
|
|
protected function prepareQuickTemplate() {
|
|
|
|
$out = $this->getOutput();
|
2019-01-10 22:59:56 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
// Generate skin template
|
|
|
|
$tpl = parent::prepareQuickTemplate();
|
|
|
|
|
|
|
|
// Set whether or not the page content should be wrapped in div.content (for
|
|
|
|
// example, on a special page)
|
|
|
|
$tpl->set( 'unstyledContent', $out->getProperty( 'unstyledContent' ) );
|
|
|
|
|
|
|
|
// Set the links for page secondary actions
|
|
|
|
$tpl->set( 'secondary_actions', $this->getSecondaryActions( $tpl ) );
|
|
|
|
|
|
|
|
// Construct various Minerva-specific interface elements
|
2019-08-02 14:12:26 +00:00
|
|
|
$this->prepareMenus( $tpl );
|
2017-07-12 15:12:40 +00:00
|
|
|
$this->preparePageContent( $tpl );
|
|
|
|
$this->prepareHeaderAndFooter( $tpl );
|
|
|
|
$this->prepareBanners( $tpl );
|
2019-06-10 15:51:35 +00:00
|
|
|
$this->prepareUserNotificationsButton( $tpl, $tpl->get( 'newtalk' ) );
|
2017-07-12 15:12:40 +00:00
|
|
|
$this->prepareLanguages( $tpl );
|
|
|
|
|
|
|
|
return $tpl;
|
|
|
|
}
|
|
|
|
|
2019-08-02 14:12:26 +00:00
|
|
|
/**
|
|
|
|
* Prepare all Minerva menus
|
|
|
|
* @param BaseTemplate $tpl
|
|
|
|
* @throws MWException
|
|
|
|
*/
|
|
|
|
private function prepareMenus( BaseTemplate $tpl ) {
|
|
|
|
$services = MediaWikiServices::getInstance();
|
|
|
|
/** @var \MediaWiki\Minerva\Menu\PageActions\PageActionsDirector $pageActionsDirector */
|
|
|
|
$pageActionsDirector = $services->getService( 'Minerva.Menu.PageActionsDirector' );
|
|
|
|
/** @var \MediaWiki\Minerva\Menu\User\UserMenuDirector $userMenuDirector */
|
|
|
|
$userMenuDirector = $services->getService( 'Minerva.Menu.UserMenuDirector' );
|
|
|
|
|
2020-06-26 10:19:47 +00:00
|
|
|
$sidebar = parent::buildSidebar();
|
|
|
|
$personalUrls = $tpl->get( 'personal_urls' );
|
|
|
|
$personalTools = $this->getSkin()->getPersonalToolsForMakeListItem( $personalUrls );
|
|
|
|
|
2019-08-02 14:12:26 +00:00
|
|
|
$tpl->set( 'mainMenu', $this->getMainMenu()->getMenuData() );
|
2020-06-26 10:19:47 +00:00
|
|
|
$tpl->set( 'pageActionsMenu', $pageActionsDirector->buildMenu( $sidebar['TOOLBOX'] ) );
|
|
|
|
$tpl->set( 'userMenuHTML', $userMenuDirector->renderMenuData( $personalTools ) );
|
2019-08-02 14:12:26 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Prepares the header and the content of a page
|
|
|
|
* Stores in QuickTemplate prebodytext, postbodytext keys
|
|
|
|
* @param QuickTemplate $tpl
|
|
|
|
*/
|
|
|
|
protected function preparePageContent( QuickTemplate $tpl ) {
|
2019-08-02 15:02:28 +00:00
|
|
|
$services = MediaWikiServices::getInstance();
|
2017-07-12 15:12:40 +00:00
|
|
|
$title = $this->getTitle();
|
|
|
|
|
|
|
|
// If it's a talk page, add a link to the main namespace page
|
2019-02-26 18:24:42 +00:00
|
|
|
// In AMC we do not need to do this as there is an easy way back to the article page
|
|
|
|
// via the talk/article tabs.
|
2019-08-22 20:31:31 +00:00
|
|
|
if ( $title->isTalkPage() && !$this->skinOptions->get( SkinOptions::TALK_AT_TOP ) ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
// if it's a talk page for which we have a special message, use it
|
|
|
|
switch ( $title->getNamespace() ) {
|
|
|
|
case NS_USER_TALK:
|
|
|
|
$msg = 'mobile-frontend-talk-back-to-userpage';
|
|
|
|
break;
|
|
|
|
case NS_PROJECT_TALK:
|
|
|
|
$msg = 'mobile-frontend-talk-back-to-projectpage';
|
|
|
|
break;
|
|
|
|
case NS_FILE_TALK:
|
|
|
|
$msg = 'mobile-frontend-talk-back-to-filepage';
|
|
|
|
break;
|
|
|
|
default: // generic (all other NS)
|
|
|
|
$msg = 'mobile-frontend-talk-back-to-page';
|
|
|
|
}
|
2019-08-02 15:02:28 +00:00
|
|
|
$subjectPage = $services->getNamespaceInfo()->getSubjectPage( $title );
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
$tpl->set( 'subject-page', MediaWikiServices::getInstance()->getLinkRenderer()->makeLink(
|
2019-08-02 15:02:28 +00:00
|
|
|
$subjectPage,
|
2017-07-12 15:12:40 +00:00
|
|
|
$this->msg( $msg, $title->getText() )->text(),
|
|
|
|
[ 'class' => 'return-link' ]
|
|
|
|
) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides Skin::doEditSectionLink
|
2020-03-20 21:49:22 +00:00
|
|
|
* @param Title $nt The title being linked to (may not be the same as
|
|
|
|
* the current page, if the section is included from a template)
|
2017-07-12 15:12:40 +00:00
|
|
|
* @param string $section
|
|
|
|
* @param string|null $tooltip
|
2018-07-23 20:12:42 +00:00
|
|
|
* @param Language $lang
|
2017-07-12 15:12:40 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2018-07-23 20:12:42 +00:00
|
|
|
public function doEditSectionLink( Title $nt, $section, $tooltip, Language $lang ) {
|
2019-08-27 20:27:57 +00:00
|
|
|
if ( $this->getPermissions()->isAllowed( IMinervaPagePermissions::EDIT_OR_CREATE ) &&
|
2019-05-24 00:07:27 +00:00
|
|
|
!$nt->isMainPage() ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
$message = $this->msg( 'mobile-frontend-editor-edit' )->inLanguage( $lang )->text();
|
2018-09-21 01:38:10 +00:00
|
|
|
$html = Html::openElement( 'span', [ 'class' => 'mw-editsection' ] );
|
2017-07-12 15:12:40 +00:00
|
|
|
$html .= Html::element( 'a', [
|
2020-03-20 21:49:22 +00:00
|
|
|
'href' => $nt->getLocalURL( [ 'action' => 'edit', 'section' => $section ] ),
|
2017-07-12 15:12:40 +00:00
|
|
|
'title' => $this->msg( 'editsectionhint', $tooltip )->inLanguage( $lang )->text(),
|
|
|
|
'data-section' => $section,
|
|
|
|
// Note visibility of the edit section link button is controlled by .edit-page in ui.less so
|
|
|
|
// we default to enabled even though this may not be true.
|
2019-09-11 12:19:47 +00:00
|
|
|
'class' => MinervaUI::iconClass(
|
2020-04-10 17:40:05 +00:00
|
|
|
'edit-base20', 'element', 'edit-page mw-ui-icon-flush-right', 'wikimedia'
|
2019-09-11 12:19:47 +00:00
|
|
|
),
|
2017-07-12 15:12:40 +00:00
|
|
|
], $message );
|
|
|
|
$html .= Html::closeElement( 'span' );
|
|
|
|
return $html;
|
|
|
|
}
|
2018-06-18 19:33:03 +00:00
|
|
|
return '';
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Takes a title and returns classes to apply to the body tag
|
|
|
|
* @param Title $title
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPageClasses( $title ) {
|
|
|
|
$className = parent::getPageClasses( $title );
|
2019-08-01 16:18:18 +00:00
|
|
|
$className .= ' ' . ( $this->skinOptions->get( SkinOptions::BETA_MODE )
|
2019-04-10 21:43:50 +00:00
|
|
|
? 'beta' : 'stable' );
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
if ( $title->isMainPage() ) {
|
|
|
|
$className .= ' page-Main_Page ';
|
|
|
|
}
|
|
|
|
|
2020-12-18 03:09:15 +00:00
|
|
|
if ( $this->getUser()->isRegistered() ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
$className .= ' is-authenticated';
|
|
|
|
}
|
2018-11-12 20:32:28 +00:00
|
|
|
// The new treatment should only apply to the main namespace
|
|
|
|
if (
|
|
|
|
$title->getNamespace() === NS_MAIN &&
|
2019-08-01 16:18:18 +00:00
|
|
|
$this->skinOptions->get( SkinOptions::PAGE_ISSUES )
|
2018-11-12 20:32:28 +00:00
|
|
|
) {
|
|
|
|
$className .= ' issues-group-B';
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
return $className;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the output page contains category links and the category feature is enabled.
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function hasCategoryLinks() {
|
2019-08-01 16:18:18 +00:00
|
|
|
if ( !$this->skinOptions->get( SkinOptions::CATEGORIES ) ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$categoryLinks = $this->getOutput()->getCategoryLinks();
|
|
|
|
|
|
|
|
if ( !count( $categoryLinks ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return !empty( $categoryLinks['normal'] ) || !empty( $categoryLinks['hidden'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return SkinUserPageHelper
|
|
|
|
*/
|
|
|
|
public function getUserPageHelper() {
|
2019-04-10 12:52:34 +00:00
|
|
|
return MediaWikiServices::getInstance()->getService( 'Minerva.SkinUserPageHelper' );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepares the user button.
|
|
|
|
* @param QuickTemplate $tpl
|
2019-05-07 20:27:56 +00:00
|
|
|
* @param string $newTalks New talk page messages for the current user
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
2019-06-10 15:51:35 +00:00
|
|
|
protected function prepareUserNotificationsButton( QuickTemplate $tpl, $newTalks ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
$user = $this->getUser();
|
|
|
|
$currentTitle = $this->getTitle();
|
2019-10-01 21:40:49 +00:00
|
|
|
$notificationsMsg = $this->msg( 'mobile-frontend-user-button-tooltip' )->text();
|
|
|
|
$notificationIconClass = MinervaUI::iconClass( 'bellOutline-base20',
|
|
|
|
'element', '', 'wikimedia' );
|
|
|
|
|
2020-12-18 03:09:15 +00:00
|
|
|
if ( $user->isRegistered() ) {
|
2019-10-01 21:40:49 +00:00
|
|
|
$badge = Html::element( 'a', [
|
|
|
|
'class' => $notificationIconClass,
|
2020-05-26 13:19:57 +00:00
|
|
|
'href' => SpecialPage::getTitleFor( 'Mytalk' )->getLocalURL(
|
2019-10-01 21:40:49 +00:00
|
|
|
[ 'returnto' => $currentTitle->getPrefixedText() ]
|
|
|
|
),
|
|
|
|
], $notificationsMsg );
|
|
|
|
Hooks::run( 'SkinMinervaReplaceNotificationsBadge',
|
|
|
|
[ $user, $currentTitle, &$badge ] );
|
|
|
|
$tpl->set( 'userNotificationsHTML', $badge );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-11 19:04:00 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Rewrites the language list so that it cannot be contaminated by other extensions with things
|
|
|
|
* other than languages
|
|
|
|
* See bug 57094.
|
|
|
|
*
|
|
|
|
* @todo Remove when Special:Languages link goes stable
|
|
|
|
* @param QuickTemplate $tpl
|
|
|
|
*/
|
|
|
|
protected function prepareLanguages( $tpl ) {
|
|
|
|
$lang = $this->getTitle()->getPageViewLanguage();
|
|
|
|
$tpl->set( 'pageLang', $lang->getHtmlCode() );
|
|
|
|
$tpl->set( 'pageDir', $lang->getDir() );
|
2018-01-26 18:04:53 +00:00
|
|
|
// If the array is empty, then instead give the skin boolean false
|
|
|
|
$language_urls = $this->getLanguages() ?: false;
|
|
|
|
$tpl->set( 'language_urls', $language_urls );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 18:55:24 +00:00
|
|
|
/**
|
|
|
|
* Get a history link which describes author and relative time of last edit
|
|
|
|
* @param Title $title The Title object of the page being viewed
|
2020-01-04 12:24:24 +00:00
|
|
|
* @param string $timestamp
|
2017-11-22 18:55:24 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getRelativeHistoryLink( Title $title, $timestamp ) {
|
|
|
|
$user = $this->getUser();
|
2019-05-14 10:40:56 +00:00
|
|
|
$userDate = $this->getLanguage()->userDate( $timestamp, $user );
|
2017-11-22 18:55:24 +00:00
|
|
|
$text = $this->msg(
|
2019-05-14 10:40:56 +00:00
|
|
|
'minerva-last-modified-date', $userDate,
|
2017-11-22 18:55:24 +00:00
|
|
|
$this->getLanguage()->userTime( $timestamp, $user )
|
|
|
|
)->parse();
|
|
|
|
return [
|
|
|
|
// Use $edit['timestamp'] (Unix format) instead of $timestamp (MW format)
|
|
|
|
'data-timestamp' => wfTimestamp( TS_UNIX, $timestamp ),
|
|
|
|
'href' => $this->getHistoryUrl( $title ),
|
|
|
|
'text' => $text,
|
|
|
|
] + $this->getRevisionEditorData( $title );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a history link which makes no reference to user or last edited time
|
|
|
|
* @param Title $title The Title object of the page being viewed
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getGenericHistoryLink( Title $title ) {
|
|
|
|
$text = $this->msg( 'mobile-frontend-history' )->plain();
|
|
|
|
return [
|
|
|
|
'href' => $this->getHistoryUrl( $title ),
|
|
|
|
'text' => $text,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the URL for the history page for the given title using Special:History
|
|
|
|
* when available.
|
|
|
|
* @param Title $title The Title object of the page being viewed
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function getHistoryUrl( Title $title ) {
|
2019-04-04 16:03:48 +00:00
|
|
|
return ExtensionRegistry::getInstance()->isLoaded( 'MobileFrontend' ) &&
|
|
|
|
SpecialMobileHistory::shouldUseSpecialHistory( $title, $this->getUser() ) ?
|
2017-11-22 18:55:24 +00:00
|
|
|
SpecialPage::getTitleFor( 'History', $title )->getLocalURL() :
|
|
|
|
$title->getLocalURL( [ 'action' => 'history' ] );
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Prepare the content for the 'last edited' message, e.g. 'Last edited on 30 August
|
|
|
|
* 2013, at 23:31'. This message is different for the main page since main page
|
2019-01-11 12:13:49 +00:00
|
|
|
* content is typically transcluded rather than edited directly.
|
2019-08-02 13:38:18 +00:00
|
|
|
*
|
|
|
|
* The relative time is only rendered on the latest revision.
|
|
|
|
* For older revisions the last modified information will not render with a relative time
|
|
|
|
* nor will it show the name of the editor.
|
2017-07-12 15:12:40 +00:00
|
|
|
* @param Title $title The Title object of the page being viewed
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-11-22 18:55:24 +00:00
|
|
|
protected function getHistoryLink( Title $title ) {
|
2020-07-29 15:08:13 +00:00
|
|
|
$out = $this->getOutput();
|
|
|
|
$isLatestRevision = $out->getRevisionId() === $title->getLatestRevID();
|
2017-07-12 15:12:40 +00:00
|
|
|
// Get rev_timestamp of current revision (preloaded by MediaWiki core)
|
2020-07-29 15:08:13 +00:00
|
|
|
$timestamp = $out->getRevisionTimestamp();
|
2017-11-16 23:21:05 +00:00
|
|
|
# No cached timestamp, load it from the database
|
|
|
|
if ( $timestamp === null ) {
|
2020-03-04 02:19:05 +00:00
|
|
|
$timestamp = MediaWikiServices::getInstance()
|
|
|
|
->getRevisionLookup()
|
2020-07-29 15:08:13 +00:00
|
|
|
->getTimestampFromId( $out->getRevisionId() );
|
2017-11-16 23:21:05 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 18:55:24 +00:00
|
|
|
return !$isLatestRevision || $title->isMainPage() ?
|
|
|
|
$this->getGenericHistoryLink( $title ) :
|
|
|
|
$this->getRelativeHistoryLink( $title, $timestamp );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2017-09-06 15:20:16 +00:00
|
|
|
|
|
|
|
/**
|
2017-11-22 18:55:24 +00:00
|
|
|
* Returns data attributes representing the editor for the current revision.
|
2020-03-04 02:53:53 +00:00
|
|
|
* @param LinkTarget $title The Title object of the page being viewed
|
2017-11-22 18:55:24 +00:00
|
|
|
* @return array representing user with name and gender fields. Empty if the editor no longer
|
|
|
|
* exists in the database or is hidden from public view.
|
2017-09-06 15:20:16 +00:00
|
|
|
*/
|
2020-03-04 02:53:53 +00:00
|
|
|
private function getRevisionEditorData( LinkTarget $title ) {
|
|
|
|
$rev = MediaWikiServices::getInstance()->getRevisionLookup()
|
|
|
|
->getRevisionByTitle( $title );
|
2017-11-22 18:55:24 +00:00
|
|
|
$result = [];
|
|
|
|
if ( $rev ) {
|
2020-03-04 02:53:53 +00:00
|
|
|
$revUser = $rev->getUser();
|
2017-11-22 18:55:24 +00:00
|
|
|
// Note the user will only be returned if that information is public
|
2020-03-04 02:53:53 +00:00
|
|
|
if ( $revUser ) {
|
|
|
|
$revUser = User::newFromIdentity( $revUser );
|
2017-11-22 18:55:24 +00:00
|
|
|
$editorName = $revUser->getName();
|
|
|
|
$editorGender = $revUser->getOption( 'gender' );
|
|
|
|
$result += [
|
|
|
|
'data-user-name' => $editorName,
|
|
|
|
'data-user-gender' => $editorGender,
|
|
|
|
];
|
|
|
|
}
|
2017-09-06 15:20:16 +00:00
|
|
|
}
|
2017-11-22 18:55:24 +00:00
|
|
|
return $result;
|
2017-09-06 15:20:16 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Returns the HTML representing the tagline
|
|
|
|
* @return string HTML for tagline
|
|
|
|
*/
|
|
|
|
protected function getTaglineHtml() {
|
2017-11-28 21:55:58 +00:00
|
|
|
$tagline = '';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
if ( $this->getUserPageHelper()->isUserPage() ) {
|
|
|
|
$pageUser = $this->getUserPageHelper()->getPageUser();
|
|
|
|
$fromDate = $pageUser->getRegistration();
|
|
|
|
if ( is_string( $fromDate ) ) {
|
|
|
|
$fromDateTs = wfTimestamp( TS_UNIX, $fromDate );
|
|
|
|
|
|
|
|
// This is shown when js is disabled. js enhancement made due to caching
|
|
|
|
$tagline = $this->msg( 'mobile-frontend-user-page-member-since',
|
|
|
|
$this->getLanguage()->userDate( new MWTimestamp( $fromDateTs ), $this->getUser() ),
|
2018-09-04 05:58:45 +00:00
|
|
|
$pageUser )->text();
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
// Define html attributes for usage with js enhancement (unix timestamp, gender)
|
|
|
|
$attrs = [ 'id' => 'tagline-userpage',
|
|
|
|
'data-userpage-registration-date' => $fromDateTs,
|
|
|
|
'data-userpage-gender' => $pageUser->getOption( 'gender' ) ];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$title = $this->getTitle();
|
|
|
|
if ( $title ) {
|
2018-10-31 21:37:17 +00:00
|
|
|
$out = $this->getOutput();
|
|
|
|
$tagline = $out->getProperty( 'wgMFDescription' );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$attrs[ 'class' ] = 'tagline';
|
2017-11-28 21:55:58 +00:00
|
|
|
return Html::element( 'div', $attrs, $tagline );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2019-10-11 19:04:00 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Returns the HTML representing the heading.
|
|
|
|
* @return string HTML for header
|
|
|
|
*/
|
|
|
|
protected function getHeadingHtml() {
|
|
|
|
if ( $this->getUserPageHelper()->isUserPage() ) {
|
|
|
|
// The heading is just the username without namespace
|
|
|
|
$heading = $this->getUserPageHelper()->getPageUser()->getName();
|
|
|
|
} else {
|
2019-04-02 19:17:14 +00:00
|
|
|
$heading = $this->getOutput()->getPageTitle();
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
return Html::rawElement( 'h1', [ 'id' => 'section_0' ], $heading );
|
|
|
|
}
|
2019-06-21 20:07:11 +00:00
|
|
|
|
2019-11-13 01:48:59 +00:00
|
|
|
/**
|
|
|
|
* @return bool Whether or not current title is a Talk page with the default
|
|
|
|
* action ('view')
|
|
|
|
*/
|
|
|
|
private function isTalkPageWithViewAction() {
|
|
|
|
$title = $this->getTitle();
|
|
|
|
|
|
|
|
return $title->isTalkPage() && Action::getActionName( $this->getContext() ) === "view";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-06-18 19:11:32 +00:00
|
|
|
* @internal Should not be used outside Minerva.
|
|
|
|
* @todo Find better place for this.
|
|
|
|
*
|
|
|
|
* @return bool Whether or not the simplified talk page is enabled and action is 'view'
|
2019-11-13 01:48:59 +00:00
|
|
|
*/
|
2020-06-18 19:11:32 +00:00
|
|
|
public function isSimplifiedTalkPageEnabled(): bool {
|
2019-11-25 22:29:11 +00:00
|
|
|
$title = $this->getTitle();
|
|
|
|
|
2019-11-13 01:48:59 +00:00
|
|
|
return $this->isTalkPageWithViewAction() &&
|
2019-11-25 22:29:11 +00:00
|
|
|
$this->skinOptions->get( SkinOptions::SIMPLIFIED_TALK ) &&
|
2020-05-14 20:34:11 +00:00
|
|
|
// Only if viewing the latest revision, as we can't get the section numbers otherwise
|
|
|
|
// (and even if we could, they would be useless, because edits often add and remove sections).
|
2020-07-29 15:08:13 +00:00
|
|
|
$this->getOutput()->getRevisionId() === $title->getLatestRevID() &&
|
2019-11-25 22:29:11 +00:00
|
|
|
$title->getContentModel() === CONTENT_MODEL_WIKITEXT;
|
2019-11-13 01:48:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the postheadinghtml for the talk page with view action
|
|
|
|
*
|
|
|
|
* @return string HTML for postheadinghtml
|
|
|
|
*/
|
2019-10-17 22:46:07 +00:00
|
|
|
private function getTalkPagePostHeadingHtml() {
|
|
|
|
$title = $this->getTitle();
|
2019-11-13 01:48:59 +00:00
|
|
|
$html = '';
|
|
|
|
|
|
|
|
// T237589: We don't want to show the add discussion button on Flow pages,
|
|
|
|
// only wikitext pages
|
|
|
|
if ( $this->getPermissions()->isTalkAllowed() &&
|
|
|
|
$title->getContentModel() === CONTENT_MODEL_WIKITEXT
|
|
|
|
) {
|
|
|
|
$addTopicButton = $this->getTalkButton( $title, wfMessage(
|
|
|
|
'minerva-talk-add-topic' )->text(), true );
|
|
|
|
$html = Html::element( 'a', $addTopicButton['attributes'], $addTopicButton['label'] );
|
|
|
|
}
|
2019-10-17 22:46:07 +00:00
|
|
|
|
2019-11-13 01:48:59 +00:00
|
|
|
if ( $this->isSimplifiedTalkPageEnabled() && $this->canUseWikiPage() ) {
|
2019-10-17 22:46:07 +00:00
|
|
|
$wikiPage = $this->getWikiPage();
|
|
|
|
$parserOptions = $wikiPage->makeParserOptions( $this->getContext() );
|
|
|
|
$parserOutput = $wikiPage->getParserOutput( $parserOptions );
|
|
|
|
$sectionCount = $parserOutput ? count( $parserOutput->getSections() ) : 0;
|
|
|
|
|
2019-11-13 01:48:59 +00:00
|
|
|
$message = $sectionCount > 0 ? wfMessage( 'minerva-talk-explained' )
|
|
|
|
: wfMessage( 'minerva-talk-explained-empty' );
|
2020-12-09 17:13:39 +00:00
|
|
|
$html .= Html::element( 'div', [ 'class' =>
|
2019-11-13 01:48:59 +00:00
|
|
|
'minerva-talk-content-explained' ], $message->text() );
|
2019-10-17 22:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
|
|
|
* Create and prepare header and footer content
|
|
|
|
* @param BaseTemplate $tpl
|
|
|
|
*/
|
|
|
|
protected function prepareHeaderAndFooter( BaseTemplate $tpl ) {
|
|
|
|
$title = $this->getTitle();
|
|
|
|
$user = $this->getUser();
|
|
|
|
$out = $this->getOutput();
|
2019-01-10 21:41:55 +00:00
|
|
|
$tpl->set( 'taglinehtml', $this->getTaglineHtml() );
|
2019-10-17 22:46:07 +00:00
|
|
|
|
2019-12-12 22:49:48 +00:00
|
|
|
if ( $title->isMainPage() ) {
|
2020-06-23 09:43:43 +00:00
|
|
|
$pageTitle = '';
|
|
|
|
$msg = $this->msg( 'mobile-frontend-logged-in-homepage-notification', $user->getName() );
|
|
|
|
|
2020-12-18 03:09:15 +00:00
|
|
|
if ( $user->isRegistered() && !$msg->isDisabled() ) {
|
2020-06-23 09:43:43 +00:00
|
|
|
$pageTitle = $msg->text();
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2020-06-23 09:43:43 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
$out->setPageTitle( $pageTitle );
|
2019-10-17 22:46:07 +00:00
|
|
|
} elseif ( $this->isTalkPageWithViewAction() ) {
|
|
|
|
// We only want the simplified talk page to show for the view action of the
|
|
|
|
// talk (e.g. not history action)
|
|
|
|
$tpl->set( 'postheadinghtml', $this->getTalkPagePostHeadingHtml() );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-02 13:38:18 +00:00
|
|
|
if ( $this->canUseWikiPage() && $this->getWikiPage()->exists() ) {
|
|
|
|
$tpl->set( 'historyLink', $this->getHistoryLink( $title ) );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
$tpl->set( 'headinghtml', $this->getHeadingHtml() );
|
2017-09-06 15:26:39 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
// set defaults
|
|
|
|
if ( !isset( $tpl->data['postbodytext'] ) ) {
|
|
|
|
$tpl->set( 'postbodytext', '' ); // not currently set in desktop skin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load internal banner content to show in pre content in template
|
|
|
|
* Beware of HTML caching when using this function.
|
|
|
|
* Content set as "internalbanner"
|
|
|
|
* @param BaseTemplate $tpl
|
|
|
|
*/
|
|
|
|
protected function prepareBanners( BaseTemplate $tpl ) {
|
|
|
|
// Make sure Zero banner are always on top
|
|
|
|
$banners = [ '<div id="siteNotice"></div>' ];
|
2020-06-04 22:39:36 +00:00
|
|
|
if ( $this->getConfig()->get( 'MinervaEnableSiteNotice' ) ) {
|
|
|
|
$siteNotice = $this->getSiteNotice();
|
|
|
|
if ( $siteNotice ) {
|
|
|
|
$banners[] = $siteNotice;
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
$tpl->set( 'banners', $banners );
|
|
|
|
// These banners unlike 'banners' show inside the main content chrome underneath the
|
|
|
|
// page actions.
|
|
|
|
$tpl->set( 'internalBanner', '' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with details for a language button.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getLanguageButton() {
|
|
|
|
$languageUrl = SpecialPage::getTitleFor(
|
|
|
|
'MobileLanguages',
|
|
|
|
$this->getSkin()->getTitle()
|
|
|
|
)->getLocalURL();
|
|
|
|
|
|
|
|
return [
|
|
|
|
'attributes' => [
|
|
|
|
'class' => 'language-selector',
|
|
|
|
'href' => $languageUrl,
|
|
|
|
],
|
|
|
|
'label' => $this->msg( 'mobile-frontend-language-article-heading' )->text()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with details for a talk button.
|
|
|
|
* @param Title $talkTitle Title object of the talk page
|
2019-10-17 22:46:07 +00:00
|
|
|
* @param string $label Button label
|
2017-09-28 20:06:39 +00:00
|
|
|
* @param bool $addSection (optional) when added the talk button will render
|
|
|
|
* as an add topic button. Defaults to false.
|
2017-07-12 15:12:40 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2019-10-17 22:46:07 +00:00
|
|
|
protected function getTalkButton( $talkTitle, $label, $addSection = false ) {
|
2017-09-28 20:06:39 +00:00
|
|
|
if ( $addSection ) {
|
|
|
|
$params = [ 'action' => 'edit', 'section' => 'new' ];
|
2019-10-17 22:46:07 +00:00
|
|
|
$className = 'minerva-talk-add-button ' . MinervaUI::buttonClass( 'progressive', 'button' );
|
2017-09-28 20:06:39 +00:00
|
|
|
} else {
|
|
|
|
$params = [];
|
|
|
|
$className = 'talk';
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
return [
|
|
|
|
'attributes' => [
|
2017-09-28 20:06:39 +00:00
|
|
|
'href' => $talkTitle->getLinkURL( $params ),
|
2017-07-12 15:12:40 +00:00
|
|
|
'data-title' => $talkTitle->getFullText(),
|
2017-09-28 20:06:39 +00:00
|
|
|
'class' => $className,
|
2017-07-12 15:12:40 +00:00
|
|
|
],
|
2019-10-17 22:46:07 +00:00
|
|
|
'label' => $label,
|
2017-07-12 15:12:40 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array with details for a categories button.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getCategoryButton() {
|
|
|
|
return [
|
|
|
|
'attributes' => [
|
|
|
|
'href' => '#/categories',
|
|
|
|
// add hidden class (the overlay works only, when JS is enabled (class will
|
|
|
|
// be removed in categories/init.js)
|
|
|
|
'class' => 'category-button hidden',
|
|
|
|
],
|
|
|
|
'label' => $this->msg( 'categories' )->text()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of links for page secondary actions
|
|
|
|
* @param BaseTemplate $tpl
|
2019-07-14 14:44:29 +00:00
|
|
|
* @return array
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
|
|
|
protected function getSecondaryActions( BaseTemplate $tpl ) {
|
2019-08-02 15:02:28 +00:00
|
|
|
$services = MediaWikiServices::getInstance();
|
|
|
|
$namespaceInfo = $services->getNamespaceInfo();
|
2019-07-09 16:10:31 +00:00
|
|
|
/** @var \MediaWiki\Minerva\LanguagesHelper $languagesHelper */
|
2019-08-02 15:02:28 +00:00
|
|
|
$languagesHelper = $services->getService( 'Minerva.LanguagesHelper' );
|
2017-07-12 15:12:40 +00:00
|
|
|
$buttons = [];
|
|
|
|
// always add a button to link to the talk page
|
2019-10-17 22:46:07 +00:00
|
|
|
// it will link to the wikitext talk page
|
2017-07-12 15:12:40 +00:00
|
|
|
$title = $this->getTitle();
|
2019-08-02 15:02:28 +00:00
|
|
|
$subjectPage = Title::newFromLinkTarget( $namespaceInfo->getSubjectPage( $title ) );
|
2019-08-01 16:18:18 +00:00
|
|
|
$talkAtBottom = !$this->skinOptions->get( SkinOptions::TALK_AT_TOP ) ||
|
2019-10-17 22:46:07 +00:00
|
|
|
$subjectPage->isMainPage();
|
|
|
|
if ( !$this->getUserPageHelper()->isUserPage() &&
|
|
|
|
$this->getPermissions()->isTalkAllowed() && $talkAtBottom &&
|
|
|
|
!$this->isTalkPageWithViewAction()
|
2019-01-10 22:59:56 +00:00
|
|
|
) {
|
2019-10-17 22:46:07 +00:00
|
|
|
$namespaces = $tpl->data['content_navigation']['namespaces'];
|
2017-07-12 15:12:40 +00:00
|
|
|
// FIXME [core]: This seems unnecessary..
|
|
|
|
$subjectId = $title->getNamespaceKey( '' );
|
|
|
|
$talkId = $subjectId === 'main' ? 'talk' : "{$subjectId}_talk";
|
2017-09-28 20:06:39 +00:00
|
|
|
|
|
|
|
if ( isset( $namespaces[$talkId] ) ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
$talkButton = $namespaces[$talkId];
|
2019-08-02 15:02:28 +00:00
|
|
|
$talkTitle = Title::newFromLinkTarget( $namespaceInfo->getTalkPage( $title ) );
|
|
|
|
|
2019-10-17 22:46:07 +00:00
|
|
|
$buttons['talk'] = $this->getTalkButton( $talkTitle, $talkButton['text'] );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-09 16:10:31 +00:00
|
|
|
if ( $languagesHelper->doesTitleHasLanguagesOrVariants( $title ) && $title->isMainPage() ) {
|
2017-07-12 15:12:40 +00:00
|
|
|
$buttons['language'] = $this->getLanguageButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $this->hasCategoryLinks() ) {
|
|
|
|
$buttons['categories'] = $this->getCategoryButton();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $buttons;
|
|
|
|
}
|
|
|
|
|
2019-05-07 20:21:10 +00:00
|
|
|
/**
|
|
|
|
* Minerva skin do not have sidebar, there is no need to calculate that.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function buildSidebar() {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
/**
|
2020-04-21 22:44:18 +00:00
|
|
|
* @inheritDoc
|
2017-07-12 15:12:40 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2020-04-21 22:44:18 +00:00
|
|
|
protected function getJsConfigVars() : array {
|
2019-09-18 23:07:21 +00:00
|
|
|
$title = $this->getTitle();
|
|
|
|
|
2020-04-21 22:44:18 +00:00
|
|
|
return array_merge( parent::getJsConfigVars(), [
|
2019-09-18 23:07:21 +00:00
|
|
|
'wgMinervaPermissions' => [
|
|
|
|
'watch' => $this->getPermissions()->isAllowed( IMinervaPagePermissions::WATCH ),
|
|
|
|
'talk' => $this->getUserPageHelper()->isUserPage() ||
|
|
|
|
( $this->getPermissions()->isTalkAllowed() || $title->isTalkPage() ) &&
|
|
|
|
$this->isWikiTextTalkPage()
|
|
|
|
],
|
2019-04-10 21:43:50 +00:00
|
|
|
'wgMinervaFeatures' => $this->skinOptions->getAll(),
|
2017-11-28 21:17:27 +00:00
|
|
|
'wgMinervaDownloadNamespaces' => $this->getConfig()->get( 'MinervaDownloadNamespaces' ),
|
2020-04-21 22:44:18 +00:00
|
|
|
] );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 17:17:38 +00:00
|
|
|
/**
|
2017-07-12 15:12:40 +00:00
|
|
|
* Returns true, if the talk page of this page is wikitext-based.
|
2017-07-24 16:53:04 +00:00
|
|
|
* @return bool
|
2017-07-12 15:12:40 +00:00
|
|
|
*/
|
|
|
|
protected function isWikiTextTalkPage() {
|
|
|
|
$title = $this->getTitle();
|
|
|
|
if ( !$title->isTalkPage() ) {
|
2019-08-02 15:02:28 +00:00
|
|
|
$namespaceInfo = MediaWikiServices::getInstance()->getNamespaceInfo();
|
|
|
|
$title = Title::newFromLinkTarget( $namespaceInfo->getTalkPage( $title ) );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2017-08-22 14:12:32 +00:00
|
|
|
return $title->isWikitextPage();
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of modules related to the current context of the page.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getContextSpecificModules() {
|
|
|
|
$modules = [];
|
2019-12-18 21:15:26 +00:00
|
|
|
$mobileFrontend = ExtensionRegistry::getInstance()->isLoaded( 'MobileFrontend' );
|
|
|
|
if ( $this->skinOptions->hasSkinOptions() && $mobileFrontend ) {
|
2018-09-26 23:03:20 +00:00
|
|
|
$modules[] = 'skins.minerva.options';
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2019-04-18 18:08:15 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
return $modules;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the javascript entry modules to load. Only modules that need to
|
|
|
|
* be overriden or added conditionally should be placed here.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDefaultModules() {
|
|
|
|
$modules = parent::getDefaultModules();
|
2019-05-14 09:01:04 +00:00
|
|
|
|
|
|
|
// FIXME: T223204: Dequeue default content modules except for the history
|
|
|
|
// action. Allow default history action content modules
|
2020-07-14 12:59:40 +00:00
|
|
|
// in order to enable toggling of the
|
2019-05-14 09:01:04 +00:00
|
|
|
// filters. Long term this won't be necessary when T111565 is resolved and a
|
|
|
|
// more general solution can be used.
|
|
|
|
if ( Action::getActionName( $this->getContext() ) !== 'history' ) {
|
|
|
|
// dequeue default content modules (toc, sortable, collapsible, etc.)
|
2020-07-14 12:59:40 +00:00
|
|
|
$modules['content'] = array_diff( $modules['content'], [
|
|
|
|
// T233340
|
|
|
|
'jquery.tablesorter',
|
|
|
|
// T111565
|
|
|
|
'jquery.makeCollapsible',
|
|
|
|
// Minerva provides its own implementation. Loading this will break display.
|
|
|
|
'mediawiki.toc'
|
|
|
|
] );
|
2019-05-14 09:01:04 +00:00
|
|
|
// dequeue styles associated with `content` key.
|
2020-07-14 12:59:40 +00:00
|
|
|
$modules['styles']['content'] = array_diff( $modules['styles']['content'], [
|
|
|
|
// T233340
|
|
|
|
'jquery.tablesorter.styles',
|
|
|
|
// T111565
|
|
|
|
'jquery.makeCollapsible.styles',
|
|
|
|
] );
|
2019-05-14 09:01:04 +00:00
|
|
|
}
|
2018-05-04 23:40:59 +00:00
|
|
|
$modules['styles']['core'] = $this->getSkinStyles();
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
$modules['minerva'] = array_merge(
|
|
|
|
$this->getContextSpecificModules(),
|
|
|
|
[
|
2017-08-11 16:44:49 +00:00
|
|
|
'skins.minerva.scripts'
|
2017-07-12 15:12:40 +00:00
|
|
|
]
|
|
|
|
);
|
|
|
|
|
2020-10-29 17:01:23 +00:00
|
|
|
Hooks::run( 'SkinMinervaDefaultModules', [ $this, &$modules ], '1.36' );
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
return $modules;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-06 15:28:47 +00:00
|
|
|
* Provide styles required to present the server rendered page in this skin. Additional styles
|
|
|
|
* may be loaded dynamically by the client.
|
|
|
|
*
|
|
|
|
* Any styles returned by this method are loaded on the critical rendering path as linked
|
|
|
|
* stylesheets. I.e., they are required to load on the client before first paint.
|
|
|
|
*
|
2017-07-12 15:12:40 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2019-08-06 15:28:47 +00:00
|
|
|
protected function getSkinStyles(): array {
|
2017-07-12 15:12:40 +00:00
|
|
|
$title = $this->getTitle();
|
|
|
|
$styles = [
|
|
|
|
'skins.minerva.base.styles',
|
|
|
|
'skins.minerva.content.styles',
|
2018-06-14 16:51:50 +00:00
|
|
|
'skins.minerva.content.styles.images',
|
2017-06-01 23:09:24 +00:00
|
|
|
'mediawiki.hlist',
|
2017-07-12 15:12:40 +00:00
|
|
|
'mediawiki.ui.icon',
|
|
|
|
'mediawiki.ui.button',
|
2019-07-09 19:12:51 +00:00
|
|
|
'skins.minerva.icons.wikimedia',
|
2019-12-18 19:23:09 +00:00
|
|
|
'skins.minerva.mainMenu.icons',
|
|
|
|
'skins.minerva.mainMenu.styles',
|
2017-07-12 15:12:40 +00:00
|
|
|
];
|
|
|
|
if ( $title->isMainPage() ) {
|
|
|
|
$styles[] = 'skins.minerva.mainPage.styles';
|
2018-02-14 00:14:54 +00:00
|
|
|
} elseif ( $this->getUserPageHelper()->isUserPage() ) {
|
|
|
|
$styles[] = 'skins.minerva.userpage.styles';
|
2019-10-17 22:46:07 +00:00
|
|
|
} elseif ( $this->isTalkPageWithViewAction() ) {
|
|
|
|
$styles[] = 'skins.minerva.talk.styles';
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2019-10-17 22:46:07 +00:00
|
|
|
|
2020-12-18 03:09:15 +00:00
|
|
|
if ( $this->getUser()->isRegistered() ) {
|
2017-12-13 01:25:10 +00:00
|
|
|
$styles[] = 'skins.minerva.loggedin.styles';
|
|
|
|
$styles[] = 'skins.minerva.icons.loggedin';
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2019-08-22 20:31:31 +00:00
|
|
|
// When any of these features are enabled in production
|
|
|
|
// remove the if condition
|
|
|
|
// and move the associated LESS file inside `skins.minerva.amc.styles`
|
|
|
|
// into a more appropriate module.
|
|
|
|
if (
|
|
|
|
$this->skinOptions->get( SkinOptions::PERSONAL_MENU ) ||
|
|
|
|
$this->skinOptions->get( SkinOptions::TALK_AT_TOP ) ||
|
|
|
|
$this->skinOptions->get( SkinOptions::HISTORY_IN_PAGE_ACTIONS ) ||
|
|
|
|
$this->skinOptions->get( SkinOptions::TOOLBAR_SUBMENU )
|
|
|
|
) {
|
|
|
|
// SkinOptions::PERSONAL_MENU + SkinOptions::TOOLBAR_SUBMENU uses components/ToggleList
|
|
|
|
// SkinOptions::TALK_AT_TOP uses tabs.less
|
|
|
|
// SkinOptions::HISTORY_IN_PAGE_ACTIONS + SkinOptions::TOOLBAR_SUBMENU uses pageactions.less
|
2019-01-10 22:59:56 +00:00
|
|
|
$styles[] = 'skins.minerva.amc.styles';
|
2019-08-22 20:31:31 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 22:13:57 +00:00
|
|
|
if ( $this->skinOptions->get( SkinOptions::PERSONAL_MENU ) ) {
|
|
|
|
// If ever enabled as the default, please remove the duplicate icons
|
|
|
|
// inside skins.minerva.mainMenu.icons. See comment for MAIN_MENU_EXPANDED
|
|
|
|
$styles[] = 'skins.minerva.personalMenu.icons';
|
|
|
|
}
|
|
|
|
|
2020-03-25 02:02:02 +00:00
|
|
|
if (
|
2020-04-29 04:13:55 +00:00
|
|
|
$this->skinOptions->get( SkinOptions::MAIN_MENU_EXPANDED )
|
2020-03-25 02:02:02 +00:00
|
|
|
) {
|
2019-08-22 22:13:57 +00:00
|
|
|
// If ever enabled as the default, please review skins.minerva.mainMenu.icons
|
|
|
|
// and remove any unneeded icons
|
|
|
|
$styles[] = 'skins.minerva.mainMenu.advanced.icons';
|
|
|
|
}
|
2019-08-22 20:31:31 +00:00
|
|
|
if (
|
|
|
|
$this->skinOptions->get( SkinOptions::PERSONAL_MENU ) ||
|
|
|
|
$this->skinOptions->get( SkinOptions::TOOLBAR_SUBMENU )
|
|
|
|
) {
|
|
|
|
// SkinOptions::PERSONAL_MENU requires the `userTalk` icon.
|
2020-03-25 02:02:02 +00:00
|
|
|
// SkinOptions::TOOLBAR_SUBMENU requires the rest of the icons including `overflow`.
|
2020-04-01 23:25:04 +00:00
|
|
|
// Note `skins.minerva.overflow.icons` is pulled down by skins.minerva.scripts but the menu can
|
2019-08-22 20:31:31 +00:00
|
|
|
// work without JS.
|
2020-04-01 23:25:04 +00:00
|
|
|
$styles[] = 'skins.minerva.overflow.icons';
|
2019-01-10 22:59:56 +00:00
|
|
|
}
|
2019-08-02 14:23:28 +00:00
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
return $styles;
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 00:05:20 +00:00
|
|
|
|
|
|
|
// Setup alias for compatibility with SkinMinervaNeue.
|
|
|
|
class_alias( 'SkinMinerva', 'SkinMinervaNeue' );
|