2014-06-17 11:08:05 +00:00
|
|
|
( function ( $, mw ) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class mw.popups.settings
|
|
|
|
* @singleton
|
|
|
|
*/
|
|
|
|
var settings = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the navigation popups gadget is enabled by looking for
|
|
|
|
* the `disablePopups` method
|
|
|
|
* @property navPopEnabled
|
|
|
|
*/
|
|
|
|
settings.navPopEnabled = ( typeof disablePopups !== 'undefined' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The settings' dialog's section element
|
|
|
|
* @property $element
|
|
|
|
*/
|
|
|
|
settings.$element = $( '<section> ' ).attr( 'id', 'mwe-popups-settings' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the relevant form and labels in the settings dialog
|
|
|
|
*
|
|
|
|
* @method render
|
|
|
|
*/
|
|
|
|
settings.render = function () {
|
|
|
|
var
|
|
|
|
$closeIcon = $( '<a>' ).html( '×' ),
|
|
|
|
$titleText = $( '<h1>' ).text( mw.message( 'popups-settings-title' ).text() ),
|
|
|
|
$title = $( '<header>' ).append( $closeIcon, $titleText ),
|
|
|
|
$description = $( '<p>' ).text( mw.message( 'popups-settings-description' ).text() ),
|
|
|
|
$radioGroup = $( '<radiogroup>' ),
|
|
|
|
$cancelButton = $( '<button>' ).addClass( 'mw-ui-button mw-ui-quiet' ).text( mw.message( 'popups-settings-cancel' ).text() ).attr( 'type', 'button' ),
|
|
|
|
$saveButton = $( '<button>' ).addClass( 'mw-ui-button mw-ui-constructive' ).text( mw.message( 'popups-settings-save' ).text() ).attr( 'type', 'button' ),
|
|
|
|
$actions = $( '<div>' ).addClass( 'mwe-popups-settings-actions' ).append( $cancelButton, $saveButton ),
|
|
|
|
$form = $( '<form>' ).append( $radioGroup, $actions ),
|
|
|
|
$main = $( '<main>' ).append( $description, $form ),
|
|
|
|
options = [
|
|
|
|
[ mw.message( 'popups-settings-option-read-quickly' ).text(), mw.message( 'popups-settings-option-read-quickly-description' ).text(), 'hovercard.svg' ],
|
|
|
|
[ mw.message( 'popups-settings-option-monitor-or-edit' ).text(), mw.message( 'popups-settings-option-monitor-or-edit-description' ).text(), 'navpop.svg' ],
|
|
|
|
[ mw.message( 'popups-settings-option-off' ).text(), mw.message( 'popups-settings-option-off-description' ).text() ]
|
|
|
|
];
|
|
|
|
|
|
|
|
$( $closeIcon ).add( $cancelButton ).click( settings.close );
|
|
|
|
$saveButton.click( settings.save );
|
|
|
|
|
|
|
|
$radioGroup.append( settings.renderOption( 0, options[ 0 ], true ) );
|
2014-08-12 10:40:57 +00:00
|
|
|
if ( settings.navPopEnabled ) {
|
2014-06-17 11:08:05 +00:00
|
|
|
$radioGroup.append( settings.renderOption( 1, options[ 1 ] ) );
|
|
|
|
}
|
|
|
|
$radioGroup.append( settings.renderOption( 2, options[ 2 ] ) );
|
|
|
|
|
|
|
|
settings.$element
|
|
|
|
.hide()
|
|
|
|
.append( $title, $main );
|
|
|
|
|
|
|
|
$( 'body' ).append( settings.$element );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders an option with its input[type='radio'], label and image
|
|
|
|
*
|
|
|
|
* @method renderOption
|
|
|
|
* @param {Array} content
|
|
|
|
* @param {Boolean} checked
|
|
|
|
* @return {jQuery} The paragraph that holds the above mentioned elements
|
|
|
|
*/
|
|
|
|
settings.renderOption = function ( id, content, checked ) {
|
|
|
|
var
|
|
|
|
title = content[ 0 ].toLowerCase().split( ' ' ).join( '_' ),
|
|
|
|
domId = 'mwe-popups-settings-' + title,
|
|
|
|
$input = $( '<input>' )
|
|
|
|
.attr( {
|
|
|
|
name: 'mwe-popups-setting',
|
|
|
|
value: id,
|
|
|
|
type: 'radio',
|
|
|
|
id: domId
|
|
|
|
} ),
|
|
|
|
$label = $( '<label>' )
|
|
|
|
.attr( 'for', domId )
|
|
|
|
.html( content[ 1 ] )
|
|
|
|
.prepend( $( '<span>' ).text( content[ 0 ] ) ),
|
|
|
|
$p = $( '<p>' ).append( $input, $label );
|
|
|
|
|
|
|
|
if ( checked ) {
|
|
|
|
$input.prop( 'checked', true );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( content.length === 3) {
|
|
|
|
$p.append(
|
|
|
|
$( '<img>' ).attr( 'src', mw.config.get( 'wgExtensionAssetsPath' ) + '/Popups/resources/' + content[ 2 ] )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $p;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the setting to localStorage (jStorage) and close the dialog
|
|
|
|
*
|
|
|
|
* @method save
|
|
|
|
*/
|
|
|
|
settings.save = function () {
|
|
|
|
var v = $('input[name=mwe-popups-setting]:checked','#mwe-popups-settings').val();
|
|
|
|
if ( v === '0' ) {
|
|
|
|
$.jStorage.set( 'mwe-popups-enabled', 'true' );
|
|
|
|
location.reload();
|
|
|
|
} else {
|
|
|
|
$.jStorage.set( 'mwe-popups-enabled', 'false' );
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
settings.close();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the settings element and position it correctly
|
|
|
|
*
|
|
|
|
* @method open
|
|
|
|
*/
|
|
|
|
settings.open = function ( e ) {
|
|
|
|
var
|
|
|
|
h = $( window ).height(),
|
|
|
|
w = $( window ).width();
|
|
|
|
|
|
|
|
$( 'body' ).append( $( '<div>' ).addClass( 'mwe-popups-overlay' ) );
|
|
|
|
|
|
|
|
settings.$element
|
|
|
|
.show()
|
|
|
|
.css( 'left', ( w - 600 ) / 2 )
|
|
|
|
.css( 'top', ( h - settings.$element.outerHeight( true ) ) / 2 );
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close the setting dialoag and remove the overlay
|
|
|
|
*
|
|
|
|
* @method close
|
|
|
|
*/
|
|
|
|
settings.close = function () {
|
|
|
|
$( '.mwe-popups-overlay' ).remove();
|
|
|
|
settings.$element.hide();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a link to the footer to re-enable hovercards
|
|
|
|
*
|
|
|
|
* @method addFooterLink
|
|
|
|
*/
|
|
|
|
settings.addFooterLink = function () {
|
|
|
|
if ( mw.popups.enabled ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var
|
|
|
|
$setting = $( '<li>' ).append(
|
|
|
|
$( '<a>' )
|
|
|
|
.attr( 'href', '#)' )
|
|
|
|
.text( mw.message( 'popups-settings-enable' ).text() )
|
|
|
|
.click( settings.open )
|
|
|
|
),
|
|
|
|
$footer = $( '#footer-places, #f-list' );
|
|
|
|
|
|
|
|
// From https://en.wikipedia.org/wiki/MediaWiki:Gadget-ReferenceTooltips.js
|
|
|
|
if ( $footer.length === 0 ) {
|
|
|
|
$footer = $( '#footer li' ).parent();
|
|
|
|
}
|
|
|
|
$footer.append( $setting );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
settings.render();
|
|
|
|
|
|
|
|
$( function () {
|
|
|
|
if( !mw.popups.enabled ) {
|
|
|
|
settings.addFooterLink();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
mw.popups.settings = settings;
|
|
|
|
|
|
|
|
} ) ( jQuery, mediaWiki );
|