< User:SD0001
Browse history interactively ← Previous edit Content deleted Content addedInline
Revision as of 09:39, 5 December 2021 view source SD0001 (talk | contribs )Interface administrators , Administrators 16,061 editsm No edit summary← Previous edit
Latest revision as of 19:27, 19 January 2024 view source MusikAnimal (talk | contribs )Edit filter managers , Autopatrolled , Interface administrators , Administrators 120,542 edits es6-polyfills no longer needed, see phab:T75714
Line 95:
Line 95:
mw.loader.using([
mw.loader.using([
'mediawiki.util', 'mediawiki.api', 'mediawiki.user',
'mediawiki.util', 'mediawiki.api', 'mediawiki.user',
'jquery.textSelection', 'es6-polyfills', 'ext.gadget.libExtraUtil'
'jquery.textSelection', 'ext.gadget.libExtraUtil'
])
])
).then(function () {
).then(function () {
Latest revision as of 19:27, 19 January 2024
// <nowiki>
(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)
* 'paste' (triggered by text insertion via copy-paste or drag-drop)
* 'ref' (triggered when reference is inserted via RefToolbar
* - 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.
*
*/
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"');
}
},
{
name: 'paste-test',
trigger: 'paste',
react: function (pasteContent, wikitext) {
console.log('You pasted: ' + pasteContent);
}
},
{
name: 'ref-test',
trigger: 'ref',
react: function (citeTemplate) {
var url = citeTemplate.getParam('url');
// check if url is blacklisted/deprecated/predatory journal, etc
console.log('You inserted ref: ' + citeTemplate.wikitext);
}
},
{
name: 'interval-test',
trigger: 'interval',
interval: 5000,
react: function (wikitext) {
console.log('This is triggered every 5 secs');
}
},
{
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.trim();
var linkWikitext = matches;
return api.get({
action: 'query',
titles: pageTitle,
prop: 'pageprops',
ppprop: 'disambiguation',
}).then(function (json) {
if (json.query.pages && json.query.pages.pageprops &&
Object.prototype.hasOwnProperty.call(json.query.pages.pageprops, 'disambiguation')
) {
console.log('You linked the disambiguation page ' + pageTitle);
}
});
}
},
}
];
$.when(
$.ready,
mw.loader.using([
'mediawiki.util', 'mediawiki.api', 'mediawiki.user',
'jquery.textSelection', 'ext.gadget.libExtraUtil'
])
).then(function () {
if (!.includes(mw.util.getParamValue('action'))) return;
$textarea = $('#wpTextbox1');
if (!$textarea.length) return; // probably VE
api = new mw.Api({
parameters: {
formatversion: 2
}
});
var keyReactionsMap = {};
var wordReactionsMap = {};
var pasteReactions = ;
textReactions.forEach(function (tr) {
if (tr.trigger === 'keypress') {
keyReactionsMap = (keyReactionsMap || ).concat(tr);
} else if (tr.trigger === 'word') {
wordReactionsMap = (wordReactionsMap || ).concat(tr);
} else if (tr.trigger === 'paste') {
pasteReactions.push(tr);
}
});
var WORD_DELIMITERS = ;
var WORD_MATCH_REGEX = /\s(\S+)$/;
var keyupHandler = function (e) {
(keyReactionsMap || ).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));
if (word) {
(wordReactionsMap || ).forEach(function (tr) {
tr.react(content, caretPosition);
});
}
}
};
var pasteHandler = function (e) {
var wikitext = $textarea.textSelection('getContents');
var pasteData = e.originalEvent.clipboardData || // for paste
e.originalEvent.dataTransfer; // for drag-drop
var pasteContent = pasteData.getData('text');
pasteReactions.forEach(function (tr) {
tr.react(pasteContent, wikitext);
});
};
// HACK: Hijack WikiEditor method used by RefToolbar to insert ref into the textbox
var origFunc = $.wikiEditor.modules.toolbar.fn.doAction;
$.wikiEditor.modules.toolbar.fn.doAction = function() {
// Call the original function
var args = Array.prototype.slice.call(arguments);
origFunc.apply($.wikiEditor.modules.toolbar.fn, args);
// Now do our thing
var ref = args && args.options && args.options.post;
var refContent;
try {
refContent = $($.parseXML(ref)).find('ref').text();
} catch (e) {}
if (refContent) {
var citeTemplate = extraJs.parseTemplates(refContent);
textReactions.filter(function (tr) {
return tr.trigger === 'ref';
}).forEach(function (tr) {
tr.react(citeTemplate);
});
}
};
// Bind textarea event handlers, with CodeMirror integration
$textarea.on('keyup', keyupHandler).on('paste drop', pasteHandler);
mw.hook('ext.CodeMirror.switch').add(function (_enabled, $editor) {
$textarea = $editor;
$textarea.off('keyup', keyupHandler).on('keyup', keyupHandler)
.off('paste drop', pasteHandler).on('paste drop', pasteHandler);
});
var intervalReactions = textReactions.filter(function (tr) {
return tr.trigger === 'interval';
});
intervalReactions.forEach(function (tr) {
setInterval(function () {
tr.react($textarea.textSelection('getContents'));
}, tr.interval);
});
});
})();
// </nowiki>
Text is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply.
**DISCLAIMER** We are not affiliated with Wikipedia, and Cloudflare.
The information presented on this site is for general informational purposes only and does not constitute medical advice.
You should always have a personal consultation with a healthcare professional before making changes to your diet, medication, or exercise routine.
AI helps with the correspondence in our chat.
We participate in an affiliate program. If you buy something through a link, we may earn a commission 💕
↑