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

From The Coppermind
Jump to navigation Jump to search
m (+thing)
m (try this)
Line 61: Line 61:
 
// 2019-03-03 autofill artist pages
 
// 2019-03-03 autofill artist pages
 
;mw.hook('wikipage.editform').add(function () {
 
;mw.hook('wikipage.editform').add(function () {
  +
  +
const page_name = mw.config.get('wgPageName')
  +
if (!page_name.startsWith('Coppermind:Artist/')) { return; }
  +
const api = new mw.Api()
   
 
console.log('editing', mw.config.get('wgPageName'), document.querySelector('textarea'))
 
console.log('editing', mw.config.get('wgPageName'), document.querySelector('textarea'))
  +
  +
api.get({
  +
action: "query",
  +
format: "json",
  +
prop: "linkshere",
  +
titles: page_name,
  +
lhnamespace: "6", // File: namespace only
  +
}).then(resp => console.log(resp.query))
   
 
});
 
});

Revision as of 20:44, 3 March 2019

/* Add edit link to templates */
$(function () {

function add_editsection_link(box) {
 if (!box.id) return;
 // FIXME: what does this do?
 const id = box.id.replace(/\.(\d+)/, '%$1')
 // generate an edit link
 const el = make_editsection_link('/edit/Template:'+ id)
 // get the title element
 const title = box.querySelector('.title')
 title.appendChild(el)
}

document.querySelectorAll('.infobox,.navbar').forEach(add_editsection_link)

function enable_link(el) { el.style['pointer-events'] = 'auto' }

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 () {

const page_name = mw.config.get('wgPageName')
if (!page_name.startsWith('Coppermind:Artist/')) { return; }
const api = new mw.Api()

console.log('editing', mw.config.get('wgPageName'), document.querySelector('textarea'))

api.get({
  action: "query",
  format: "json",
  prop: "linkshere",
  titles: page_name,  
  lhnamespace: "6", // File: namespace only
}).then(resp => console.log(resp.query))

});