X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/d1ddd28cfe6234991725a44aa82ee956748398f8..07cba79c0739b2b618cdf711449159a6ace26d67:/browser.plp diff --git a/browser.plp b/browser.plp index 0f5b704..95dd4a9 100644 --- a/browser.plp +++ b/browser.plp @@ -1,5 +1,6 @@ <(common.inc.plp)><: use 5.010; +use utf8; use List::Util qw(sum max); Html({ @@ -9,7 +10,7 @@ Html({ "caniuse.", keywords => [qw'html css browser feature'], stylesheet => [qw'light dark circus mono red'], - data => ['caniuse.js'], + data => ['browser-support.inc.pl'], }); :> @@ -20,36 +21,16 @@ with Wikimedia browser usage statistics.

<: -use JSON; -use File::Slurp 'read_file'; -my $source = read_file('caniuse.js'); -for ($source) { # cleanup - # convert seperate variables to hash keys - s/\A/{/; - s/^caniuse\.(\w+) = /"$1":/gm; - s/;$/,/gm; - s/,\s*\Z/\n}/; - # fractions not supported by barekey - s/(?<=[,{]) (\d*\.\d) (?=:')/"$1"/gx; - # escapes not supported in singlequote - s{'((?:[^\\']+|\\.)*)'}{ - my $_ = $1; - s/"/\\"/g; - s/\\'/'/g; - qq("$_"); - }ge; -} -my $caniuse = from_json($source, { -# allow_singlequote => 1, - allow_barekey => 1, -}); +my $caniuse = do 'browser-support.inc.pl' or die $! || $@; my %CSTATS = ( n => 'di-b', y => 'di-aa', - a => 'di-d', - j => 'di-prop', - p => 'di-prop', + a => 'di-d', + 'a x' => 'di-d', + j => 'di-prop', + p => 'di-prop', + 'p j' => 'di-prop', 'y x' => 'di-a', ); my %CSTATUS = ( @@ -68,10 +49,10 @@ if (my ($somerow) = values %{ $caniuse->{data} }) { } } -my $canihas = do 'browser-usage.inc.pl'; -for ($! || $@ || ()) { - printf "

Browser usage data not found: %s.

\n", $_; -} +my $canihas = do 'browser-usage.inc.pl' or do { + printf "

Browser usage data not found: %s.

\n", $_ + for $! || $@; +}; my $scorediv = (max(map { sum(values %$_) } values %$canihas) // 1) / 100; print ''; @@ -79,21 +60,47 @@ print '' x 3; printf '', scalar @{ $versions{$_} } for @browsers; print "\n"; -print ''; -print '', + '', $header; # preceding row without any colspan to work around gecko bug -print ''; -print '"; +print '\n"; sub featurescore { # relative amount of support for given feature - state $statspts = { y=>10, 'y x'=>9, a=>5, j=>2, p=>1 }; + state $statspts = { y=>10, 'y x'=>9, a=>5, 'a x'=>5, j=>2, 'p j'=>2, p=>1 }; my $rank = 0; if (my $row = shift) { + if ($canihas) { + while (my ($browser, $versions) = each %$row) { + while (my ($version, $_) = each %$versions) { + $rank += $canihas->{$browser}->{$version} * $statspts->{$_}; + } + } + return $rank; + } + while (my ($browser, $vercols) = each %versions) { my $div = 0; # multiplier exponent (decreased to lower value) my @vers = map { $row->{$browser}->{$_} } @$vercols; @@ -143,7 +150,7 @@ for my $id (sort { ), scalar @span, $usage, - showversions(\@span), + showversions(@span), undef $prev; @span = (); } @@ -156,6 +163,7 @@ for my $id (sort { }); print '', $header; print '
feature'; -printf '%s', - scalar @{ $versions{$_} }, $caniuse->{agents}->{$_}->{browser} - for @browsers; +my $header = join('', + '
feature', + (map { + sprintf('%s', + scalar @{ $versions{$_} }, + sum(values %{ $canihas->{$_} }), + do { + my $name = $caniuse->{agents}->{$_}->{browser}; + length $name < 16 ? $name : $caniuse->{agents}->{$_}->{abbr}; + }, + ) + } @browsers), + '%', +); +print '
' x $_ for 3, (map { scalar @{ $versions{$_} } } @browsers), 1; +print "\n
' x 3; +for my $browser (@browsers) { + printf('%s', + $canihas->{$browser}->{$_}, showversions($_), + ) for @{ $versions{$browser} }; +} +print '' x 1; print "
', int featurescore($caniuse->{data}->{$id}->{stats}) / $maxscore * 100; } +print '
'; sub paddedver { @@ -165,16 +173,28 @@ sub paddedver { } sub showversions { - my ($span) = @_; - splice @$span, 1, -1; - for (@$span) { + my @span = ($_[0], @_>1 ? $_[-1] : ()); + for (@span) { s/^\./0./; s/x$/.*/; } - return join('‒', @$span); + return join('‒', @span); } :> +