User:SD0001/text-reactions.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | Documentation for this user script can be added at User:SD0001/text-reactions. |
(function() {
console.log('Running text-reactions.');
var $textarea, api;
/**
* List of reactions. Each reaction object contains:
* - name
* - trigger
* 'keypress' (triggered by keyup in the textarea)
* 'word' (triggered by entry of a word)
* 'interval' (triggered at regular interval)
* - key: (for keypress trigger) key that was pressed
* - word: (for word trigger) word that was written
* - interval: (for interval trigger) in milliseconds
* - react: function that shows the notice/warning if needed.
*
* TODO:
* - a way to "listen" to new refs added.
*
*/
var textReactions = [
{
name: 'keypress-test',
trigger: 'keypress',
key: 'e',
react: function (text, caretPosition) {
console.log('Hit key "e"');
}
},
{
name: 'word-test',
trigger: 'word',
word: 'test',
react: function (text, caretPosition) {
console.log('Hit word "test"');
}
},
{
test: 'dabNotification',
trigger: 'keypress',
key: ']',
react: function (wikitext, cursorPosition) {
// Adapted from https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Disambiguator/+/716439
var matches = /.*(\[\[([^[\]|]+)(?:\|.*]]|]]))$/.exec(wikitext.slice(0, cursorPosition));
if (matches) {
var pageTitle = matches[matches.length - 1].trim();
var linkWikitext = matches[matches.length - 2];
return api.get({
action: 'query',
titles: pageTitle,
prop: 'pageprops',
ppprop: 'disambiguation',
}).then(function (json) {
if (json.query.pages && json.query.pages[0].pageprops &&
Object.prototype.hasOwnProperty.call(json.query.pages[0].pageprops, 'disambiguation')
) {
console.log('You linked the disambiguation page ' + pageTitle);
}
});
}
},
},
{
name: 'unreliableSourceWarning',
trigger: 'interval',
interval: 5000,
react: function (wikitext) {
}
}
];
$.when(
$.ready,
mw.loader.using([ 'mediawiki.util', 'mediawiki.api', 'mediawiki.user', 'jquery.textSelection', 'es6-polyfills' ])
).then(function () {
if (!['edit', 'submit'].includes(mw.util.getParamValue('action'))) return;
$textarea = $('#wpTextbox1');
if (!$textarea.length) return; // probably VE
api = new mw.Api({
parameters: {
formatversion: 2
}
});
var wordReactionsMap = {};
var keyReactionsMap = {};
textReactions.forEach(function (tr) {
if (tr.trigger === 'keypress') {
keyReactionsMap[tr.key] = (keyReactionsMap[tr.key] || []).concat(tr);
} else if (tr.trigger === 'word') {
wordReactionsMap[tr.word] = (wordReactionsMap[tr.word] || []).concat(tr);
}
});
var WORD_DELIMITERS = [' ', '.', ',', ';'];
var WORD_MATCH_REGEX = /\s(\S+)[ .,;]$/;
var keyupHandler = function (e) {
(keyReactionsMap[e.key] || []).forEach(function (tr) {
tr.react($textarea.textSelection('getContents'), $textarea.textSelection('getCaretPosition'));
});
if (WORD_DELIMITERS.includes(e.key)) {
var content = $textarea.textSelection('getContents');
var caretPosition = $textarea.textSelection('getCaretPosition');
var word = WORD_MATCH_REGEX.exec(content.slice(0, caretPosition))[1];
if (word) {
(wordReactionsMap[word] || []).forEach(function (tr) {
tr.react(content, caretPosition);
});
}
}
};
// Bind keyup handler, with CodeMirror integration
$textarea.on('keyup', keyupHandler);
mw.hook('ext.CodeMirror.switch').add(function (_enabled, $editor) {
$textarea = $editor;
$textarea.off('keyup', keyupHandler).on('keyup', keyupHandler);
});
var intervalReactions = textReactions.filter(function (tr) {
return tr.trigger === 'interval';
});
intervalReactions.forEach(function (tr) {
setInterval(function () {
tr.react($textarea.textSelection('getContents'));
}, tr.interval);
});
});
})();