Difference between revisions of "User:Fbstj/gadget/history-test.js"

m
Fbstj moved page User:Fbstj/common.js to User:Fbstj/gadget/history-test.js without leaving a redirect
m (oops)
m (Fbstj moved page User:Fbstj/common.js to User:Fbstj/gadget/history-test.js without leaving a redirect)
 
(121 intermediate revisions by the same user not shown)
mw.hook('wikipage.content').add(function revs_gadget() {
/* Add edit link to templates */
$(function () {
 
const pageid = mw.config.get('wgArticleId')
function add_editsection_link(box) {
const query = {
if (!box.id) return;
// FIXME:request the whathistory doesof this do?page
pageids: [pageid],
const id = box.id.replace(/\.(\d+)/, '%$1')
prop: 'revisions',
// generate an edit link
// request the oldest edits first
const el = make_editsection_link('/edit/Template:'+ id)
rvdir: 'newer',
// get the title element
// request as many as you can at once
const title = box.querySelector('.title')
rvlimit: 'max',
title.appendChild(el)
// properties to fetch:
rvprop: [ 'ids', 'user', 'timestamp', 'size', 'tags', ],
}
const api = new mw.Api({ parameters: query, })
 
api.get().then(function old_hist(resp) {
document.querySelectorAll('.infobox,.navbar').forEach(add_editsection_link)
 
const page = resp.query.pages[pageid]
document.querySelectorAll('.patrollink').style['pointer-events'] = 'auto'
page.revisions.forEach(console.log)
 
})
 
})