unicode: group spaces and dashes
[sheet.git] / browser.plp
index fc3d5f034c26053fda3476e55ad705aa478d8873..da50b2d496bc8ed938a0ca8ec8d08cbe4e323c09 100644 (file)
 <(common.inc.plp)><:
 use 5.010;
 use utf8;
-use List::Util qw(sum max);
+use List::Util qw(sum max first);
 
 Html({
        title => 'browser compatibility cheat sheet',
        version => 'v1.0',
-       description =>
-               "caniuse.",
-       keywords => [qw'html css browser feature'],
+       description => [
+               "Compatibility table of new web features (HTML5, CSS3, SVG, Javascript)",
+               "comparing support and usage share for all popular browser versions.",
+       ],
+       keywords => [qw'
+               web browser support compatibility usage available feature
+               html html5 css css3 svg javascript js dom mobile
+               ie internet explorer firefox chrome safari webkit opera
+       '],
        stylesheet => [qw'circus dark mono red light'],
        data => ['browser-support.inc.pl'],
 });
 
-:>
-<h1>Browser compatibility</h1>
-
-<p>Alternate view of Fyrd's <a href="http://caniuse.com/">when can I use...</a> page
-with <a href="http://stats.wikimedia.org/archive/squid_reports/">Wikimedia</a>
-browser usage statistics.</p>
+say "<h1>Browser compatibility</h1>\n";
 
-<div id="browser">
-<:
 my $caniuse = do 'browser-support.inc.pl' or die $! || $@;
+$_->{verrelease} = {
+       # mark last two (future) versions as unreleased, ensure current isn't
+       map { $_->[-1] => 0, $_->[-2] => 0, $_->[-3] => undef } $_->{versions}
+} for values %{ $caniuse->{agents} };
 
 my %CSTATS = (
-       'n'   => 'l0',
-       'y'   => 'l6',
-       'y x' => 'l5',
-       'a'   => 'l4',
-       'a x' => 'l4',
+       'n'   => 'l1',
+       'y'   => 'l5',
+       'y x' => 'l5 ex',
+       'a'   => 'l3',
+       'a x' => 'l3 ex',
        'p j' => 'l2',
        'j'   => 'l2',
        'p'   => 'l2',
-       'u'   => 'l9',
+       'p p' => 'l2',
+       'u'   => 'l0',
+);
+my %DSTATS = (
+       u => 'unknown',
+       n => 'unsupported',
+       p => 'plugin required',
+       j => 'javascript required',
+       a => 'partial',
+       y => 'supported',
+       x => sub {
+               join(' ',
+                       'requires prefix',
+                       (map "-$_-", $caniuse->{agents}->{$_[0]}->{prefix} // ()),
+               );
+       },
 );
 my %CSTATUS = (
-       unoff => 'l0', # unofficial
-       wd    => 'l4', # draft
-       cr    => 'l5', # candidate
-       pr    => 'l5', # proposed
-       rec   => 'l6', # recommendation
-       ietf  => 'l6', # standard
+       unoff => 'l1', # unofficial
+       wd    => 'l3', # draft
+       cr    => 'l4', # candidate
+       pr    => 'l4', # proposed
+       rec   => 'l5', # recommendation
+       other => 'l2', # non-w3
+       ietf  => 'l5', # standard
 );
-my @browsers = qw(trident gecko webkit_saf webkit_chr presto);
 my %versions;
 if (my ($somerow) = values %{ $caniuse->{data} }) {
        while (my ($browser, $row) = each %{ $somerow->{stats} }) {
                $versions{$browser} = [ sort { paddedver($a) cmp paddedver($b) } keys %$row ];
        }
 }
+my @browsers = keys %versions;
 
-my $canihas = do 'browser-usage.inc.pl' || do {
-       printf "<p>Browser usage data not found: <em>%s</em>.</p>\n", $_
-               for $! || $@;
-       +{
-               map {
-                       $_ => +{
-                               map {
-                                       ($_->[4] =>  0 ), # future
-                                       ($_->[3] =>  .5), # next
-                                       ($_->[0] =>  5 ), # past
-                                       ($_->[1] => 10 ), # previous
-                                       ($_->[2] => 30 ), # current
-                               } $caniuse->{agents}->{$_}->{versions}
-                       }
-               } @browsers
-       }; # fallback hash based on release semantics
-};
-my $scorediv = (max(map { sum(values %$_) } values %$canihas) // 1) / 100;
+print <<'';
+<p id="intro">Alternate rendition of Fyrd's <a href="http://caniuse.com/">when can I use...</a> page
+
+my ($canihas, $usage);
+given ($get{usage} // 'wm') {
+       when (!$_) {
+               # none
+       }
+       when (!/^[a-z][\w-]+$/) {
+               printf "<p>Invalid browser usage data request: <em>%s</em>",
+                       'identifier must be alphanumeric name or <q>0</q>';
+       }
+       $canihas = do "browser-usage-$_.inc.pl" or do {
+               printf "<p>Browser usage data not found: <em>%s</em>", $! || $@;
+               break;
+       };
+       $usage = $_;
+       my $ref = $canihas->{-title} || 'unknown';
+       $ref = sprintf '<a href="%s">%s</a>', $_, $ref
+               for $canihas->{-site} || $canihas->{-source} || ();
+       $ref .= " $_" for $canihas->{-date} || ();
+       print "\nwith $ref browser usage statistics";
+}
+if ($usage) { # first() does not work inside given >:(
+       # adapt version usage to actual support data
+       my %engineuse;  # prefix => usage sum
+       while (my ($browser, $row) = each %$canihas) {
+               my $verlist = $versions{$browser} or next;
+               my %supported = map { $_ => 1 } @$verlist;
+
+               # cascade unknown versions
+               $row->{$_} //= undef for @$verlist;  # ensure stable keys during iteration
+               while (my ($version, $usage) = each %$row) {
+                       next if defined $supported{$version};
+                       my $next = first { paddedver($_) ge paddedver($version) } @$verlist
+                               or warn("No fallback found for $browser v$version; $usage% ignored"), next;
+                       $row->{$next} += $usage;
+                       $row->{$version} = 0;  # balance browser total
+               }
+
+               # reusable aggregates (grouped by prefix (engine) and browser)
+               $engineuse{ $caniuse->{agents}->{$browser}->{prefix} } +=
+               $row->{-total} = sum(values %$row);
+       }
+
+       # order browser columns by usage grouped by engine
+       @browsers = sort {
+               $engineuse{ $caniuse->{agents}->{$b}->{prefix} } <=>
+               $engineuse{ $caniuse->{agents}->{$a}->{prefix} }
+                       ||
+               $canihas->{$b}->{-total} <=> $canihas->{$a}->{-total}
+       } @browsers;
+}
+else {
+       # order browser columns by name grouped by engine
+       @browsers = sort {
+               $caniuse->{agents}->{$b}->{prefix} cmp
+               $caniuse->{agents}->{$a}->{prefix}
+                       ||
+               $a cmp $b
+       } @browsers;
+}
+:>.
+</p>
+
+<:
+$canihas ||= {
+       map {
+               $_ => +{
+                       map {
+                               my $zero = $#$_ - 2;  # baseline index
+                               ($_->[$zero - 2] =>  .5), # past
+                               ($_->[$zero - 1] => 10 ), # previous
+                               ($_->[$zero + 2] =>  0 ), # future
+                               ($_->[$zero + 1] =>  .5), # next
+                               ($_->[$zero    ] => 30 ), # current
+                       } $caniuse->{agents}->{$_}->{versions}
+               }
+       } @browsers
+}; # fallback hash based on release semantics
+my $usagemax = (max(map { ref $_ eq 'HASH' && sum(values %$_) } values %$canihas) // 1) / 100;
+
+my $usagepct = 1;  # score multiplier for 0..100 result
+# normalise usage percentage to only include shown browsers
+$usagepct = 100.01 / featurescore({  # yes for every possible version
+       map { $_ => { map {$_ => 'y'} @{$versions{$_}} } } keys %versions
+});
 
 print '<table class="mapped">';
-print '<col>' x 3;
+print '<col span="3">';  # should match first thead row
 printf '<colgroup span="%d">', scalar @{ $versions{$_} } for @browsers;
-print "\n";
+say '</colgroup><col>';
 
 my $header = join('',
        '<tr>',
        '<th colspan="3">feature',
        (map {
-               sprintf('<th colspan="%d" title="%.1f%%">%s',
+               my $name = $caniuse->{agents}->{$_}->{browser};
+               sprintf('<th colspan="%d" class="%s" title="%s">%s',
                        scalar @{ $versions{$_} },
-                       sum(values %{ $canihas->{$_} }),
+                       join(' ', map {"b-a-$_"} grep {$_}
+                               $_, @{ $caniuse->{agents}->{$_} }{'prefix', 'type'},
+                       ),
+                       join(' ',
+                               sprintf('%.1f%%', $canihas->{$_}->{-total} * $usagepct),
+                               $name,
+                       ),
                        do {
-                               my $name = $caniuse->{agents}->{$_}->{browser};
-                               length $name < 16 ? $name : $caniuse->{agents}->{$_}->{abbr};
+                               length $name < 3 + @{ $versions{$_} }*2 ? $name
+                                       : $caniuse->{agents}->{$_}->{abbr};
                        },
                )
        } @browsers),
@@ -95,22 +190,34 @@ print '<thead>', $header;
 print "\n<tr>";
 print '<td>' x 3;
 for my $browser (@browsers) {
-       printf('<td title="%.1f%%">%s',
-               $canihas->{$browser}->{$_}, showversions($_),
-       ) for @{ $versions{$browser} };
+       for my $_ (@{ $versions{$browser} }) {
+               my $release = $caniuse->{agents}->{$browser}->{verrelease}->{$_};
+               my $future = defined $release;
+               printf('<td title="%s"%s>%s',
+                       join(' ',
+                               sprintf('%.1f%%', $canihas->{$browser}->{$_} * $usagepct),
+                               $future ? 'development' : (),
+                               "version $_",
+                       ),
+                       $future && ' class="ex"',
+                       showversions($_),
+               );
+       }
 }
 print '<td>' x 1;
-print "</thead>\n";
+say '</thead>';
+say '<tfoot>', $header, '</tfoot>';
 
 sub featurescore {
        # relative amount of support for given feature
-       state $statspts = { y=>10, 'y x'=>9, a=>5, 'a x'=>5, j=>2, 'p j'=>2, p=>1 };
+       state $statspts = { y=>1, 'y x'=>1, a=>.5, 'a x'=>.5, j=>.2, 'p j'=>.2, 'p p'=>.2, p=>.1 };
        my $rank = 0;
        if (my $row = shift) {
                if ($canihas) {
                        while (my ($browser, $versions) = each %$row) {
+                               ref $versions eq 'HASH' or next;
                                while (my ($version, $_) = each %$versions) {
-                                       $rank += $canihas->{$browser}->{$version} * $statspts->{$_};
+                                       $rank += ($canihas->{$browser}->{$version} || .001) * $statspts->{$_};
                                }
                        }
                        return $rank;
@@ -134,93 +241,151 @@ sub featurescore {
        return $rank;
 }
 
-for my $id (sort {
-           featurescore($caniuse->{data}->{$b}->{stats})
-       <=> featurescore($caniuse->{data}->{$a}->{stats})
-} keys %{ $caniuse->{data} }) {
+sub saytitlecol {
+       my ($id) = @_;
        my $row = $caniuse->{data}->{$id};
-       my $data = $row->{stats} or next;  # skip metadata [summary]
-       printf '<tr id="%s">', $id;
+
        for ($row->{categories}) {
                my $cell = $_ ? lc $_->[0] : '-';
-               print '<th>', $cell;
+               $cell =~ s/ api$//;  # trim unessential fluff in 'js api'
+               printf '<th title="%s">%s', join(' + ', @$_), $cell;
        }
-       print '<td>', $row->{title};
+
+       print '<td>', map {
+               sprintf('<a href="%s" onclick="%s">%s</a>',
+                       "#$id",
+                       sprintf("try { %s; return false } catch(err) { return true }",
+                               "document.getElementById('$id').classList.toggle('target')",
+                       ),
+                       Entity($_),
+               );
+       } $row->{title};
        print '<div class=aside>';
        s/\.?$/./, print "<p>$_</p>" for map { ref $_ ? @$_ : $_ || () }
-               $row->{description}, $row->{notes};
-       printf 'Resources: %s.', join(', ',
-               map { qq(<a href="$_->{url}">$_->{title}</a>) } @$_
-       ) for $row->{links} // ();
+               Entity($row->{description}),
+               map { s/\s*\n/\n<br>/g; $_ } $row->{notes};
+       printf 'Resources: %s.', join(', ', map {
+               sprintf '<a href="%s">%s</a>', EscapeHTML($_->{url}), $_->{title}
+       } @$_) for grep { @$_ } $row->{links} // ();
+       printf '<br>Parent feature: %s.', join(', ', map {
+               sprintf '<a href="%s">%s</a>', EscapeHTML("#$_"), $caniuse->{data}->{$_}->{title}
+       } $_) for $row->{parent} || ();
        print '</div>';
+}
+
+sub saystatuscol {
+       my ($id) = @_;
+       my $row = $caniuse->{data}->{$id};
+
        for ($row->{status}) {
                my $cell = $_ // '-';
                $cell = sprintf '<a href="%s">%s</a>', $_, $cell for $row->{spec} // ();
-               printf '<td title="%s" class="%s">%s',
+               printf '<td title="%s" class="%s">%s',
                        $caniuse->{statuses}->{$_}, $CSTATUS{$_} // '', $cell;
        }
-       for my $browser (@browsers) {
-               my ($prev, @span);
-               for my $ver (@{ $versions{$browser} }, undef) {
-                       unless (!defined $prev
-                       or $data->{$browser}->{$prev} ~~ $data->{$browser}->{$ver}) {
-                               my $usage = sum(map { $canihas->{$browser}->{$_} } @span);
-                               printf '<td class="%s" colspan="%d" title="%.1f%%">%s',
-                                       join(' ',
-                                               X => $CSTATS{ $data->{$browser}->{$prev} },
-                                               !$usage ? ('p0') : ('p',
-                                                       sprintf('p%01d', $usage / 10),
-                                                       sprintf('p%02d', $usage),
-                                               ),
-                                               sprintf('pp%02d', $usage / $scorediv),
+}
+
+sub saybrowsercols {
+       my ($id, $browser) = @_;
+       my $data = $caniuse->{data}->{$id}->{stats}->{$browser};
+       if (ref $data eq 'ARRAY') {
+               # special case for unsupported
+               my $release = $caniuse->{agents}->{$browser}->{verrelease};
+               $data = {
+                       map { $_ => defined $release->{$_} ? 'u' : 'n' } keys %$release
+               };
+       }
+
+       my ($prev, @span);
+       for my $ver (@{ $versions{$browser} }, undef) {
+               my $compare = (
+                       !defined $ver ? undef :      # last column if nameless
+                       ref $data ne 'HASH' ? '' :   # unclassified if no support hash
+                       $data->{$ver} // $prev       # known or inherit from predecessor
+                       // (grep { defined } @{$data}{ @{ $versions{$browser} } })[0]
+                          ~~ 'n' && 'n'             # first known version is unsupported
+                       || 'u'                       # unsure
+               );
+               unless (!defined $prev or $prev ~~ $compare) {
+                       my $usage = sum(map { $canihas->{$browser}->{$_} } @span);
+                       printf '<td class="%s" colspan="%d" title="%s">%s',
+                               join(' ',
+                                       X => $CSTATS{$prev},
+                                       !$usage ? ('p0') : ('p',
+                                               sprintf('p%01d', $usage * ($usagepct - .0001) / 10),
+                                               sprintf('p%02d', $usage * ($usagepct - .0001)),
                                        ),
-                                       scalar @span,
-                                       $usage,
-                                       showversions(@span),
-                               undef $prev;
-                               @span = ();
-                       }
-                       push @span, $ver;
-                       $prev = $ver;
+                                       sprintf('pp%02d', $usage / $usagemax),
+                               ),
+                               scalar @span,
+                               sprintf('%.1f%% %s', $usage * $usagepct, join(', ',
+                                       map { ref $_ eq 'CODE' ? $_->($browser) : $_ }
+                                       map { $DSTATS{$_} // () }
+                                       map { split / /, $_ }
+                                       $prev
+                               )),
+                               showversions(@span),
+                       undef $prev;
+                       @span = ();
                }
+               push @span, $ver;
+               $prev = $compare;
        }
-       state $maxscore = featurescore({  # yes for every possible version
-               map { $_ => { map {$_ => 'y'} @{$versions{$_}} } } keys %versions
-       });
-       print '<td>', int featurescore($caniuse->{data}->{$id}->{stats}) / $maxscore * 100;
 }
-print '<tfoot>', $header;
-print '</table>';
+
+sub sayusagecol {
+       my ($id) = @_;
+       print '<td>', int featurescore($caniuse->{data}->{$id}->{stats}) * $usagepct;
+}
+
+say '<tbody>';
+for my $id (sort {
+           featurescore($caniuse->{data}->{$b}->{stats})
+       <=> featurescore($caniuse->{data}->{$a}->{stats})
+} keys %{ $caniuse->{data} }) {
+       $caniuse->{data}->{$id}->{stats} or next;  # skip metadata [summary]
+       printf '<tr id="%s">', $id;
+       saytitlecol($id);
+       saystatuscol($id);
+       saybrowsercols($id, $_) for @browsers;
+       sayusagecol($id);
+       say '</tr>';
+}
+say '</tbody>';
+say '</table>';
 
 sub paddedver {
        # normalised version number comparable as string (cmp)
-       shift =~ /^(\d*)(.*)/;
+       shift =~ /(?:.*-|^)(\d*)(.*)/;
+       # matched (major)(.minor) of last value in range (a-B)
        return sprintf('%02d', $1 || 0) . $2;
 }
 
 sub showversions {
        my @span = ($_[0], @_>1 ? $_[-1] : ());
+       s/-.*// for $span[0];
        for (@span) {
                s/^\./0./;
                s/x$/.*/;
+               s/.*-//;
        }
        return join('‒', @span);
 }
 
-:></div>
-
+:>
 <hr>
 
 <div class="legend">
        <table class="glyphs"><tr>
-       <td class="X l6">supported
-       <td class="X l5">prefixed
-       <td class="X l4">partial
+       <td class="X l5">supported
+       <td class="X l3">partial
        <td class="X l2">external (js/plugin)
-       <td class="X l0">missing
+       <td class="X l1">missing
+       <td class="X l0">unknown
+       <td class="X ex">prefixed
        </table>
 
-       <div>
+       <p><: if ($usage) { :>
                Usage percentage:
                <span class="  p0">0</span> -
                <span class="p p0 p00">.01</span> -
@@ -228,13 +393,25 @@ sub showversions {
                <span class="p p1">10</span> -
                <span class="p p2">20</span> -
                <span class="p p5">majority</span>
-       </div>
+<: } else { :>
+               <table class="glyphs"><tr>
+                       <td class="p p1">previous version</td>
+                       <td class="p p3">current</td>
+                       <td class="p p0 p00">upcoming (within months)</td>
+                       <td class="  p0">future (within a year)</td>
+               </table>
+<: } :>        </p>
 
        <div class="right">
                <ul class="legend legend-set">
                <li>default <strong>style</strong> is
                        <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
+               <li><strong>usage</strong> source is
+                       <:= !defined $get{usage} && 'default ' :><:= defined $usage ? "<em>$usage</em>" : 'not included (<em>0</em>)' :>
                </ul>
        </div>
 </div>
 
+<script type="text/javascript" src="/searchlocal.js"></script>
+<script type="text/javascript"> prependsearch(document.getElementById('intro')) </script>
+