2018-11-16 15:16:25 +00:00
|
|
|
( function ( M ) {
|
2018-10-10 21:49:25 +00:00
|
|
|
var Page = M.require( 'mobile.startup/Page' ),
|
2018-07-02 22:12:37 +00:00
|
|
|
allIssues = {},
|
|
|
|
KEYWORD_ALL_SECTIONS = 'all',
|
2018-07-11 15:16:21 +00:00
|
|
|
config = mw.config,
|
2018-07-02 22:12:37 +00:00
|
|
|
NS_MAIN = 0,
|
|
|
|
NS_TALK = 1,
|
|
|
|
NS_CATEGORY = 14,
|
2018-07-11 15:16:21 +00:00
|
|
|
CURRENT_NS = config.get( 'wgNamespaceNumber' ),
|
2018-11-12 20:32:28 +00:00
|
|
|
features = mw.config.get( 'wgMinervaFeatures', {} ),
|
2018-08-16 19:00:38 +00:00
|
|
|
pageIssuesParser = M.require( 'skins.minerva.scripts/pageIssuesParser' ),
|
2018-11-24 01:49:47 +00:00
|
|
|
pageIssuesOverlay = M.require( 'skins.minerva.scripts/pageIssuesOverlay' ),
|
2018-11-12 20:32:28 +00:00
|
|
|
// When the query string flag is set force on new treatment.
|
|
|
|
// When wgMinervaPageIssuesNewTreatment is the default this line can be removed.
|
2018-09-19 22:21:32 +00:00
|
|
|
QUERY_STRING_FLAG = mw.util.getParamValue( 'minerva-issues' ),
|
2018-11-12 20:32:28 +00:00
|
|
|
newTreatmentEnabled = features.pageIssues || QUERY_STRING_FLAG;
|
2018-08-17 19:00:57 +00:00
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
/**
|
|
|
|
* Create a link element that opens the issues overlay.
|
|
|
|
*
|
|
|
|
* @ignore
|
|
|
|
*
|
|
|
|
* @param {string} labelText The text value of the element
|
|
|
|
* @return {JQuery}
|
|
|
|
*/
|
|
|
|
function createLinkElement( labelText ) {
|
2019-01-09 13:57:26 +00:00
|
|
|
return $( '<a>' ).addClass( 'cleanup mw-mf-cleanup' ).text( labelText );
|
2018-07-30 11:33:34 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-12-06 11:32:59 +00:00
|
|
|
/**
|
|
|
|
* Creates a "read more" button with given text.
|
|
|
|
* @param {string} msg
|
|
|
|
* @return {JQuery}
|
|
|
|
*/
|
|
|
|
function createLearnMoreLink( msg ) {
|
|
|
|
return $( '<span>' )
|
|
|
|
.addClass( 'ambox-learn-more' )
|
|
|
|
.text( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Modifies the `issue` DOM to create a banner designed for
|
|
|
|
* single issue templates, and handles event-binding for that issues overlay.
|
|
|
|
*
|
|
|
|
* @param {IssueSummary} issue
|
|
|
|
* @param {string} msg
|
|
|
|
* @param {string} overlayUrl
|
|
|
|
* @param {Object} overlayManager
|
|
|
|
*/
|
|
|
|
function createPageIssueBanner( issue, msg, overlayUrl, overlayManager ) {
|
|
|
|
var $learnMoreEl = createLearnMoreLink( msg ),
|
|
|
|
$issueContainer = issue.$el.find( '.mbox-text' );
|
|
|
|
|
|
|
|
$issueContainer.prepend( issue.iconString );
|
|
|
|
$issueContainer.prepend( $learnMoreEl );
|
|
|
|
|
2019-02-02 19:14:39 +00:00
|
|
|
issue.$el.on( 'click', function () {
|
2018-12-06 11:32:59 +00:00
|
|
|
overlayManager.router.navigate( overlayUrl );
|
|
|
|
return false;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Modifies the `issue` DOM to create a banner designed for
|
|
|
|
* multiple issue templates, and handles event-binding for that issues overlay.
|
|
|
|
*
|
|
|
|
* @param {IssueSummary} issue
|
|
|
|
* @param {string} msg
|
|
|
|
* @param {string} overlayUrl
|
|
|
|
* @param {Object} overlayManager
|
|
|
|
*/
|
|
|
|
function createPageIssueBannerMultiple( issue, msg, overlayUrl, overlayManager ) {
|
|
|
|
var $learnMoreEl = createLearnMoreLink( msg ),
|
|
|
|
$parentContentContainer = issue.$el.parents( '.mbox-text-span, .mbox-text-div' ),
|
|
|
|
$parentContainer = issue.$el.parents( '.mbox-text' );
|
|
|
|
|
|
|
|
$parentContentContainer.prepend( issue.iconString );
|
|
|
|
$parentContentContainer.prepend( $learnMoreEl );
|
|
|
|
|
2019-01-09 13:57:26 +00:00
|
|
|
$parentContainer.on( 'click', function () {
|
2018-12-06 11:32:59 +00:00
|
|
|
overlayManager.router.navigate( overlayUrl );
|
|
|
|
return false;
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Modifies the page DOM to insert a page-issue notice below the title of the page,
|
|
|
|
* containing a link with a message like "this page has issues".
|
|
|
|
* Used on talk & category namespaces, or when page-issue banners have been disabled.s
|
|
|
|
*
|
|
|
|
* @param {string} labelText
|
|
|
|
* @param {string} section
|
|
|
|
*/
|
|
|
|
function createPageIssueNotice( labelText, section ) {
|
|
|
|
var $link = createLinkElement( labelText );
|
|
|
|
$link.attr( 'href', '#/issues/' + section );
|
2019-01-09 13:57:26 +00:00
|
|
|
// eslint-disable-next-line jquery/no-global-selector
|
2018-12-06 11:32:59 +00:00
|
|
|
$link.insertAfter( $( 'h1#section_0' ) );
|
|
|
|
}
|
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
/**
|
|
|
|
* Render a banner in a containing element.
|
|
|
|
* if in group B, a learn more link will be append to any amboxes inside $container
|
|
|
|
* if in group A or control, any amboxes in container will be removed and a link "page issues"
|
|
|
|
* will be rendered above the heading.
|
|
|
|
* This function comes with side effects. It will populate a global "allIssues" object which
|
|
|
|
* will link section numbers to issues.
|
2018-07-26 10:13:33 +00:00
|
|
|
* @param {Page} page to search for page issues inside
|
2018-07-30 11:33:34 +00:00
|
|
|
* @param {string} labelText what the label of the page issues banner should say
|
2018-08-23 20:57:47 +00:00
|
|
|
* @param {string} section that the banner and its issues belong to.
|
2018-07-30 11:33:34 +00:00
|
|
|
* If string KEYWORD_ALL_SECTIONS banner should apply to entire page.
|
2018-09-13 15:33:20 +00:00
|
|
|
* @param {boolean} inline - if true the first ambox in the section will become the entry point
|
|
|
|
* for the issues overlay
|
2018-07-30 11:33:34 +00:00
|
|
|
* and if false, a link will be rendered under the heading.
|
2018-07-30 14:45:44 +00:00
|
|
|
* @param {OverlayManager} overlayManager
|
2018-07-30 11:33:34 +00:00
|
|
|
* @ignore
|
2018-07-30 14:35:54 +00:00
|
|
|
*
|
|
|
|
* @return {JQuery.Object}
|
2018-07-30 11:33:34 +00:00
|
|
|
*/
|
2018-07-26 10:13:33 +00:00
|
|
|
function createBanner( page, labelText, section, inline, overlayManager ) {
|
2018-12-06 11:32:59 +00:00
|
|
|
var
|
|
|
|
$metadata,
|
2018-07-30 11:33:34 +00:00
|
|
|
issueUrl = section === KEYWORD_ALL_SECTIONS ? '#/issues/' + KEYWORD_ALL_SECTIONS : '#/issues/' + section,
|
|
|
|
selector = 'table.ambox, table.tmbox, table.cmbox, table.fmbox',
|
2018-12-06 11:32:59 +00:00
|
|
|
issueSummaries = [];
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-07-26 10:13:33 +00:00
|
|
|
if ( section === KEYWORD_ALL_SECTIONS ) {
|
|
|
|
$metadata = page.$( selector );
|
|
|
|
} else {
|
|
|
|
// find heading associated with the section
|
|
|
|
$metadata = page.findChildInSectionLead( parseInt( section, 10 ), selector );
|
|
|
|
}
|
2018-07-30 11:33:34 +00:00
|
|
|
// clean it up a little
|
|
|
|
$metadata.find( '.NavFrame' ).remove();
|
|
|
|
$metadata.each( function () {
|
2018-12-06 11:32:59 +00:00
|
|
|
var issueSummary,
|
2018-07-30 11:33:34 +00:00
|
|
|
$this = $( this );
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
if ( $this.find( selector ).length === 0 ) {
|
2018-12-06 11:32:59 +00:00
|
|
|
issueSummary = pageIssuesParser.extract( $this );
|
2018-10-16 23:02:22 +00:00
|
|
|
// Some issues after "extract" has been run will have no text.
|
2018-07-30 11:33:34 +00:00
|
|
|
// For example in Template:Talk header the table will be removed and no issue found.
|
|
|
|
// These should not be rendered.
|
2018-12-06 11:32:59 +00:00
|
|
|
if ( issueSummary.text ) {
|
|
|
|
issueSummaries.push( issueSummary );
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2018-07-30 11:33:34 +00:00
|
|
|
}
|
|
|
|
} );
|
2018-07-11 15:16:21 +00:00
|
|
|
// store it for later
|
2018-11-27 12:29:39 +00:00
|
|
|
allIssues[ section ] = issueSummaries;
|
2018-12-06 11:32:59 +00:00
|
|
|
|
|
|
|
if ( inline ) {
|
|
|
|
issueSummaries.forEach( function ( issueSummary, i ) {
|
|
|
|
var isGrouped = issueSummary.issue.grouped,
|
2018-11-27 12:29:39 +00:00
|
|
|
lastIssueIsGrouped = issueSummaries[ i - 1 ] &&
|
|
|
|
issueSummaries[ i - 1 ].issue.grouped;
|
2018-12-06 11:32:59 +00:00
|
|
|
// only render the first grouped issue of each group
|
|
|
|
if ( isGrouped && !lastIssueIsGrouped ) {
|
|
|
|
createPageIssueBannerMultiple( issueSummary, mw.msg( 'skin-minerva-issue-learn-more' ), issueUrl, overlayManager );
|
|
|
|
} else {
|
|
|
|
createPageIssueBanner( issueSummary, mw.msg( 'skin-minerva-issue-learn-more' ), issueUrl, overlayManager );
|
|
|
|
}
|
2018-07-30 11:33:34 +00:00
|
|
|
} );
|
2018-12-06 11:32:59 +00:00
|
|
|
} else if ( issueSummaries.length ) {
|
|
|
|
createPageIssueNotice( labelText, section );
|
2018-07-02 22:12:37 +00:00
|
|
|
}
|
2018-07-30 14:35:54 +00:00
|
|
|
|
|
|
|
return $metadata;
|
2018-07-30 11:33:34 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
/**
|
|
|
|
* Obtains the list of issues for the current page and provided section
|
2018-09-13 15:33:20 +00:00
|
|
|
* @param {number|string} section either KEYWORD_ALL_SECTIONS or a number relating to the
|
|
|
|
* section the issues belong to
|
2018-07-30 11:33:34 +00:00
|
|
|
* @return {jQuery.Object[]} array of all issues.
|
|
|
|
*/
|
|
|
|
function getIssues( section ) {
|
2018-08-31 22:48:34 +00:00
|
|
|
if ( section !== KEYWORD_ALL_SECTIONS ) {
|
2018-11-27 12:29:39 +00:00
|
|
|
return allIssues[ section ] || [];
|
2018-07-02 22:12:37 +00:00
|
|
|
}
|
2018-08-31 22:48:34 +00:00
|
|
|
// Note section.all may not exist, depending on the structure of the HTML page.
|
|
|
|
// It will only exist when Minerva has been run in desktop mode.
|
|
|
|
// If it's absent, we'll reduce all the other lists into one.
|
|
|
|
return allIssues.all || Object.keys( allIssues ).reduce(
|
|
|
|
function ( all, key ) {
|
2018-11-27 12:29:39 +00:00
|
|
|
return all.concat( allIssues[ key ] );
|
2018-08-31 22:48:34 +00:00
|
|
|
},
|
|
|
|
[]
|
|
|
|
);
|
2018-07-30 11:33:34 +00:00
|
|
|
}
|
2018-07-02 22:12:37 +00:00
|
|
|
|
2018-08-23 20:57:47 +00:00
|
|
|
/**
|
2018-08-29 09:45:04 +00:00
|
|
|
* Returns an array containing the section of each page issue.
|
2018-08-29 12:59:37 +00:00
|
|
|
* In the case that several page issues are grouped in a 'multiple issues' template,
|
|
|
|
* returns the section of those issues as one item.
|
2018-08-29 09:45:04 +00:00
|
|
|
* @param {Object} allIssues mapping section {Number} to {IssueSummary}
|
2018-08-23 20:57:47 +00:00
|
|
|
* @return {array}
|
|
|
|
*/
|
2018-08-29 09:45:04 +00:00
|
|
|
function getAllIssuesSections( allIssues ) {
|
|
|
|
return Object.keys( allIssues ).reduce( function ( acc, section ) {
|
|
|
|
if ( allIssues[ section ].length ) {
|
2018-08-29 12:59:37 +00:00
|
|
|
allIssues[ section ].forEach( function ( issue, i ) {
|
2018-11-27 12:29:39 +00:00
|
|
|
var lastIssue = allIssues[ section ][ i - 1 ];
|
2018-08-29 12:59:37 +00:00
|
|
|
// If the last issue belongs to a "Multiple issues" template,
|
|
|
|
// and so does the current one, don't add the current one.
|
2018-10-16 22:46:28 +00:00
|
|
|
if ( lastIssue && lastIssue.grouped && issue.grouped ) {
|
2018-08-29 12:59:37 +00:00
|
|
|
acc[ acc.length - 1 ] = section;
|
|
|
|
} else {
|
|
|
|
acc.push( section );
|
|
|
|
}
|
2018-08-29 09:45:04 +00:00
|
|
|
} );
|
|
|
|
}
|
|
|
|
return acc;
|
|
|
|
}, [] );
|
2018-08-23 20:57:47 +00:00
|
|
|
}
|
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
/**
|
|
|
|
* Scan an element for any known cleanup templates and replace them with a button
|
|
|
|
* that opens them in a mobile friendly overlay.
|
|
|
|
* @ignore
|
2018-07-30 14:45:44 +00:00
|
|
|
* @param {OverlayManager} overlayManager
|
|
|
|
* @param {Page} page
|
2018-07-30 11:33:34 +00:00
|
|
|
*/
|
2018-07-30 14:45:44 +00:00
|
|
|
function initPageIssues( overlayManager, page ) {
|
2018-07-11 15:16:21 +00:00
|
|
|
var label,
|
2018-07-30 11:33:34 +00:00
|
|
|
$lead = page.getLeadSectionElement(),
|
2018-08-16 18:43:28 +00:00
|
|
|
issueOverlayShowAll = CURRENT_NS === NS_CATEGORY || CURRENT_NS === NS_TALK || !$lead,
|
2018-07-26 10:13:33 +00:00
|
|
|
inline = newTreatmentEnabled && CURRENT_NS === 0;
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
// set A-B test class.
|
2018-11-12 20:32:28 +00:00
|
|
|
// When wgMinervaPageIssuesNewTreatment is the default this can be removed.
|
|
|
|
if ( newTreatmentEnabled ) {
|
2019-01-09 13:57:26 +00:00
|
|
|
// eslint-disable-next-line jquery/no-global-selector
|
2018-11-12 20:32:28 +00:00
|
|
|
$( 'html' ).addClass( 'issues-group-B' );
|
|
|
|
}
|
2018-07-02 22:12:37 +00:00
|
|
|
|
2018-08-16 18:43:28 +00:00
|
|
|
if ( CURRENT_NS === NS_TALK || CURRENT_NS === NS_CATEGORY ) {
|
2018-07-30 11:33:34 +00:00
|
|
|
// e.g. Template:English variant category; Template:WikiProject
|
2018-07-26 10:13:33 +00:00
|
|
|
createBanner( page, mw.msg( 'mobile-frontend-meta-data-issues-header-talk' ),
|
2018-07-30 14:45:44 +00:00
|
|
|
KEYWORD_ALL_SECTIONS, inline, overlayManager );
|
2018-07-11 15:16:21 +00:00
|
|
|
} else if ( CURRENT_NS === NS_MAIN ) {
|
2018-07-30 11:33:34 +00:00
|
|
|
label = mw.msg( 'mobile-frontend-meta-data-issues-header' );
|
|
|
|
if ( issueOverlayShowAll ) {
|
2018-07-26 10:13:33 +00:00
|
|
|
createBanner( page, label, KEYWORD_ALL_SECTIONS, inline, overlayManager );
|
2018-07-30 11:33:34 +00:00
|
|
|
} else {
|
|
|
|
// parse lead
|
2018-08-23 20:57:47 +00:00
|
|
|
createBanner( page, label, '0', inline, overlayManager );
|
2018-08-13 21:54:24 +00:00
|
|
|
if ( newTreatmentEnabled ) {
|
2018-09-13 15:33:20 +00:00
|
|
|
// parse other sections but only in group B. In treatment A no issues are shown
|
|
|
|
// for sections.
|
2018-07-26 10:13:33 +00:00
|
|
|
page.$( Page.HEADING_SELECTOR ).each( function ( i, headingEl ) {
|
2018-07-30 11:33:34 +00:00
|
|
|
var $headingEl = $( headingEl ),
|
|
|
|
sectionNum = $headingEl.find( '.edit-page' ).data( 'section' );
|
2018-07-13 20:23:55 +00:00
|
|
|
|
2018-09-13 15:33:20 +00:00
|
|
|
// Note certain headings matched using Page.HEADING_SELECTOR may not be
|
|
|
|
// headings and will not have a edit link. E.g. table of contents.
|
2018-08-23 20:57:47 +00:00
|
|
|
if ( sectionNum ) {
|
2018-09-13 15:33:20 +00:00
|
|
|
// Render banner for sectionNum associated with headingEl inside
|
|
|
|
// Page
|
|
|
|
createBanner(
|
|
|
|
page, label, sectionNum.toString(), inline, overlayManager
|
|
|
|
);
|
2018-08-23 20:57:47 +00:00
|
|
|
}
|
2018-07-30 11:33:34 +00:00
|
|
|
} );
|
2018-07-02 22:12:37 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
2018-07-30 11:33:34 +00:00
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-07-30 11:33:34 +00:00
|
|
|
// Setup the overlay route.
|
|
|
|
overlayManager.add( new RegExp( '^/issues/(\\d+|' + KEYWORD_ALL_SECTIONS + ')$' ), function ( section ) {
|
2018-11-24 01:49:47 +00:00
|
|
|
return pageIssuesOverlay(
|
|
|
|
getIssues( section ), section, CURRENT_NS
|
|
|
|
);
|
2018-07-30 11:33:34 +00:00
|
|
|
} );
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-08-16 19:00:38 +00:00
|
|
|
M.define( 'skins.minerva.scripts/pageIssues', {
|
2018-07-30 14:35:54 +00:00
|
|
|
init: initPageIssues,
|
|
|
|
test: {
|
2018-08-29 09:45:04 +00:00
|
|
|
getAllIssuesSections: getAllIssuesSections,
|
2018-07-30 14:35:54 +00:00
|
|
|
createBanner: createBanner
|
|
|
|
}
|
2018-07-30 14:45:44 +00:00
|
|
|
} );
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-11-16 15:16:25 +00:00
|
|
|
}( mw.mobileFrontend ) );
|