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)
 
(145 intermediate revisions by the same user not shown)
mw.hook('wikipage.content').add(function revs_gadget() {
function A(url, text) {
const el = document.createElement('a')
el.setAttribute('href', url)
el.innerText = text
return el
 
const pagenamepageid = mw.config.get('wgPageNamewgArticleId')
/* add links to edit box */
const query = {
$(function () {
// request the history of this page
 
pageids: [pageid],
 
prop: 'revisions',
function link(url, text) {
// request the oldest edits first
const el = document.createElement('span')
rvdir: 'newer',
const ln = A(url, text)
// request as many as you can at once
ln.className = "oo-ui-inputWidget-input oo-ui-buttonElement-button"
rvlimit: 'max',
el.className = "oo-ui-widget oo-ui-widget-enabled oo-ui-inputWidget oo-ui-buttonElement oo-ui-buttonElement-framed oo-ui-labelElement oo-ui-buttonInputWidget"
// properties to fetch:
el.appendChild(ln)
rvprop: [ 'ids', 'user', 'timestamp', 'size', 'tags', ],
return el
}
const api = new mw.Api({ parameters: query, })
 
api.get().then(function old_hist(resp) {
const pagename = mw.config.get('wgPageName')
 
const page = resp.query.pages[pageid]
const edit_box = document.querySelector('.editButtons')
page.revisions.forEach(console.log)
const wob_url = link('https://wob.coppermind.net/basic_search/?query='+ pagename, 'search Arcanum for "'+ pagename +'"')
const book_url = link('http://search.coppermind.net/?search='+ pagename, 'search books for "'+ pagename +'"')
edit_box.appendChild(wob_url)
edit_box.appendChild(book_url)
 
});
 
 
/* Add edit buttons to templates */
$(function () {
 
function edit_button(box) {
if (!box.id) return
// FIXME: what does this do?
const v = box.id.replace(/\.(\d+)/, "%$1")
// get the title element
const title = box.querySelector('.title')
// generate an edit link
const a = A('/edit/Template:'+ v, 'edit')
// wrap the link in an '.editSection' link floated right
const float = document.createElement('span')
float.className = 'mw-editSection'
float.style.float = 'right'
title.appendChild(float)
// push "[]" around the A element into the spantr
float.appendChild(document.createTextNode('['))
float.appendChild(a)
float.appendChild(document.createTextNode(']')
}
 
})
// loop over all .infobox and .navbar elements to
const boxes = [...document.querySelectorAll('.infobox'), ...document.querySelectorAll('.navbar')]
for (const box of boxes)
edit_button(box)
 
});