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)
m (Fbstj moved page User:Fbstj/common.js to User:Fbstj/gadget/history-test.js without leaving a redirect)
 
(63 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]
function enable_link(el) { el.style['pointer-events'] = 'auto' }
page.revisions.forEach(console.log)
 
document.querySelectorAll('.patrollink').forEach(enable_link)
 
// move notices above infobox
while (true) {
// don't do things on edit page
const edit_box = document.querySelector('.editButtons')
if (!!edit_box) break
if (location.search != '') break
// find {{notice}} after {{infobox}}
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 infobox = document.querySelector('.infobox.side')
if (!infobox) {
// move above the title on non-infobox pages
const ind = document.querySelector('.mw-indicators')
ind.parentElement.insertBefore(el, ind)
} else {
const row = infobox.insertRow(0)
const cell = row.insertCell()
cell.setAttribute('colspan','2')
cell.appendChild(el)
}
}
 
})
 
$(function () {
// 2018-11-05 move the bottom patrol link to the top
const patrols = document.querySelectorAll('.patrollink')
if (patrols.length == 1) {
const first_edit_link = document.querySelector('.mw-editsection')
first_edit_link.appendChild(patrols[0])
patrols[0].style['font-size'] = 'inherit'
}
 
})
 
// 2019-03-03 autofill artist pages
;mw.hook('wikipage.editform').add(function () { mw.loader.using(['mw.notification']).then(function() {
const page_name = mw.config.get('wgPageName')
if (!page_name.startsWith('Coppermind:Artists/')) { return; }
const api = new mw.Api()
const edit = document.querySelector('textarea')
console.log('scanning for new files linking to '+ page_name)
const note = mw.notification.notify('scanning for new files linking to '+ page_name)
 
api.get({
action: "query",
format: "json",
prop: "linkshere",
titles: page_name,
lhnamespace: "6", // File: namespace only
}).then(function(resp) {
const pid = Object.keys(resp.query.pages)[0]
const new_files = []
note.close()
if (!resp.query.pages[pid].linkshere) { mw.notification.notify('no files link to '+ page_name); console.warn('no files link to '+ page_name); return; }
const pages = resp.query.pages[pid].linkshere.map(function(page) { return page.title.split(':')[1] })
for (var i in pages) {
const page = pages[i]
if (edit.value.includes(page)) { continue; }
new_files.push(pages[i] + ' | ')
}
// don't change the page if there's nothing to change
if (new_files.length == 0) { mw.notification.notify('no new files link to '+ page_name); console.warn('no files link to '+ page_name); return; }
mw.notification.notify('these files link to', page_name, new_files);
// TODO: make into a dropdown notice thing?
if (edit.value.includes('</gallery>')) {
// add the lines to the end of the current gallery
edit.value = edit.value.replace('</gallery>', new_files.join("\n") +"\n</gallery>")
} else {
// create a gallery at the bottom of the page
edit.value += "\n\n<gallery>\n"+ new_files.join("\n") +"\n</gallery>\n"
}
})
 
})});