9a865d4f0ff8a577b20c191af9604b08030c9fa3
[sheet.git] / browser.plp
1 <(common.inc.plp)><:
2 use 5.010;
3 use utf8;
4 use List::Util qw(sum max);
5
6 Html({
7         title => 'browser compatibility cheat sheet',
8         version => 'v1.0',
9         description =>
10                 "caniuse.",
11         keywords => [qw'html css browser feature'],
12         stylesheet => [qw'circus dark mono red light'],
13         data => ['browser-support.inc.pl'],
14 });
15
16 :>
17 <h1>Browser compatibility</h1>
18
19 <p id="intro">Alternate view of Fyrd's <a href="http://caniuse.com/">when can I use...</a> page<:
20 my ($canihas, $usage);
21 given ($get{usage} // 'wm') {
22         when (!$_) {
23                 # none
24         }
25         when (!/^\w+$/) {
26                 printf "<p>Invalid browser usage data request: <em>%s</em>",
27                         'identifier must be alphanumeric name or <q>0</q>';
28         }
29         $canihas = do "browser-usage-$_.inc.pl" or do {
30                 printf "<p>Browser usage data not found: <em>%s</em>", $! || $@;
31                 break;
32         };
33         $usage = $_;
34         my $ref = $canihas->{-source} || 'unknown';
35         $ref = sprintf '<a href="%s">%s</a>', $_, $ref for $canihas->{-url} || ();
36         $ref .= " $_" for $canihas->{-date} || ();
37         print "\nwith $ref browser usage statistics";
38 }
39 :>.
40 </p>
41
42 <:
43 my $caniuse = do 'browser-support.inc.pl' or die $! || $@;
44 $_->{verrelease} = {
45         # mark last two (future) versions as unreleased, ensure current isn't
46         map { $_->[-1] => 0, $_->[-2] => 0, $_->[-3] => undef } $_->{versions}
47 } for values %{ $caniuse->{agents} };
48
49 my %CSTATS = (
50         'n'   => 'l1',
51         'y'   => 'l5',
52         'y x' => 'l5 ex',
53         'a'   => 'l3',
54         'a x' => 'l3 ex',
55         'p j' => 'l2',
56         'j'   => 'l2',
57         'p'   => 'l2',
58         'p p' => 'l2',
59         'u'   => 'l0',
60 );
61 my %DSTATS = (
62         u => 'unknown',
63         n => 'unsupported',
64         p => 'plugin required',
65         j => 'javascript required',
66         a => 'partial',
67         y => 'supported',
68         x => sub {
69                 join(' ',
70                         'requires prefix',
71                         (map "-$_-", $caniuse->{agents}->{$_[0]}->{prefix} // ()),
72                 );
73         },
74 );
75 my %CSTATUS = (
76         unoff => 'l1', # unofficial
77         wd    => 'l3', # draft
78         cr    => 'l4', # candidate
79         pr    => 'l4', # proposed
80         rec   => 'l5', # recommendation
81         other => 'l2', # non-w3
82         ietf  => 'l5', # standard
83 );
84 my %versions;
85 if (my ($somerow) = values %{ $caniuse->{data} }) {
86         while (my ($browser, $row) = each %{ $somerow->{stats} }) {
87                 $versions{$browser} = [ sort { paddedver($a) cmp paddedver($b) } keys %$row ];
88         }
89 }
90 my @browsers = grep { $versions{$_} }
91         qw(trident gecko webkit_saf ios_saf webkit_chr android presto op_mob op_mini);
92
93 $canihas ||= {
94         map {
95                 $_ => +{
96                         map {
97                                 my $zero = $#$_ - 2;  # baseline index
98                                 ($_->[$zero - 2] =>  .5), # past
99                                 ($_->[$zero - 1] => 10 ), # previous
100                                 ($_->[$zero + 2] =>  0 ), # future
101                                 ($_->[$zero + 1] =>  .5), # next
102                                 ($_->[$zero    ] => 30 ), # current
103                         } $caniuse->{agents}->{$_}->{versions}
104                 }
105         } @browsers
106 }; # fallback hash based on release semantics
107 my $scorediv = (max(map { ref $_ eq 'HASH' && sum(values %$_) } values %$canihas) // 1) / 100;
108
109 print '<table class="mapped">';
110 print '<col>' x 3;
111 printf '<colgroup span="%d">', scalar @{ $versions{$_} } for @browsers;
112 print "\n";
113
114 my $header = join('',
115         '<tr>',
116         '<th colspan="3">feature',
117         (map {
118                 my $name = $caniuse->{agents}->{$_}->{browser};
119                 sprintf('<th colspan="%d" class="%s" title="%s">%s',
120                         scalar @{ $versions{$_} },
121                         join(' ', map {"b-a-$_"} grep {$_}
122                                 $_, $caniuse->{agents}->{$_}->{prefix},
123                         ),
124                         join(' ',
125                                 sprintf('%.1f%%', sum(values %{ $canihas->{$_} })),
126                                 $name,
127                         ),
128                         do {
129                                 length $name < 3 + @{ $versions{$_} }*2 ? $name
130                                         : $caniuse->{agents}->{$_}->{abbr};
131                         },
132                 )
133         } @browsers),
134         '<th>%',
135 );
136 print '<thead>', $header;
137 # preceding row without any colspan to work around gecko bug
138 print "\n<tr>";
139 print '<td>' x 3;
140 for my $browser (@browsers) {
141         printf('<td title="%s"%s>%s',
142                 join(' ',
143                         sprintf('%.1f%%', $canihas->{$browser}->{$_}),
144                         "version $_",
145                 ),
146                 (map {
147                         defined $_ && !$_ && ' class="ex"'
148                 } $caniuse->{agents}->{$browser}->{verrelease}->{$_}),
149                 showversions($_),
150         ) for @{ $versions{$browser} };
151 }
152 print '<td>' x 1;
153 say '</thead>';
154 say '<tfoot>', $header, '</tfoot>';
155
156 sub featurescore {
157         # relative amount of support for given feature
158         state $statspts = { y=>10, 'y x'=>10, a=>5, 'a x'=>5, j=>2, 'p j'=>2, 'p p'=>2, p=>1 };
159         my $rank = 0;
160         if (my $row = shift) {
161                 if ($canihas) {
162                         while (my ($browser, $versions) = each %$row) {
163                                 ref $versions eq 'HASH' or next;
164                                 while (my ($version, $_) = each %$versions) {
165                                         $rank += ($canihas->{$browser}->{$version} || .001) * $statspts->{$_};
166                                 }
167                         }
168                         return $rank;
169                 }
170
171                 while (my ($browser, $vercols) = each %versions) {
172                         my $div = 0;  # multiplier exponent (decreased to lower value)
173                         my @vers = map { $row->{$browser}->{$_} } @$vercols;
174                         if (my $current = $caniuse->{agents}->{$browser}->{versions}->[-3]) {
175                                 my @future;  # find upcoming releases (after current)
176                                 for (reverse @$vercols) {
177                                         last if $_ eq $current;
178                                         push @future, pop @vers;
179                                         $_ eq 'u' and $_ = $vers[-1] for $future[-1];  # inherit latest value if unknown
180                                 }
181                                 splice @vers, -1, 0, @future;  # move ahead to decrease precedence
182                         }
183                         $rank += $statspts->{$_} * 2**($div--) for reverse @vers;
184                 }
185         }
186         return $rank;
187 }
188
189 sub saytitlecol {
190         my ($id) = @_;
191         my $row = $caniuse->{data}->{$id};
192
193         for ($row->{categories}) {
194                 my $cell = $_ ? lc $_->[0] : '-';
195                 printf '<th title="%s">%s', join(' + ', @$_), $cell;
196         }
197
198         print '<td>', map {
199                 sprintf('<a href="%s" onclick="%s">%s</a>',
200                         "#$id",
201                         sprintf("try { %s; return false } catch(err) { return true }",
202                                 "document.getElementById('$id').classList.toggle('target')",
203                         ),
204                         Entity($_),
205                 );
206         } $row->{title};
207         print '<div class=aside>';
208         s/\.?$/./, print "<p>$_</p>" for map { ref $_ ? @$_ : $_ || () }
209                 Entity($row->{description}), formathtml($row->{notes});  # sic
210         printf 'Resources: %s.', join(', ', map {
211                 sprintf '<a href="%s">%s</a>', EscapeHTML($_->{url}), $_->{title}
212         } @$_) for grep { @$_ } $row->{links} // ();
213         print '</div>';
214 }
215
216 sub saystatuscol {
217         my ($id) = @_;
218         my $row = $caniuse->{data}->{$id};
219
220         for ($row->{status}) {
221                 my $cell = $_ // '-';
222                 $cell = sprintf '<a href="%s">%s</a>', $_, $cell for $row->{spec} // ();
223                 printf '<td title="%s" class="l %s">%s',
224                         $caniuse->{statuses}->{$_}, $CSTATUS{$_} // '', $cell;
225         }
226 }
227
228 sub saybrowsercols {
229         my ($id, $browser) = @_;
230         my $data = $caniuse->{data}->{$id}->{stats}->{$browser};
231
232         my ($prev, @span);
233         for my $ver (@{ $versions{$browser} }, undef) {
234                 unless (!defined $prev
235                 or ref $data eq 'HASH' && $data->{$prev} ~~ $data->{$ver}) {
236                         my $usage = sum(map { $canihas->{$browser}->{$_} } @span);
237                         printf '<td class="%s" colspan="%d" title="%s">%s',
238                                 join(' ',
239                                         X => $CSTATS{ ref $data eq 'HASH' && $data->{$prev} || 'u' },
240                                         !$usage ? ('p0') : ('p',
241                                                 sprintf('p%01d', $usage / 10),
242                                                 sprintf('p%02d', $usage),
243                                         ),
244                                         sprintf('pp%02d', $usage / $scorediv),
245                                 ),
246                                 scalar @span,
247                                 sprintf('%.1f%% %s', $usage, join(', ',
248                                         map { ref $_ eq 'CODE' ? $_->($browser) : $_ }
249                                         map { $DSTATS{$_} // () }
250                                         map { split / /, $_ }
251                                         ref $data eq 'HASH' && $data->{$prev} || 'u'
252                                 )),
253                                 showversions(@span),
254                         undef $prev;
255                         @span = ();
256                 }
257                 push @span, $ver;
258                 $prev = $ver;
259         }
260 }
261
262 sub sayusagecol {
263         my ($id) = @_;
264         state $maxscore = featurescore({  # yes for every possible version
265                 map { $_ => { map {$_ => 'y'} @{$versions{$_}} } } keys %versions
266         });
267         print '<td>', int featurescore($caniuse->{data}->{$id}->{stats}) / $maxscore * 100;
268 }
269
270 say '<tbody>';
271 for my $id (sort {
272             featurescore($caniuse->{data}->{$b}->{stats})
273         <=> featurescore($caniuse->{data}->{$a}->{stats})
274 } keys %{ $caniuse->{data} }) {
275         $caniuse->{data}->{$id}->{stats} or next;  # skip metadata [summary]
276         printf '<tr id="%s">', $id;
277         saytitlecol($id);
278         saystatuscol($id);
279         saybrowsercols($id, $_) for @browsers;
280         sayusagecol($id);
281         say '</tr>';
282 }
283 say '</tbody>';
284 say '</table>';
285
286 sub formathtml {
287         my $ref = defined wantarray ? [@_] : \@_;
288         for (@$ref) {
289                 s/& (?!\w)/&amp;/gx;
290                 s/< \s/&lt;/gx;
291                 s/\n\K\n/<br>/g;
292         }
293         return @$ref;
294 }
295
296 sub paddedver {
297         # normalised version number comparable as string (cmp)
298         shift =~ /^(\d*)(.*)/;
299         return sprintf('%02d', $1 || 0) . $2;
300 }
301
302 sub showversions {
303         my @span = ($_[0], @_>1 ? $_[-1] : ());
304         for (@span) {
305                 s/^\./0./;
306                 s/x$/.*/;
307         }
308         return join('‒', @span);
309 }
310
311 :>
312 <hr>
313
314 <div class="legend">
315         <table class="glyphs"><tr>
316         <td class="X l5">supported
317         <td class="X l3">partial
318         <td class="X l2">external (js/plugin)
319         <td class="X l1">missing
320         <td class="X l0">unknown
321         <td class="X ex">prefixed
322         </table>
323
324         <p><: if ($usage) { :>
325                 Usage percentage:
326                 <span class="  p0">0</span> -
327                 <span class="p p0 p00">.01</span> -
328                 <span class="p p0 p05">1-9</span> -
329                 <span class="p p1">10</span> -
330                 <span class="p p2">20</span> -
331                 <span class="p p5">majority</span>
332 <: } else { :>
333                 <table class="glyphs"><tr>
334                         <td class="p p1">previous version</td>
335                         <td class="p p3">current</td>
336                         <td class="p p0 p00">upcoming (within months)</td>
337                         <td class="  p0">future (within a year)</td>
338                 </table>
339 <: } :> </p>
340
341         <div class="right">
342                 <ul class="legend legend-set">
343                 <li>default <strong>style</strong> is
344                         <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
345                 <li><strong>usage</strong> source is
346                         <:= !defined $get{usage} && 'default ' :><:= defined $usage ? "<em>$usage</em>" : 'not included (<em>0</em>)' :>
347                 </ul>
348         </div>
349 </div>
350
351 <script type="text/javascript" src="/searchlocal.js"></script>
352 <script type="text/javascript"> prependsearch(document.getElementById('intro')) </script>
353