User:Opencooper/streakCalendar.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:Opencooper/streakCalendar. |
// IDEA: On user pages, show the user's activity over the past 30 days
// Helps you quickly see how active they are at a glance because you otherwise have to look through their contribs.
// Purpose is not to encourage editcount-itis, wikiholism, or general dick-measuring
// 500 limit helps hedge against power users, but could also artificially limit it
// or make it not 30 days
// Inspiration: GitHub's streak
// https://github.com/isaacs/github/issues/627
// Limitation: Max 500 revs from API
// Docs: https://www.mediawiki.org/w/api.php?action=help&modules=query%2Busercontribs
// https://en.wikipedia.org/w/api.php?action=query&format=json&list=usercontribs&ucuser=Opencooper&ucprop=timestamp&uclimit=max&ucend=2019-11-11T00:00:00Z
var currentDate = new Date();
var pastDate = new Date();
var dateOffset = currentDate.getUTCDate - 30;
monthAgo.setUTCDate(dateOffset);
// .toISOString()