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 (try this)
m (Fbstj moved page User:Fbstj/common.js to User:Fbstj/gadget/history-test.js without leaving a redirect)
 
(104 intermediate revisions by the same user not shown)
mw.hook('wikipage.content').add(function revs_gadget() {
/* Add edit link to templates */
$(function () {
 
const page_namepageid = mw.config.get('wgPageNamewgArticleId');
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(jsonresp) {
document.querySelectorAll('.infobox,.navbar').forEach(add_editsection_link)
 
const page = resp.query.pages[pageid]
function enable_link(el) { el.style['pointer-events'] = 'auto' }
page.revisions.forEach(console.log)
 
});
document.querySelectorAll('.patrollink').forEach(enable_link)
 
// move notices above indicators
while (true) {
const edit_box = document.querySelector('.editButtons')
if (!!edit_box) break
if (location.search != '') break
var el = document.querySelector('.infobox+.notice')
if (!el) { // check first child of #mw-content-text is a notice
const txt = document.querySelector('#mw-content-text')
if (txt.firstElementChild.classList.contains('notice'))
el = txt.firstElementChild
}
if (!el) break
const ind = document.querySelector('.mw-indicators')
ind.parentElement.insertBefore(el, ind)
}
 
})
 
/* 2018-09-16 display Arcanum entry on Cite:Arcanum-X page */
$(function () {
// check that it's an Arcanum page
const page_name = mw.config.get('wgPageName');
if (!page_name.startsWith('Cite:Arcanum-')) return;
// work out the api url
const entry = page_name.split('-')[1];
const url = 'https://wob.coppermind.net/api/entry/'+ entry +'/';
// start fetching from Arcanum
console.log('fetching '+ url);
fetch(url)
.then(function(resp) { return resp.json() })
.then(function(json) {
// debugging:
console.log('Entry '+ entry, json);
// create containing element
const entry_el = document.createElement('article');
entry_el.classList.add('arcanum-entry');
// add lines
json.lines.forEach(function(line) {
// create speaker element
const speaker = document.createElement('h4');
speaker.innerText = line.speaker;
// append the speaker and html from the line
entry_el.appendChild(speaker);
entry_el.innerText += line.text;
});
// place container on page
console.log(entry_el);
});
});