Jump to content

User:DVRTed/refInfo.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/*
Shows {{Ref info}} of the current page in a dialog box 
when "Show ref info" is clicked in the Tools section.
*/

(async () => {
  await mw.loader.using([
    "oojs-ui-core",
    "oojs-ui-windows",
    "mediawiki.api",
    "jquery.makeCollapsible",
  ]);

  async function show_page_refinfo() {
    const current_page = mw.config.get("wgPageName");

    try {
      const data = await new mw.Api().get({
        action: "parse",
        text: `{{Ref info|${current_page}}}`,
        contentmodel: "wikitext",
        formatversion: 2,
      });

      const $html = $("<div>").html(data.parse.text);
      $html.find(".mw-collapsible").makeCollapsible();

      await OO.ui.alert($html);
    } catch (err) {
      OO.ui.alert("Failed to fetch ref info.");
      console.error(err);
    }
  }

  if (mw.config.get("wgCanonicalNamespace") !== "Special") {
    mw.util.addPortletLink(
      "p-tb",
      "#",
      "Show ref info",
      "pt-refinfo",
      "Shows ref info of a page"
    );

    document
      .getElementById("pt-refinfo")
      .addEventListener("click", function (e) {
        e.preventDefault();
        show_page_refinfo();
      });
  }
})();