mediawiki-extensions-Thanks/modules/ext.thanks.flowthank.js
James D. Forrester e315e954a6 build: Replace jshint and jscs with eslint; drop csslint
Removing csslint rather than replacing it with stylelint as there
are no CSS or LESS files in this repo.

Also bumping banana and jsonlint to latest.

Change-Id: I9ffce273f63b061e07c3fa90ab4e82b5e551aa92
2017-08-03 17:24:34 -07:00

86 lines
2.5 KiB
JavaScript

( function ( $, mw, OO ) {
'use strict';
var $thankedLabel = $( '<span></span>' )
.addClass( 'mw-thanks-flow-thanked mw-ui-quiet' );
mw.thanks.thanked.cookieName = 'flow-thanked';
mw.thanks.thanked.attrName = 'data-flow-id';
function findPostAuthorFromThankLink( $thankLink ) {
// We can't use 'closest' directly because .flow-author is a cousin
// of $thankLink rather than its ancestor
return $( $thankLink.findWithParent( '< .flow-post .flow-author a.mw-userlink' )[ 0 ] ).text().trim();
}
function reloadThankedState() {
$( 'a.mw-thanks-flow-thank-link' ).each( function ( idx, el ) {
var $thankLink = $( el ),
author = findPostAuthorFromThankLink( $thankLink );
if ( mw.thanks.thanked.contains( $thankLink.closest( '.flow-post' ) ) ) {
mw.thanks.getUserGender( author )
.done( function ( recipientGender ) {
$thankLink.before(
$thankedLabel
.clone()
.append(
mw.msg( 'thanks-button-thanked', mw.user, recipientGender )
)
);
$thankLink.remove();
} );
}
} );
}
function sendFlowThanks( $thankLink ) {
( new mw.Api() ).postWithToken( 'csrf', {
action: 'flowthank',
postid: $thankLink.closest( '.flow-post' ).attr( mw.thanks.thanked.attrName )
} )
.then(
// Success
function () {
var author = findPostAuthorFromThankLink( $thankLink );
// Get the user who was thanked (for gender purposes)
return mw.thanks.getUserGender( author );
},
// Failure
function ( errorCode ) {
switch ( errorCode ) {
case 'ratelimited':
OO.ui.alert( mw.msg( 'thanks-error-ratelimited', mw.user ) );
break;
default:
OO.ui.alert( mw.msg( 'thanks-error-undefined', errorCode ) );
}
}
)
.then( function ( recipientGender ) {
var $thankUserLabel = $thankedLabel.clone();
$thankUserLabel.append(
mw.msg( 'thanks-button-thanked', mw.user, recipientGender )
);
mw.thanks.thanked.push( $thankLink.closest( '.flow-post' ) );
$thankLink.before( $thankUserLabel );
$thankLink.remove();
} );
}
if ( $.isReady ) {
// This condition is required for soft-reloads
// to also trigger the reloadThankedState
reloadThankedState();
} else {
$( 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, OO ) );