mediawiki-extensions-Thanks/modules/ext.thanks.flowthank.js
Matthias Mullie 8618a95f79 Use postWithToken
Change-Id: I8d8949b66782af2956726b55db64b2dce97d5e4a
2014-09-01 14:27:10 +02:00

59 lines
1.7 KiB
JavaScript

( function ( $, mw ) {
'use strict';
mw.thanks.thanked.cookieName = 'flow-thanked';
mw.thanks.thanked.attrName = 'data-flow-id';
var $thankedLabel = $( '<span></span>' )
.append( mw.msg( 'thanks-button-thanked', mw.user ) )
.addClass( 'mw-thanks-flow-thanked mw-ui-quiet' );
var reloadThankedState = function() {
$( 'a.mw-thanks-flow-thank-link' ).each( function( idx, el ) {
var $thankLink = $( el );
if ( mw.thanks.thanked.contains( $thankLink.closest( '.flow-post' ) ) ) {
$thankLink.before( $thankedLabel.clone() );
$thankLink.remove();
}
} );
};
var sendFlowThanks = function( $thankLink ) {
( new mw.Api ).postWithToken( 'edit', {
'action' : 'flowthank',
'postid' : $thankLink.closest( '.flow-post' ).attr( mw.thanks.thanked.attrName )
} )
.done( function( data ) {
mw.thanks.thanked.push( $thankLink.closest( '.flow-post' ) );
$thankLink.before( $thankedLabel.clone() );
$thankLink.remove();
} )
.fail( function( errorCode, details ) {
// TODO: use something besides alert for the error messages
switch( errorCode ) {
case 'ratelimited':
alert( mw.msg( 'thanks-error-ratelimited', mw.user ) );
break;
default:
alert( mw.msg( 'thanks-error-undefined' ) );
}
} );
};
if ( $.isReady ) {
// This condition is required for soft-reloads
// to also trigger the reloadThankedState
reloadThankedState();
} else {
$( document ).ready( reloadThankedState );
}
// .on() is needed to make the button work for dynamically loaded posts
$( '.flow-board' ).on( 'click', 'a.mw-thanks-flow-thank-link', function( e ) {
var $thankLink = $( this );
e.preventDefault();
sendFlowThanks( $thankLink );
} );
} )( jQuery, mediaWiki );