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

From The Coppermind
Jump to navigation Jump to search
m (move to staff js)
m (try this)
Line 14: Line 14:
   
 
document.querySelectorAll('.infobox,.navbar').forEach(add_editsection_link)
 
document.querySelectorAll('.infobox,.navbar').forEach(add_editsection_link)
  +
  +
})
  +
  +
/* auto-fill [[Cite: Arcanum-@entry]] pages*/
  +
$(function () {
  +
  +
const edit_box = document.querySelector('.editButtons')
  +
// check that there is an edit box
  +
if (!edit_box || mw.config.get('wgCanonicalNamespace') !== '') return
  +
  +
// check that it's a page creation
  +
if (mw.config.get('wgArticleId') !== 0) return
  +
  +
// check that it's an Arcanum page
  +
const page_name = mw.config.get('wgPageName')
  +
if (!page_name.startsWith('Cite:Arcanum-')) return
  +
  +
const entry = page_name.split('-')[1]
  +
const url = 'https://wob.coppermind.net/api/entry/'+ entry +'/'
  +
fetch(url).then(reps => resp.json()).then(function (json) {
  +
// deal with response
  +
console.log('fetched '+url)
  +
console.log(json)
  +
})
   
 
})
 
})

Revision as of 11:30, 22 June 2018

/* 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)

})

/* auto-fill [[Cite: Arcanum-@entry]] pages*/
$(function () {

const edit_box = document.querySelector('.editButtons')
// check that there is an edit box
if (!edit_box || mw.config.get('wgCanonicalNamespace') !== '') return

// check that it's a page creation
if (mw.config.get('wgArticleId') !== 0) return

// check that it's an Arcanum page
const page_name = mw.config.get('wgPageName')
if (!page_name.startsWith('Cite:Arcanum-')) return

const entry = page_name.split('-')[1]
const url = 'https://wob.coppermind.net/api/entry/'+ entry +'/'
fetch(url).then(reps => resp.json()).then(function (json) {
// deal with response
console.log('fetched '+url)
console.log(json)
})

})