2018-11-08 00:06:54 +00:00
|
|
|
( function ( M, track, msg ) {
|
2018-12-20 22:02:57 +00:00
|
|
|
var MAX_PRINT_TIMEOUT = 3000,
|
2021-09-28 17:00:45 +00:00
|
|
|
printSetTimeoutReference = 0,
|
2019-01-08 20:35:28 +00:00
|
|
|
mobile = M.require( 'mobile.startup' ),
|
|
|
|
icons = mobile.icons,
|
|
|
|
lazyImageLoader = mobile.lazyImages.lazyImageLoader,
|
2021-09-27 17:02:06 +00:00
|
|
|
browser = mobile.Browser.getSingleton();
|
2018-11-08 00:06:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to retrieve the Android version
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2018-11-08 00:06:54 +00:00
|
|
|
* @ignore
|
|
|
|
* @param {string} userAgent User Agent
|
|
|
|
* @return {number|false} An integer.
|
|
|
|
*/
|
|
|
|
function getAndroidVersion( userAgent ) {
|
|
|
|
var match = userAgent.toLowerCase().match( /android\s(\d\.]*)/ );
|
2018-11-27 12:29:39 +00:00
|
|
|
return match ? parseInt( match[ 1 ] ) : false;
|
2018-11-08 00:06:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper function to retrieve the Chrome/Chromium version
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2018-11-08 00:06:54 +00:00
|
|
|
* @ignore
|
|
|
|
* @param {string} userAgent User Agent
|
|
|
|
* @return {number|false} An integer.
|
|
|
|
*/
|
|
|
|
function getChromeVersion( userAgent ) {
|
|
|
|
var match = userAgent.toLowerCase().match( /chrom(e|ium)\/(\d+)\./ );
|
2018-11-27 12:29:39 +00:00
|
|
|
return match ? parseInt( match[ 2 ] ) : false;
|
2018-11-08 00:06:54 +00:00
|
|
|
}
|
|
|
|
|
2018-12-20 22:02:57 +00:00
|
|
|
/**
|
|
|
|
* Checks whether DownloadIcon is available for given user agent
|
|
|
|
*
|
|
|
|
* @memberof DownloadIcon
|
|
|
|
* @instance
|
|
|
|
* @param {Window} windowObj
|
|
|
|
* @param {Page} page to download
|
|
|
|
* @param {string} userAgent User agent
|
|
|
|
* @param {number[]} supportedNamespaces where printing is possible
|
|
|
|
* @return {boolean}
|
2020-06-02 21:21:44 +00:00
|
|
|
*/
|
2018-12-20 22:02:57 +00:00
|
|
|
function isAvailable( windowObj, page, userAgent, supportedNamespaces ) {
|
|
|
|
var androidVersion = getAndroidVersion( userAgent ),
|
|
|
|
chromeVersion = getChromeVersion( userAgent );
|
2018-11-08 00:06:54 +00:00
|
|
|
|
2018-12-20 22:02:57 +00:00
|
|
|
// Download button is restricted to certain namespaces T181152.
|
2019-07-31 23:17:20 +00:00
|
|
|
// Not shown on missing pages
|
2018-12-20 22:02:57 +00:00
|
|
|
// Defaults to 0, in case cached JS has been served.
|
|
|
|
if ( supportedNamespaces.indexOf( page.getNamespaceId() ) === -1 ||
|
2019-07-31 23:17:20 +00:00
|
|
|
page.isMainPage() || page.isMissing ) {
|
2018-12-20 22:02:57 +00:00
|
|
|
// namespace is not supported or it's a main page
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-08 00:06:54 +00:00
|
|
|
|
2018-12-20 22:02:57 +00:00
|
|
|
if ( browser.isIos() || chromeVersion === false ||
|
|
|
|
windowObj.chrome === undefined
|
|
|
|
) {
|
|
|
|
// we support only chrome/chromium on desktop/android
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ( ( androidVersion && androidVersion < 5 ) || chromeVersion < 41 ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* onClick handler for button that invokes print function
|
2020-06-02 21:21:44 +00:00
|
|
|
*
|
2021-09-27 17:02:06 +00:00
|
|
|
* @param {HTMLElement} portletItem
|
2018-12-20 22:02:57 +00:00
|
|
|
* @param {Icon} spinner
|
|
|
|
*/
|
2021-09-27 17:02:06 +00:00
|
|
|
function onClick( portletItem, spinner ) {
|
|
|
|
var icon = portletItem.querySelector( '.mw-ui-icon-minerva-download' );
|
2018-12-20 22:02:57 +00:00
|
|
|
function doPrint() {
|
2021-09-28 17:00:45 +00:00
|
|
|
printSetTimeoutReference = clearTimeout( printSetTimeoutReference );
|
2018-12-20 22:02:57 +00:00
|
|
|
track( 'minerva.downloadAsPDF', {
|
|
|
|
action: 'callPrint'
|
|
|
|
} );
|
|
|
|
window.print();
|
2021-09-27 17:02:06 +00:00
|
|
|
$( icon ).show();
|
2018-12-20 22:02:57 +00:00
|
|
|
spinner.$el.hide();
|
|
|
|
}
|
2018-11-08 00:06:54 +00:00
|
|
|
|
2018-12-20 22:02:57 +00:00
|
|
|
function doPrintBeforeTimeout() {
|
2021-09-28 17:00:45 +00:00
|
|
|
if ( printSetTimeoutReference ) {
|
2018-12-20 22:02:57 +00:00
|
|
|
doPrint();
|
2018-11-08 00:06:54 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-20 22:02:57 +00:00
|
|
|
// The click handler may be invoked multiple times so if a pending print is occurring
|
|
|
|
// do nothing.
|
2021-09-28 17:00:45 +00:00
|
|
|
if ( !printSetTimeoutReference ) {
|
2018-12-20 22:02:57 +00:00
|
|
|
track( 'minerva.downloadAsPDF', {
|
|
|
|
action: 'fetchImages'
|
|
|
|
} );
|
2021-09-27 17:02:06 +00:00
|
|
|
$( icon ).hide();
|
2018-12-20 22:02:57 +00:00
|
|
|
spinner.$el.show();
|
|
|
|
// If all image downloads are taking longer to load then the MAX_PRINT_TIMEOUT
|
|
|
|
// abort the spinner and print regardless.
|
2021-09-28 17:00:45 +00:00
|
|
|
printSetTimeoutReference = setTimeout( doPrint, MAX_PRINT_TIMEOUT );
|
2019-01-10 20:53:28 +00:00
|
|
|
lazyImageLoader.loadImages( lazyImageLoader.queryPlaceholders( document.getElementById( 'content' ) ) )
|
|
|
|
.then( doPrintBeforeTimeout, doPrintBeforeTimeout );
|
2018-12-20 22:02:57 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-08 00:06:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a download icon for triggering print functionality if
|
2021-09-28 17:00:45 +00:00
|
|
|
* printing is available.
|
|
|
|
* Calling this method has side effects:
|
|
|
|
* It calls mw.util.addPortletLink and may inject an element into the page.
|
2018-11-08 00:06:54 +00:00
|
|
|
*
|
2019-07-31 23:17:20 +00:00
|
|
|
* @param {Page} page
|
2018-11-08 00:06:54 +00:00
|
|
|
* @param {number[]} supportedNamespaces
|
|
|
|
* @param {Window} [windowObj] window object
|
2021-09-27 17:02:06 +00:00
|
|
|
* @param {boolean} [overflowList] Append to overflow list
|
2020-02-07 20:59:24 +00:00
|
|
|
* @return {jQuery.Object|null}
|
2018-11-08 00:06:54 +00:00
|
|
|
*/
|
2021-09-27 17:02:06 +00:00
|
|
|
function downloadPageAction( page, supportedNamespaces, windowObj, overflowList ) {
|
2019-04-04 21:20:39 +00:00
|
|
|
var
|
2021-09-27 17:02:06 +00:00
|
|
|
portletLink, iconElement,
|
|
|
|
modifier = overflowList ? 'toggle-list-item__anchor toggle-list-item__label' :
|
|
|
|
'mw-ui-icon-element mw-ui-icon-with-label-desktop',
|
2019-04-04 21:20:39 +00:00
|
|
|
spinner = icons.spinner( {
|
|
|
|
modifier: modifier
|
|
|
|
} );
|
2019-04-10 20:31:14 +00:00
|
|
|
|
2018-11-08 00:06:54 +00:00
|
|
|
if (
|
2018-12-20 22:02:57 +00:00
|
|
|
isAvailable(
|
2019-07-31 23:17:20 +00:00
|
|
|
windowObj, page, navigator.userAgent,
|
2018-11-08 00:06:54 +00:00
|
|
|
supportedNamespaces
|
|
|
|
)
|
|
|
|
) {
|
2019-04-10 20:31:14 +00:00
|
|
|
|
2021-09-27 17:02:06 +00:00
|
|
|
portletLink = mw.util.addPortletLink(
|
|
|
|
overflowList ? 'page-actions-overflow' : 'page-actions',
|
|
|
|
'#',
|
|
|
|
msg( 'minerva-download' ),
|
|
|
|
// id
|
|
|
|
'minerva-download',
|
|
|
|
// tooltip
|
|
|
|
msg( 'minerva-download' ),
|
|
|
|
// access key
|
|
|
|
'p',
|
|
|
|
overflowList ? null : document.getElementById( 'page-actions-watch' )
|
|
|
|
);
|
|
|
|
if ( portletLink ) {
|
2021-09-28 17:00:45 +00:00
|
|
|
portletLink.addEventListener( 'click', function () {
|
|
|
|
onClick( portletLink, spinner );
|
|
|
|
} );
|
2021-09-27 17:02:06 +00:00
|
|
|
spinner.$el.hide().insertAfter(
|
|
|
|
$( portletLink ).find( '.mw-ui-icon' )
|
|
|
|
);
|
|
|
|
iconElement = portletLink.querySelector( '.mw-ui-icon' );
|
|
|
|
if ( iconElement ) {
|
|
|
|
iconElement.classList.add( 'mw-ui-icon-minerva-download' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return portletLink;
|
2018-11-08 00:06:54 +00:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-02 21:10:10 +00:00
|
|
|
module.exports = {
|
|
|
|
downloadPageAction: downloadPageAction,
|
|
|
|
test: {
|
|
|
|
isAvailable: isAvailable,
|
2021-09-28 17:00:45 +00:00
|
|
|
onClick: onClick
|
2019-07-02 21:10:10 +00:00
|
|
|
}
|
|
|
|
};
|
2019-09-27 18:53:01 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line no-restricted-properties
|
2018-11-08 00:06:54 +00:00
|
|
|
}( mw.mobileFrontend, mw.track, mw.msg ) );
|