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' ),
|
|
|
|
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 ) {
|
|
|
|
return $( '<a class="cleanup mw-mf-cleanup"></a>' )
|
|
|
|
.text( labelText );
|
|
|
|
}
|
2017-07-12 15:12:40 +00:00
|
|
|
|
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 ) {
|
|
|
|
var $learnMore, $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',
|
|
|
|
issues = [],
|
2018-10-16 22:46:28 +00:00
|
|
|
$link;
|
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 () {
|
|
|
|
var issue,
|
|
|
|
$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-10-16 23:02:22 +00:00
|
|
|
issue = pageIssuesParser.extract( $this );
|
|
|
|
// 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.
|
|
|
|
if ( issue.text ) {
|
|
|
|
issues.push( issue );
|
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-07-30 11:33:34 +00:00
|
|
|
allIssues[section] = issues;
|
2017-07-12 15:12:40 +00:00
|
|
|
|
2018-10-16 22:46:28 +00:00
|
|
|
// If issues were extracted and there are inline amboxes, add learn more
|
|
|
|
// and icon to the UI element.
|
|
|
|
if ( issues.length && $metadata.length && inline ) {
|
|
|
|
issues[0].issue.icon.$el.prependTo( $metadata.eq( 0 ).find( '.mbox-text' ) );
|
2018-07-30 11:33:34 +00:00
|
|
|
$learnMore = $( '<span>' )
|
|
|
|
.addClass( 'ambox-learn-more' )
|
|
|
|
.text( mw.msg( 'skin-minerva-issue-learn-more' ) );
|
|
|
|
if ( $( '.mw-collapsible-content' ).length ) {
|
|
|
|
// e.g. Template:Multiple issues
|
2018-11-13 00:44:06 +00:00
|
|
|
$learnMore.insertAfter( $metadata.find( '.mbox-text-span, .mbox-text-div' ) );
|
2018-05-08 22:03:52 +00:00
|
|
|
} else {
|
2018-07-30 11:33:34 +00:00
|
|
|
// e.g. Template:merge from
|
|
|
|
$learnMore.appendTo( $metadata.find( '.mbox-text' ) );
|
|
|
|
}
|
|
|
|
$metadata.click( function () {
|
|
|
|
overlayManager.router.navigate( issueUrl );
|
|
|
|
return false;
|
|
|
|
} );
|
|
|
|
} else {
|
|
|
|
$link = createLinkElement( labelText );
|
2018-09-05 19:49:31 +00:00
|
|
|
$link.attr( 'href', '#/issues/' + section );
|
2018-07-30 11:33:34 +00:00
|
|
|
if ( $metadata.length ) {
|
|
|
|
$link.insertAfter( $( 'h1#section_0' ) );
|
|
|
|
$metadata.remove();
|
2018-05-08 22:03:52 +00:00
|
|
|
}
|
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-07-30 11:33:34 +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 ) {
|
|
|
|
return all.concat( allIssues[key] );
|
|
|
|
},
|
|
|
|
[]
|
|
|
|
);
|
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 ) {
|
|
|
|
var lastIssue = allIssues[ section ][i - 1];
|
|
|
|
// 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 ) {
|
|
|
|
$( '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-09-13 15:33:20 +00:00
|
|
|
return new PageIssuesOverlay(
|
2018-10-10 21:49:25 +00:00
|
|
|
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 ) );
|