2014-02-26 02:12:47 +00:00
|
|
|
( function ( $, mw ) {
|
|
|
|
'use strict';
|
|
|
|
|
2015-05-04 19:13:43 +00:00
|
|
|
function reloadThankedState() {
|
|
|
|
$( 'a.mw-thanks-thank-link' ).each( function ( idx, el ) {
|
2014-02-26 02:12:47 +00:00
|
|
|
var $thankLink = $( el );
|
|
|
|
if ( mw.thanks.thanked.contains( $thankLink ) ) {
|
|
|
|
$thankLink.before( mw.msg( 'thanks-thanked' ) );
|
|
|
|
$thankLink.remove();
|
|
|
|
}
|
|
|
|
} );
|
2015-05-04 19:13:43 +00:00
|
|
|
}
|
2014-02-26 02:12:47 +00:00
|
|
|
|
2014-08-06 13:46:53 +00:00
|
|
|
// $thankLink is the element with the data-revision-id attribute
|
|
|
|
// $thankElement is the element to be removed on success
|
2015-05-04 19:13:43 +00:00
|
|
|
function sendThanks( $thankLink, $thankElement ) {
|
2014-02-26 02:12:47 +00:00
|
|
|
var source;
|
|
|
|
if ( mw.config.get( 'wgAction' ) === 'history' ) {
|
|
|
|
source = 'history';
|
|
|
|
} else {
|
|
|
|
source = 'diff';
|
|
|
|
}
|
2015-04-22 23:21:27 +00:00
|
|
|
|
2014-09-16 13:34:01 +00:00
|
|
|
( new mw.Api ).postWithToken( 'edit', {
|
2015-05-04 19:13:43 +00:00
|
|
|
action: 'thank',
|
|
|
|
rev: $thankLink.attr( 'data-revision-id' ),
|
|
|
|
source: source
|
2014-02-26 02:12:47 +00:00
|
|
|
} )
|
2015-04-22 23:21:27 +00:00
|
|
|
.then(
|
|
|
|
// Success
|
|
|
|
function ( data ) {
|
|
|
|
var username = $thankLink.closest(
|
|
|
|
source === 'history' ? 'li' : 'td'
|
|
|
|
).find( 'a.mw-userlink' ).text();
|
|
|
|
// Get the user who was thanked (for gender purposes)
|
|
|
|
return mw.thanks.getUserGender( username );
|
|
|
|
},
|
|
|
|
// Fail
|
|
|
|
function ( errorCode, details ) {
|
|
|
|
// TODO: use something besides alert for the error messages
|
|
|
|
switch ( errorCode ) {
|
|
|
|
case 'invalidrevision':
|
|
|
|
alert( mw.msg( 'thanks-error-invalidrevision' ) );
|
|
|
|
break;
|
|
|
|
case 'ratelimited':
|
|
|
|
alert( mw.msg( 'thanks-error-ratelimited', mw.user ) );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
alert( mw.msg( 'thanks-error-undefined' ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.then( function ( recipientGender ) {
|
|
|
|
$thankElement.before( mw.message( 'thanks-thanked', mw.user, recipientGender ).escaped() );
|
2014-08-06 13:46:53 +00:00
|
|
|
$thankElement.remove();
|
2014-02-26 02:12:47 +00:00
|
|
|
mw.thanks.thanked.push( $thankLink );
|
|
|
|
} );
|
2015-05-04 19:13:43 +00:00
|
|
|
}
|
2014-02-26 02:12:47 +00:00
|
|
|
|
|
|
|
if ( $.isReady ) {
|
|
|
|
// This condition is required for soft-reloads
|
|
|
|
// to also trigger the reloadThankedState
|
|
|
|
reloadThankedState();
|
|
|
|
} else {
|
|
|
|
$( document ).ready( reloadThankedState );
|
|
|
|
}
|
|
|
|
|
2015-05-04 19:13:43 +00:00
|
|
|
$( function () {
|
2014-02-26 02:12:47 +00:00
|
|
|
if ( mw.config.get( 'thanks-confirmation-required' ) ) {
|
2014-08-06 13:46:53 +00:00
|
|
|
$( 'a.mw-thanks-thank-link' ).confirmable( {
|
2015-02-18 02:55:36 +00:00
|
|
|
i18n: {
|
|
|
|
confirm: mw.msg( 'thanks-confirmation2', mw.user ),
|
|
|
|
noTitle: mw.msg( 'thanks-thank-tooltip-no', mw.user ),
|
|
|
|
yesTitle: mw.msg( 'thanks-thank-tooltip-yes', mw.user )
|
|
|
|
},
|
2014-08-06 13:46:53 +00:00
|
|
|
handler: function ( e ) {
|
|
|
|
var $thankLink = $( this );
|
|
|
|
e.preventDefault();
|
|
|
|
sendThanks( $thankLink, $thankLink.closest( '.jquery-confirmable-wrapper' ) );
|
|
|
|
}
|
|
|
|
} );
|
2014-02-26 02:12:47 +00:00
|
|
|
} else {
|
2014-08-06 13:46:53 +00:00
|
|
|
$( 'a.mw-thanks-thank-link' ).click( function ( e ) {
|
|
|
|
var $thankLink = $( this );
|
|
|
|
e.preventDefault();
|
|
|
|
sendThanks( $thankLink, $thankLink );
|
|
|
|
} );
|
2014-02-26 02:12:47 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
} )( jQuery, mediaWiki );
|