Difference between revisions of "Modding:Mod compatibility/barchart"

From Stardew Valley Wiki
Jump to navigation Jump to search
(update script)
(tweak footnote)
Line 10: Line 10:
 
| {{#expr:({{{broken|0}}} / {{{total|<noinclude>1</noinclude>0}}}) * 100 round 0}}% are broken and not open-source.¹
 
| {{#expr:({{{broken|0}}} / {{{total|<noinclude>1</noinclude>0}}}) * 100 round 0}}% are broken and not open-source.¹
 
|}
 
|}
<small>¹ Many of these broke in Stardew Valley 1.1 or 1.2. Some may be updated by their authors.</small><noinclude>
+
<small>¹ Many of these broke due to a Stardew Valley update. Some may be updated by their authors later.</small><noinclude>
  
 
==Usage==
 
==Usage==

Revision as of 21:41, 11 June 2018

 
0% are compatible or have a working alternative.
 
0% have an update coming soon.
 
0% are broken and not open-source.¹

¹ Many of these broke due to a Stardew Valley update. Some may be updated by their authors later.

Usage

List the counts for each group:

{{/barchart
  |ok         = 135
  |workaround = 33
  |soon       = 56
  |broken     = 33
  |total      = 257
}}

Script

This tiny script generates the template call when run from the parent page.

var entries = $("#mod-list .mod:not([data-status='abandoned'], [data-status='obsolete'])");
var ok = entries.filter("[data-status='ok'], [data-status='optional']").length;
var workaround = entries.filter("[data-status='workaround'], [data-status='unofficial']").length;
var soon = entries.filter("[data-status='broken'][data-github], [data-status='broken'][data-custom-source]").length;
var broken = entries.filter("[data-status='broken']:not([data-github], [data-custom-source])").length;
var total = ok + workaround + soon + broken;

if (total != entries.length) {
  var unknown = entries.filter(":not([data-status='ok'], [data-status='optional'], [data-status='workaround'], [data-status='obsolete'], [data-status='broken'], [data-status='abandoned'])");
  console.log("found entries with unknown status:", unknown);
  throw 'script failed';
}

`
{{/barchart
  |ok         = ${ok}
  |workaround = ${workaround}
  |soon       = ${soon}
  |broken     = ${broken}
  |total      = ${total}
}}
`