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

m (try this)
m (Fbstj moved page User:Fbstj/common.js to User:Fbstj/gadget/history-test.js without leaving a redirect)
 
(127 intermediate revisions by the same user not shown)
Line 1: Line 1:
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: what does this do?
// request the history of this 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]
page.revisions.forEach(console.log)


})
})


// determine if this page is a Cite: Arcanum page
function check_for_arcanum() {

const edit_box = document.querySelector('.editButtons');
// check that there is an edit box
if (!edit_box || mw.config.get('wgCanonicalNamespace') !== 'Cite') return -1;

// check that it's a page creation
if (mw.config.get('wgArticleId') != 0) return -2;

// check that it's an Arcanum page
const page_name = mw.config.get('wgPageName');
if (!page_name.startsWith('Cite:Arcanum-')) return -3;

const entry = page_name.split('-')[1];
return 'https://wob.coppermind.net/api/entry/'+ entry +'/';
}
function build_from_json(json) {
console.log(json)
let tag = '<cite-info date="'+ (json.date || json.event_date) +'" event="'+ json.event +'">'+ json.event_name +'</cite-info>'
let page = tag +"<noinclude>\n\n== Users ==\n{{Special:WhatLinksHere/{{FULLPAGENAME}}|}}\n"
document.queyrSelector('#editform textarea').value = page
}
/* auto-fill [[Cite: Arcanum-@entry]] pages*/
$(function () {
const url = check_for_arcanum()
fetch(url).then(function(resp) { return resp.json() }).then(build_from_json)
})
})

Latest revision as of 19:54, 20 August 2019

mw.hook('wikipage.content').add(function revs_gadget() {

const pageid = mw.config.get('wgArticleId')
const query = {
  // request the history of this page
  pageids: [pageid],
  prop: 'revisions',
   // request the oldest edits first
   rvdir: 'newer',
   // request as many as you can at once
   rvlimit: 'max',
   // properties to fetch:
   rvprop: [ 'ids', 'user', 'timestamp', 'size', 'tags', ],
}
const api = new mw.Api({ parameters: query, })

api.get().then(function old_hist(resp) {

const page = resp.query.pages[pageid]
page.revisions.forEach(console.log)

})

})