User:Argent/common.js

From The Coppermind
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
// install [[:Wikipedia:User:Cacycle/wikEd]] in-browser text editor
(function ()
{
	var script = document.createElement('script');
	script.src = '//en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js&action=raw&ctype=text/javascript';
	script.async = true;
	document.getElementsByTagName('head')[0].appendChild(script);
 }
) ();

return;

// Should never run, the logic was moved to a gadget
// 2019-04-04 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 mode=\"packed\" heights=150px>\n"+ new_files.join("\n") +"\n</gallery>\n"
    // TODO: don't add galleries to article section edits
  }
}) // api.get.then
}) // note.close
});