Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2750358
ext.thanks.corethank.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
ext.thanks.corethank.js
View Options
(
function
()
{
'use strict'
;
const
attrName
=
'data-revision-id'
;
function
reloadThankedState
()
{
$
(
'a.mw-thanks-thank-link'
).
each
(
(
idx
,
el
)
=>
{
const
$thankLink
=
$
(
el
);
if
(
mw
.
thanks
.
thanked
.
contains
(
$thankLink
.
attr
(
attrName
)
)
)
{
$thankLink
.
before
(
$
(
'<span>'
).
addClass
(
'mw-thanks-thank-confirmation'
).
text
(
mw
.
msg
(
'thanks-thanked'
,
mw
.
user
,
$thankLink
.
data
(
'recipient-gender'
)
)
)
);
$thankLink
.
remove
();
}
}
);
}
/**
* Send thanks
*
* @param {jQuery} $thankLink The element with the data-revision-id attribute
* @param {jQuery} $thankElement The element to be removed on success
*/
function
sendThanks
(
$thankLink
,
$thankElement
)
{
if
(
$thankLink
.
data
(
'clickDisabled'
)
)
{
// Prevent double clicks while we haven't received a response from API request
return
;
}
$thankLink
.
data
(
'clickDisabled'
,
true
);
let
source
;
// Determine the thank source (history, diff, or log).
if
(
mw
.
config
.
get
(
'wgAction'
)
===
'history'
)
{
source
=
'history'
;
}
else
if
(
mw
.
config
.
get
(
'wgCanonicalSpecialPageName'
)
===
'Log'
)
{
source
=
'log'
;
}
else
{
source
=
'diff'
;
}
// Construct the API parameters.
const
apiParams
=
{
action
:
'thank'
,
source
:
source
};
if
(
$thankLink
.
data
(
'log-id'
)
)
{
apiParams
.
log
=
$thankLink
.
data
(
'log-id'
);
}
else
{
apiParams
.
rev
=
$thankLink
.
data
(
'revision-id'
);
}
// Send the API request.
(
new
mw
.
Api
()
).
postWithToken
(
'csrf'
,
apiParams
)
.
then
(
// Success
()
=>
{
$thankElement
.
before
(
mw
.
message
(
'thanks-thanked'
,
mw
.
user
,
$thankLink
.
data
(
'recipient-gender'
)
).
escaped
()
);
$thankElement
.
remove
();
mw
.
thanks
.
thanked
.
push
(
$thankLink
.
attr
(
attrName
)
);
},
// Fail
(
errorCode
)
=>
{
// If error occurred, enable attempting to thank again
$thankLink
.
data
(
'clickDisabled'
,
false
);
let
msg
;
switch
(
errorCode
)
{
case
'invalidrevision'
:
msg
=
mw
.
msg
(
'thanks-error-invalidrevision'
);
break
;
case
'ratelimited'
:
msg
=
mw
.
msg
(
'thanks-error-ratelimited'
,
mw
.
user
);
break
;
case
'revdeleted'
:
msg
=
mw
.
msg
(
'thanks-error-revdeleted'
);
break
;
default
:
msg
=
mw
.
msg
(
'thanks-error-undefined'
,
errorCode
);
}
OO
.
ui
.
alert
(
msg
);
}
);
}
/**
* Add interactive handlers to all 'thank' links in $content
*
* @param {jQuery} $content
*/
function
addActionToLinks
(
$content
)
{
const
$thankLinks
=
$content
.
find
(
'a.mw-thanks-thank-link'
);
if
(
mw
.
config
.
get
(
'thanks-confirmation-required'
)
)
{
$thankLinks
.
each
(
function
()
{
const
$thankLink
=
$
(
this
);
$thankLink
.
confirmable
(
{
i18n
:
{
confirm
:
mw
.
msg
(
'thanks-confirmation2'
,
mw
.
user
),
no
:
mw
.
msg
(
'cancel'
),
noTitle
:
mw
.
msg
(
'thanks-thank-tooltip-no'
,
mw
.
user
),
yes
:
mw
.
msg
(
'thanks-button-thank'
,
mw
.
user
,
$thankLink
.
data
(
'recipient-gender'
)
),
yesTitle
:
mw
.
msg
(
'thanks-thank-tooltip-yes'
,
mw
.
user
)
},
handler
:
function
(
e
)
{
e
.
preventDefault
();
sendThanks
(
$thankLink
,
$thankLink
.
closest
(
'.jquery-confirmable-wrapper'
)
);
}
}
);
}
);
}
else
{
$thankLinks
.
on
(
'click'
,
function
(
e
)
{
const
$thankLink
=
$
(
this
);
e
.
preventDefault
();
sendThanks
(
$thankLink
,
$thankLink
);
}
);
}
}
if
(
$
.
isReady
)
{
// This condition is required for soft-reloads
// to also trigger the reloadThankedState
reloadThankedState
();
}
else
{
$
(
reloadThankedState
);
}
$
(
()
=>
{
addActionToLinks
(
$
(
'body'
)
);
}
);
mw
.
hook
(
'wikipage.diff'
).
add
(
(
$content
)
=>
{
addActionToLinks
(
$content
);
}
);
mw
.
hook
(
'wikipage.content'
).
add
(
(
$content
)
=>
{
addActionToLinks
(
$content
);
}
);
}()
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jul 3, 16:22 (5 h, 18 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ff/c5/5da827f2884df440de588c5f0b16
Default Alt Text
ext.thanks.corethank.js (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment