5afabaf08331ccb5046094d04aa3ec2f5db52aa4
[sheet.git] / browser.plp
1 <(common.inc.plp)><:
2 use 5.010;
3 use List::Util qw(sum max);
4
5 Html({
6         title => 'browser compatibility cheat sheet',
7         version => 'v1.0',
8         description =>
9                 "caniuse.",
10         keywords => [qw'html css browser feature'],
11         stylesheet => [qw'light dark circus mono red'],
12         data => ['caniuse.js'],
13 });
14
15 :>
16 <h1>Browser compatibility</h1>
17
18 <p>Alternate view of Fyrd's <a href="http://caniuse.com/">when can I use...</a> page
19 with <a href="http://stats.wikimedia.org/archive/squid_reports/">Wikimedia</a>
20 browser usage statistics.</p>
21
22 <:
23 use JSON;
24 use File::Slurp 'read_file';
25 my $source = read_file('caniuse.js');
26 for ($source) { # cleanup
27         # convert seperate variables to hash keys
28         s/\A/{/;
29         s/^caniuse\.(\w+) = /"$1":/gm;
30         s/;$/,/gm;
31         s/,\s*\Z/\n}/;
32         # fractions not supported by barekey
33         s/(?<=[,{]) (\d*\.\d) (?=:')/"$1"/gx;
34         # escapes not supported in singlequote
35         s{'((?:[^\\']+|\\.)*)'}{
36                 my $_ = $1;
37                 s/"/\\"/g;
38                 s/\\'/'/g;
39                 qq("$_");
40         }ge;
41 }
42 my $caniuse = from_json($source, {
43 #       allow_singlequote => 1,
44         allow_barekey => 1,
45 });
46
47 my %CSTATS = (
48         n => 'di-b',
49         y => 'di-aa',
50         a     => 'di-d',
51         'a x' => 'di-d',
52         j     => 'di-prop',
53         p     => 'di-prop',
54         'p j' => 'di-prop',
55         'y x' => 'di-a',
56 );
57 my %CSTATUS = (
58         unoff => 'di-rare', # unofficial
59         wd    => 'di-b', # draft
60         pr    => 'di-prop', # proposed
61         cr    => 'di-d', # candidate
62         rec   => 'di-a', # recommendation
63         ietf  => 'di-aa', # standard
64 );
65 my @browsers = qw(trident gecko webkit_saf webkit_chr presto);
66 my %versions;
67 if (my ($somerow) = values %{ $caniuse->{data} }) {
68         while (my ($browser, $row) = each %{ $somerow->{stats} }) {
69                 $versions{$browser} = [ sort { paddedver($a) cmp paddedver($b) } keys %$row ];
70         }
71 }
72
73 my $canihas = do 'browser-usage.inc.pl' or do {
74         printf "<p>Browser usage data not found: <em>%s</em>.</p>\n", $_
75                 for $! || $@;
76 };
77 my $scorediv = (max(map { sum(values %$_) } values %$canihas) // 1) / 100;
78
79 print '<table class="mapped">';
80 print '<col>' x 3;
81 printf '<colgroup span="%d">', scalar @{ $versions{$_} } for @browsers;
82 print "\n";
83
84 print '<thead><tr>';
85 print '<th colspan="3">feature';
86 printf '<th colspan="%d">%s',
87         scalar @{ $versions{$_} }, $caniuse->{agents}->{$_}->{browser}
88                 for @browsers;
89 print '<th>%';
90 # preceding row without any colspan to work around gecko bug
91 print '<tr>';
92 print '<td>' x $_ for 3, (map { scalar @{ $versions{$_} } } @browsers), 1;
93 print "</thead>\n";
94
95 sub featurescore {
96         # relative amount of support for given feature
97         state $statspts = { y=>10, 'y x'=>9, a=>5, 'a x'=>5, j=>2, 'p j'=>2, p=>1 };
98         my $rank = 0;
99         if (my $row = shift) {
100                 if ($canihas) {
101                         while (my ($browser, $versions) = each %$row) {
102                                 while (my ($version, $_) = each %$versions) {
103                                         $rank += $canihas->{$browser}->{$version} * $statspts->{$_};
104                                 }
105                         }
106                         return $rank;
107                 }
108
109                 while (my ($browser, $vercols) = each %versions) {
110                         my $div = 0;  # multiplier exponent (decreased to lower value)
111                         my @vers = map { $row->{$browser}->{$_} } @$vercols;
112                         if (my $current = $caniuse->{agents}->{$browser}->{versions}->[-3]) {
113                                 my @future;  # find upcoming releases (after current)
114                                 for (reverse @$vercols) {
115                                         last if $_ eq $current;
116                                         push @future, pop @vers;
117                                         $_ eq 'u' and $_ = $vers[-1] for $future[-1];  # inherit latest value if unknown
118                                 }
119                                 splice @vers, -1, 0, @future;  # move ahead to decrease precedence
120                         }
121                         $rank += $statspts->{$_} * 2**($div--) for reverse @vers;
122                 }
123         }
124         return $rank;
125 }
126
127 for my $id (sort {
128             featurescore($caniuse->{data}->{$b}->{stats})
129         <=> featurescore($caniuse->{data}->{$a}->{stats})
130 } keys %{ $caniuse->{data} }) {
131         my $row = $caniuse->{data}->{$id};
132         my $data = $row->{stats} or next;  # skip metadata [summary]
133         printf '<tr id="%s">', $id;
134         for ($row->{categories}) {
135                 my $cell = $_ ? lc $_->[0] : '-';
136                 print '<th>', $cell;
137         }
138         printf '<td title="%s">%s', $row->{description}, $row->{title};
139         for ($row->{status}) {
140                 my $cell = $_ // '-';
141                 $cell = sprintf '<a href="%s">%s</a>', $_, $cell for $row->{spec} // ();
142                 printf '<td title="%s" class="%s">%s',
143                         $caniuse->{statuses}->{$_}, $CSTATUS{$_} // '', $cell;
144         }
145         for my $browser (@browsers) {
146                 my ($prev, @span);
147                 for my $ver (@{ $versions{$browser} }, undef) {
148                         unless (!defined $prev
149                         or $data->{$browser}->{$prev} ~~ $data->{$browser}->{$ver}) {
150                                 my $usage = sum(map { $canihas->{$browser}->{$_} } @span);
151                                 printf '<td class="%s" colspan="%d" title="%.1f%%">%s',
152                                         join(' ',
153                                                 $CSTATS{ $data->{$browser}->{$prev} },
154                                                 sprintf('opacity%.0f', $usage / $scorediv),
155                                         ),
156                                         scalar @span,
157                                         $usage,
158                                         showversions(\@span),
159                                 undef $prev;
160                                 @span = ();
161                         }
162                         push @span, $ver;
163                         $prev = $ver;
164                 }
165         }
166         state $maxscore = featurescore({  # yes for every possible version
167                 map { $_ => { map {$_ => 'y'} @{$versions{$_}} } } keys %versions
168         });
169         print '<td>', int featurescore($caniuse->{data}->{$id}->{stats}) / $maxscore * 100;
170 }
171 print '</table>';
172
173 sub paddedver {
174         # normalised version number comparable as string (cmp)
175         shift =~ /^(\d*)(.*)/;
176         return sprintf('%02d', $1) . $2;
177 }
178
179 sub showversions {
180         my ($span) = @_;
181         splice @$span, 1, -1;
182         for (@$span) {
183                 s/^\./0./;
184                 s/x$/.*/;
185         }
186         return join('‒', @$span);
187 }
188
189 :>
190 <hr>
191
192 <div class="legend">
193         <table class="glyphs"><tr>
194         <td class="X di-aa">supported
195         <td class="X di-a">prefixed
196         <td class="X di-d">partial
197         <td class="X di-prop">external (js/plugin)
198         <td class="X di-b">missing
199         </table>
200
201         <div class="right">
202                 <ul class="legend legend-set">
203                 <li>default <strong>style</strong> is
204                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
205                 </ul>
206         </div>
207 </div>
208