Difference between revisions of "MediaWiki:Gadget-tag-complete-button.js"

From The Coppermind
Jump to navigation Jump to search
m (try it now)
m (tweak)
Line 4: Line 4:
 
const notice = document.querySelector('.quality-complete')
 
const notice = document.querySelector('.quality-complete')
 
if (!notice) return;
 
if (!notice) return;
  +
  +
// don't show button on edit
  +
const editor = document.querySelector('.mw-editform')
  +
if (editor) return;
  +
// TODO: instead add a button that saves and marks as complete
   
 
const button = document.createElement('button')
 
const button = document.createElement('button')
Line 49: Line 54:
 
mw.notify('Article marked as complete?')
 
mw.notify('Article marked as complete?')
 
console.warn('gadget:', 'tag-complete-button', 'tagged')
 
console.warn('gadget:', 'tag-complete-button', 'tagged')
  +
// TODO: replace button with signature/reload button section
 
})
 
})
 
})
 
})

Revision as of 06:26, 6 August 2019

mw.hook('wikipage.content').add(function () {

// find the {{complete}} template
const notice = document.querySelector('.quality-complete')
if (!notice) return;

// don't show button on edit
const editor = document.querySelector('.mw-editform')
if (editor) return;
// TODO: instead add a button that saves and marks as complete

const button = document.createElement('button')
button.textContent = 'Mark as Reviewed'
button.onclick = mark_article_as_complete

// find the message to replace with a button
const place_for_button = notice.querySelector('.unsigned')
if (!place_for_button) return

place_for_button.replaceWith(button)

console.warn('gadget:', 'tag-complete-button')

})

function mark_article_as_complete(ev) {

const api = new mw.Api
const page_name = mw.config.get('wgPageName')

console.warn('gadget:', 'tag-complete-button', 'button pressed')

// try to edit the article
return api.edit(page_name, function (revision) {

return {
  // find {{complete}} and replace with {{complete|~x4}}
  text: revision.content.replace( '{{complete}}', '{{complete|~~'+'~~}}' ),
  summary: 'mark as complete',
 }

}).catch(console.warn).then(function (revision) {
  console.debug('gadget:', 'tag-complete-button', 'revision:', revision)
  if (revision.nochange === true) return
  console.warn('gadget:', 'tag-complete-button', 'tagging')
  // tag the revision
  return api.postWithToken('csrf', {
    action: 'tag',
    revid: revision.newrevid,
    add: 'completed',
    reason: 'from tag-complete-button gadget',
  }).catch(console.warn).then(function() {
    // show the user that it worked
    mw.notify('Article marked as complete?')
    console.warn('gadget:', 'tag-complete-button', 'tagged')
    // TODO: replace button with signature/reload button section
  })
})

}