2018-11-12 19:22:46 +00:00
|
|
|
( function () {
|
2018-06-27 23:12:28 +00:00
|
|
|
// To allow users to cancel a thanks in the event of an accident, the action is delayed.
|
|
|
|
var THANKS_DELAY = 2000,
|
|
|
|
msgOptions = {
|
|
|
|
// tag ensures that only one message in workflow is shown at any time
|
|
|
|
tag: 'thanks'
|
|
|
|
};
|
2015-01-15 00:14:12 +00:00
|
|
|
/**
|
2017-08-03 23:05:54 +00:00
|
|
|
* Attempt to execute a thank operation for a given edit
|
2015-01-15 00:14:12 +00:00
|
|
|
*
|
2016-04-22 19:47:08 +00:00
|
|
|
* @param {string} name The username of the user who made the edit
|
|
|
|
* @param {string} revision The revision the user created
|
2017-06-22 00:30:35 +00:00
|
|
|
* @param {string} recipientGender The gender of the user who made the edit
|
2017-08-03 23:05:54 +00:00
|
|
|
* @return {Promise} The thank operation's status.
|
2015-01-15 00:14:12 +00:00
|
|
|
*/
|
2017-06-22 00:30:35 +00:00
|
|
|
function thankUser( name, revision, recipientGender ) {
|
2018-02-04 14:47:22 +00:00
|
|
|
return ( new mw.Api() ).postWithToken( 'csrf', {
|
2015-06-16 03:02:29 +00:00
|
|
|
action: 'thank',
|
|
|
|
rev: revision,
|
|
|
|
source: 'mobilediff'
|
2018-02-04 14:47:22 +00:00
|
|
|
} ).then( function () {
|
2018-06-27 23:12:28 +00:00
|
|
|
mw.notify( mw.msg( 'thanks-button-action-completed', name, recipientGender, mw.user ),
|
|
|
|
msgOptions );
|
2018-02-04 14:47:22 +00:00
|
|
|
}, function ( errorCode ) {
|
|
|
|
switch ( errorCode ) {
|
|
|
|
case 'invalidrevision':
|
2018-06-27 23:12:28 +00:00
|
|
|
mw.notify( mw.msg( 'thanks-error-invalidrevision' ), msgOptions );
|
2018-02-04 14:47:22 +00:00
|
|
|
break;
|
|
|
|
case 'ratelimited':
|
2018-06-27 23:12:28 +00:00
|
|
|
mw.notify( mw.msg( 'thanks-error-ratelimited', recipientGender ), msgOptions );
|
2018-02-04 14:47:22 +00:00
|
|
|
break;
|
|
|
|
default:
|
2018-06-27 23:12:28 +00:00
|
|
|
mw.notify( mw.msg( 'thanks-error-undefined', errorCode ), msgOptions );
|
2018-02-04 14:47:22 +00:00
|
|
|
}
|
|
|
|
} );
|
2013-09-26 01:16:56 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 23:44:50 +00:00
|
|
|
/**
|
|
|
|
* Disables the thank button marking the user as thanked
|
|
|
|
*
|
|
|
|
* @param {jQuery} $button used for thanking
|
|
|
|
* @param {string} gender The gender of the user who made the edit
|
|
|
|
* @return {jQuery} $button now disabled
|
|
|
|
*/
|
|
|
|
function disableThanks( $button, gender ) {
|
|
|
|
return $button
|
|
|
|
.addClass( 'thanked' )
|
|
|
|
.prop( 'disabled', true )
|
|
|
|
.text( mw.message( 'thanks-button-thanked', mw.user, gender ).text() );
|
|
|
|
}
|
|
|
|
|
2013-09-26 01:16:56 +00:00
|
|
|
/**
|
|
|
|
* Create a thank button for a given edit
|
|
|
|
*
|
2016-04-22 19:47:08 +00:00
|
|
|
* @param {string} name The username of the user who made the edit
|
|
|
|
* @param {string} rev The revision the user created
|
|
|
|
* @param {string} gender The gender of the user who made the edit
|
2018-02-10 19:14:21 +00:00
|
|
|
* @return {jQuery|null} The HTML of the button.
|
2013-09-26 01:16:56 +00:00
|
|
|
*/
|
|
|
|
function createThankLink( name, rev, gender ) {
|
2018-06-27 23:12:28 +00:00
|
|
|
var timeout,
|
|
|
|
$button = $( '<button>' ).addClass(
|
2018-06-13 23:44:50 +00:00
|
|
|
'mw-mf-action-button mw-ui-button mw-ui-progressive mw-ui-icon mw-ui-icon-before mw-ui-icon-userTalk'
|
|
|
|
).text( mw.message( 'thanks-button-thank', mw.user, gender ).text() );
|
2017-08-03 23:05:54 +00:00
|
|
|
|
2013-09-26 01:16:56 +00:00
|
|
|
// Don't make thank button for self
|
2018-02-10 19:14:21 +00:00
|
|
|
if ( name === mw.config.get( 'wgUserName' ) ) {
|
|
|
|
return null;
|
2013-09-26 01:16:56 +00:00
|
|
|
}
|
2018-02-10 19:14:21 +00:00
|
|
|
// See if user has already been thanked for this edit
|
|
|
|
if ( mw.config.get( 'wgThanksAlreadySent' ) ) {
|
2018-06-13 23:44:50 +00:00
|
|
|
return disableThanks( $button, gender );
|
2018-02-10 19:14:21 +00:00
|
|
|
}
|
2018-06-27 23:12:28 +00:00
|
|
|
|
|
|
|
function cancelThanks( $btn ) {
|
|
|
|
// Hide the notification
|
|
|
|
$( '.mw-notification' ).hide();
|
|
|
|
// Clear the queued thanks!
|
|
|
|
clearTimeout( timeout );
|
|
|
|
timeout = null;
|
|
|
|
$btn.prop( 'disabled', false );
|
|
|
|
}
|
|
|
|
|
|
|
|
function queueThanks( $btn ) {
|
|
|
|
var $msg = $( '<div class="mw-thanks-notification">' ).text(
|
|
|
|
mw.msg( 'thanks-button-action-queued', name, gender )
|
|
|
|
);
|
|
|
|
$( '<a>' ).text( mw.msg( 'thanks-button-action-cancel' ) ).appendTo( $msg );
|
|
|
|
mw.notify( $msg, msgOptions );
|
|
|
|
// Make it possible to cancel
|
|
|
|
$msg.find( 'a' ).on( 'click', function () {
|
|
|
|
cancelThanks( $btn );
|
2018-02-10 19:14:21 +00:00
|
|
|
} );
|
2018-06-27 23:12:28 +00:00
|
|
|
timeout = setTimeout( function () {
|
|
|
|
timeout = null;
|
|
|
|
thankUser( name, rev, gender ).then( function () {
|
|
|
|
disableThanks( $btn, gender );
|
|
|
|
} );
|
|
|
|
}, THANKS_DELAY );
|
|
|
|
}
|
|
|
|
|
|
|
|
return $button.on( 'click', function () {
|
|
|
|
var $this = $( this );
|
|
|
|
$this.prop( 'disabled', true );
|
|
|
|
if ( !$this.hasClass( 'thanked' ) && !timeout ) {
|
|
|
|
queueThanks( $this );
|
|
|
|
}
|
|
|
|
} );
|
2013-09-26 01:16:56 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 00:14:12 +00:00
|
|
|
/**
|
|
|
|
* Initialise a thank button in the given container.
|
|
|
|
*
|
2016-04-22 19:47:47 +00:00
|
|
|
* @param {jQuery} $user existing element with data attributes associated describing a user.
|
|
|
|
* @param {jQuery} $container to render button in
|
2015-01-15 00:14:12 +00:00
|
|
|
*/
|
|
|
|
function init( $user, $container ) {
|
|
|
|
var username = $user.data( 'user-name' ),
|
2013-09-26 01:16:56 +00:00
|
|
|
rev = $user.data( 'revision-id' ),
|
|
|
|
gender = $user.data( 'user-gender' ),
|
|
|
|
$thankBtn;
|
|
|
|
|
2015-11-24 17:27:25 +00:00
|
|
|
$thankBtn = createThankLink( username, rev, gender );
|
|
|
|
if ( $thankBtn ) {
|
|
|
|
$thankBtn.prependTo( $container );
|
2013-09-26 01:16:56 +00:00
|
|
|
}
|
2015-11-24 17:27:25 +00:00
|
|
|
|
2015-01-15 00:14:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$( function () {
|
|
|
|
init( $( '.mw-mf-user' ), $( '#mw-mf-userinfo' ) );
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Expose for testing purposes
|
|
|
|
mw.thanks = $.extend( {}, mw.thanks || {}, {
|
|
|
|
_mobileDiffInit: init
|
2013-09-26 01:16:56 +00:00
|
|
|
} );
|
2018-11-12 19:22:46 +00:00
|
|
|
}() );
|