2016-07-15 15:16:08 +00:00
|
|
|
( function ( $, mw, OO ) {
|
2014-02-26 02:12:47 +00:00
|
|
|
'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;
|
2016-04-14 04:44:33 +00:00
|
|
|
|
|
|
|
if ( $thankLink.data( 'clickDisabled' ) ) {
|
|
|
|
// Prevent double clicks while we haven't received a response from API request
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$thankLink.data( 'clickDisabled', true );
|
|
|
|
|
2014-02-26 02:12:47 +00:00
|
|
|
if ( mw.config.get( 'wgAction' ) === 'history' ) {
|
|
|
|
source = 'history';
|
|
|
|
} else {
|
|
|
|
source = 'diff';
|
|
|
|
}
|
2015-04-22 23:21:27 +00:00
|
|
|
|
2017-08-03 23:05:54 +00:00
|
|
|
( new mw.Api() ).postWithToken( 'csrf', {
|
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
|
|
|
} )
|
2017-08-03 23:05:54 +00:00
|
|
|
.then(
|
|
|
|
// Success
|
|
|
|
function () {
|
|
|
|
var username = $thankLink.closest(
|
2015-04-22 23:21:27 +00:00
|
|
|
source === 'history' ? 'li' : 'td'
|
|
|
|
).find( 'a.mw-userlink' ).text();
|
2017-08-03 23:05:54 +00:00
|
|
|
// Get the user who was thanked (for gender purposes)
|
|
|
|
return mw.thanks.getUserGender( username );
|
|
|
|
},
|
|
|
|
// Fail
|
|
|
|
function ( errorCode ) {
|
|
|
|
// If error occured, enable attempting to thank again
|
|
|
|
$thankLink.data( 'clickDisabled', false );
|
|
|
|
switch ( errorCode ) {
|
|
|
|
case 'invalidrevision':
|
|
|
|
OO.ui.alert( mw.msg( 'thanks-error-invalidrevision' ) );
|
|
|
|
break;
|
|
|
|
case 'ratelimited':
|
|
|
|
OO.ui.alert( mw.msg( 'thanks-error-ratelimited', mw.user ) );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
OO.ui.alert( mw.msg( 'thanks-error-undefined', errorCode ) );
|
|
|
|
}
|
2015-04-22 23:21:27 +00:00
|
|
|
}
|
2017-08-03 23:05:54 +00:00
|
|
|
)
|
|
|
|
.then( function ( recipientGender ) {
|
|
|
|
$thankElement.before( mw.message( 'thanks-thanked', mw.user, recipientGender ).escaped() );
|
|
|
|
$thankElement.remove();
|
|
|
|
mw.thanks.thanked.push( $thankLink );
|
|
|
|
} );
|
2015-05-04 19:13:43 +00:00
|
|
|
}
|
2014-02-26 02:12:47 +00:00
|
|
|
|
2016-08-25 15:25:40 +00:00
|
|
|
function addActionToLinks( $content ) {
|
2014-02-26 02:12:47 +00:00
|
|
|
if ( mw.config.get( 'thanks-confirmation-required' ) ) {
|
2016-08-25 15:25:40 +00:00
|
|
|
$content.find( '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 {
|
2016-08-25 15:25:40 +00:00
|
|
|
$content.find( 'a.mw-thanks-thank-link' ).click( function ( e ) {
|
2014-08-06 13:46:53 +00:00
|
|
|
var $thankLink = $( this );
|
|
|
|
e.preventDefault();
|
|
|
|
sendThanks( $thankLink, $thankLink );
|
|
|
|
} );
|
2014-02-26 02:12:47 +00:00
|
|
|
}
|
2016-08-25 15:25:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( $.isReady ) {
|
|
|
|
// This condition is required for soft-reloads
|
|
|
|
// to also trigger the reloadThankedState
|
|
|
|
reloadThankedState();
|
|
|
|
} else {
|
2017-01-06 13:13:38 +00:00
|
|
|
$( reloadThankedState );
|
2016-08-25 15:25:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$( function () {
|
|
|
|
addActionToLinks( $( 'body' ) );
|
2014-02-26 02:12:47 +00:00
|
|
|
} );
|
|
|
|
|
2016-09-13 07:51:02 +00:00
|
|
|
mw.hook( 'wikipage.diff' ).add( function ( $content ) {
|
|
|
|
addActionToLinks( $content );
|
|
|
|
} );
|
2017-08-03 23:05:54 +00:00
|
|
|
}( jQuery, mediaWiki, OO ) );
|