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

From The Coppermind
Jump to navigation Jump to search
m (-brak)
m (Fbstj moved page User:Fbstj/common.js to User:Fbstj/gadget/history-test.js without leaving a redirect)
 
(33 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')
// 2019-04-24 remove the prefix from such links
 
  +
const query = {
document.querySelectorAll('[href*="Coppermind:Artists/"]').forEach(function(el){ el.textContent = el.textContent.replace('Coppermind:Artists/', String.fromCodePoint(0x1f150, 0x20) ) })
 
  +
// request the history of this page
 
  +
pageids: [pageid],
// 2019-04-13 thumbs up for thanks
 
  +
prop: 'revisions',
document.querySelectorAll('.mw-thanks-thank-link').forEach(function(el){ el.textContent = String.fromCodePoint(0x1F44D); })
 
  +
// request the oldest edits first
 
  +
rvdir: 'newer',
function add_editsection_link(box) {
 
  +
// request as many as you can at once
if (!box.id) return;
 
  +
rvlimit: 'max',
// FIXME: what does this do?
 
  +
// properties to fetch:
const id = box.id.replace(/\.(\d+)/, '%$1')
 
  +
rvprop: [ 'ids', 'user', 'timestamp', 'size', 'tags', ],
// generate an edit link
 
const el = make_editsection_link('/edit/Template:'+ id)
 
// get the title element
 
const title = box.querySelector('.title')
 
title.appendChild(el)
 
 
}
 
}
  +
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'
 
}
 
 
});
 
 
$(function () {
 
// 2019-07-22 change useless "diff" links on new articles to link to the imaginary diff
 
for (const row = document.querySelectorAll('.mw-changeslist-src-mw-new')) {
 
const link = document.createElement('a')
 
link.innerText = 'new'
 
link.href = ''
 
row.firstChild.replaceWith('(', link, ' | ')
 
}
 
 
});
 
 
 
// 2019-03-03 autofill artist pages
 
;mw.hook('wikipage.editform').add(function () {
 
 
const page_name = mw.config.get('wgPageName')
 
if (!page_name.startsWith('Coppermind:Artists/')) { return; }
 
 
const edit = document.querySelector('textarea')
 
// show pending progress
 
mw.notify('scanning for new files linking to '+ page_name).then(function(note) {
 
// perform API query
 
;(new mw.Api()).get({
 
action: "query",
 
format: "json",
 
prop: "linkshere",
 
titles: page_name,
 
lhnamespace: "6", // File: namespace only
 
"lhlimit": "max", // don't limit to 10
 
}).then(function(resp) {
 
const pid = Object.keys(resp.query.pages)[0]
 
const new_files = []
 
// hide progress notification
 
note.close()
 
// determine which new files link here
 
if (!resp.query.pages[pid].linkshere) { mw.notify('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.notify('no new files link to '+ page_name); return; }
 
mw.notify(new_files.length +' new files link to '+ page_name);
 
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"
 
// TODO: don't add galleries to article section edits
 
}
 
}) // api.get.then
 
}) // note.close
 
});
 
 
// 2019-04-13 try to make buttons from links
 
; mw.hook('wikipage.diff').add(function(){
 
// load the notify function
 
mw.loader.load('mediawiki.notification');
 
const to_secs = 5
 
// create an api client
 
const api = new mw.Api()
 
// the old "button"
 
const old = document.querySelector('.patrollink')
 
if (!old) { return }
 
// fetch the current RC id for the later request
 
const rcid = mw.util.getParamValue('rcid', old.firstElementChild.href)
 
// setup the new button
 
const btn = document.createElement('button')
 
btn.textContent = 'Patrol'
 
btn.addEventListener('click', function() {
 
// progress spinnner
 
const spin = ($.createSpinner({ size: 'small', display: 'inline', }))[0]
 
btn.replaceWith(spin)
 
api.postWithToken('patrol', {
 
formatversion: 2,
 
action: 'patrol',
 
rcid: rcid,
 
}).done(function (data) {
 
if (data.patrol !== undefined) {
 
const title = new mw.Title(data.patrol.title);
 
mw.notify(mw.msg('markedaspatrollednotify', title.toText()));
 
spin.remove()
 
} else {
 
mw.notify(mw.msg('markedaspatrollederrornotify'), { type: 'error' });
 
spin.replaceWith(btn)
 
}
 
}).fail(function (error) {
 
console.warn('patrol:', error)
 
if (error === 'noautopatrol') {
 
mw.notify(mw.msg('markedaspatrollederror-noautopatrol'), { type: 'warn' });
 
} else {
 
mw.notify(mw.msg('markedaspatrollederrornotify'), { type: 'error' });
 
}
 
spin.replaceWith(btn)
 
})
 
 
})
 
})
// hide old button and show new one
 
old.replaceWith(btn)
 
 
});
 

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)

})

})