keyboard/altgr/index: move ctrl rows to distinct inventory mode
[sheet.git] / keyboard / altgr / index.inc.plp
index 057d6a9e053b2b1a738d08a00f7a92cfe43346c6..c6accc7669958fa79fd273e60ec06dae8414a54c 100644 (file)
@@ -1,12 +1,14 @@
 <: # included from keyboard.plp
 use 5.014;
 use warnings;
+use utf8;
 
-my @incs = glob 'keyboard/altgr/*.eng.inc.pl';
+my $dirbase = 'keyboard/altgr';
+my $indexfile = "$dirbase/index";
 
 Html({
        title => "altgr keyboard cheat sheets",
-       version => '1.1',
+       version => '1.3',
        description => [
                "Overview of alternate keyboard modes,",
                "offering extended Unicode characters if a modifier key",
@@ -15,23 +17,88 @@ Html({
        keywords => [qw'
                sheet cheat reference overview keyboard altgr option
        '],
-       image => 'data/keyboard/thumb/ibm-m.jpg',
+       image => "$dirbase/thumb/ibm-m.jpg",
        stylesheet => [qw( light dark circus mono red )],
-       data => ['keyboard/altgr/index.inc.plp', @incs],
+       data => ["$dirbase/index.inc.plp", "$indexfile.inc.pl"],
        raw => <<'.',
 <style>
-table.keys {
-       display: inline-table;
+.keys.cmp {
+       display: inline-table; /* centered */
+       float: none;
        margin: 0;
+       border-collapse: separate;
+       border-spacing: 2px;
+       border-spacing: .4vw; /* inline td margin equivalent */
 }
-dt {
-       display: flex;
-       flex-direction: column;
-       justify-content: center;
+.keys.big.cmp tbody {
+       font-size: 150%;
 }
-dt img {
-       max-height: 10ex;
+@media (max-width: 48em) {
+       .keys.big.cmp tbody {
+               font-size: 100%;
+       }
+       .keys.big.cmp tbody a {
+               white-space: normal;
+       }
+}
+.keys.cmp tbody {
+       display: table-row-group;
+}
+.keys.cmp tr {
+       display: table-row;
+}
+.keys.cmp tr > * {
+       display: table-cell;
+       position: static; /* under sticky thead */
+}
+.keys.cmp tbody th {
+       padding-right: 1ex;
+       text-align: right;
+}
+
+@font-face {
+       font-family: osicons;
+       src: url(/osicon.ttf);
+}
+.icon {
+       font-family: osicons;
+}
+.keys.cmp tbody .ni {
+       font-size: 80%;
+       padding: 0 .2em;
+}
+
+.graph {
+       display: block;
+       line-height: 1ex;
+       height: 1.2ex;
+       margin-top: .4ex;
+}
+.graph ~ .graph {
+       /* subsequent graphs */
+       height: .7ex;
 }
+.graph > * {
+       display: inline-block;
+       height: 100%;
+       vertical-align: top;
+}
+.graph > label {
+       font-size: 75%;
+       margin-right: .2em;
+}
+.graph > span {
+       border: 1px solid #000;
+       border-right-width: 0;
+       font-size: 0;
+}
+.graph > :last-of-type {
+       border-right-width: 1px;
+}
+.graph > .ext {
+       border-left: 0; /* assume following unext */
+}
+
 img {
        object-fit: cover;
        height: 100%;
@@ -44,25 +111,45 @@ img {
 :>
 <h1>Extended keyboards</h1>
 
-<p>Available key layouts with AltGr or similar modifier keys.</p>
+<p>Overview of available key layouts with AltGr or similar modifier keys.
+Also see <a href="/digraphs">digraphs</a> for compose key combinations.
+</p>
 
 <:
+my $idx = Data($indexfile);
+my @incs;
+push @incs, @{ $idx->{$_} } for @{ $idx->{default} };
+
 my @sample = split /(?<!\+)/, $get{sample} // 'asSci1!+1';
 require Shiar_Sheet::Keyboard;
+Shiar_Sheet::Keyboard->VERSION(3.00);
+use List::Util qw( uniq max sum );
+
+my %caticon = (
+       legacy  => qq{<span class=icon title="deprecated">\N{TOP HAT}</span>},
+       windows => qq{<span class=icon title="Windows">\x{1FA9F}</span>}, # \N{WINDOW}
+       macos   => qq{<span class=icon title="MacOS">\N{RED APPLE}</span>},
+       xorg    => qq{<span class=icon title="Xorg">\N{PENGUIN}</span>},
+);
 
 printf '<section class="%s">', @sample ? 'section' : 'gallery';
-print '<dl>' if @sample;
-my %idx = map {s/\Q.inc.pl\E$//; ($_ => eval{ Data($_) })} @incs;
-for my $inc (sort {
-       $idx{$a}{category} cmp $idx{$b}{category} || $a cmp $b
-} keys %idx) {
-       print @sample ? '<dt>' : '<figure>';
-       printf '<a href="/%s">', $inc =~ s/\.eng$//r;
-       my $table = $idx{$inc};
-       my $title = $table && $table->{title} || $inc;
+if (@sample) {
+       print '<table class="big keys cmp">';
+       print '<thead><tr><th colspan=2>';
+       print "<th>$_" for @sample;
+       say '</tr></thead>';
+}
+my $most = max(
+       map { sum values %{$_} } map { $_->{inventory}{''} } @{$idx}{@incs}
+);
+for my $inc (@incs) {
+       my $table = $idx->{$inc};
+       print @sample ? '<tr><th>' : '<figure>';
+       printf '<a href="/%s">', "$dirbase/$inc";
+       my $title = $table->{title} || $inc;
 
        unless (@sample) {
-               if ($table and my $img = $table->{image}) {
+               if (my $img = $table->{image}) {
                        EscapeHTML $name = $table->{imagealt} // $img =~ m{.*/([^/.]*)};
                        print qq{<img src="/$img" alt="$name" />};
                }
@@ -71,15 +158,39 @@ for my $inc (sort {
        }
        else {
                print $title;
-               print '</a>';
-               my $keys = Shiar_Sheet::Keyboard->new($table);
-               print join(' ', map { $keys->{key}{$_} =~ s/\s.*//r } grep {$_} keys %{$_})
-                       for $keys->{mode} || ();
-               say '<dd><table class="keys big"><tr>';
-               $keys->print_key('', $_, $keys->{def}{''}{$_} // 'ni') for @sample;
-               print '</tr></table>';
-               say '</dd>';
+               print '</a>', "\n\t";
+               for my $mode ($table->{mode} ? sort keys %{ $table->{mode} } : '') {
+                       print '<span class=graph>';
+                       printf "<label>%s</label>", m/^(\S*)/
+                               for $mode && $table->{mode}{$mode} || ();
+                       for my $g (sort keys %{ $table->{inventory}{$mode} }) {
+                               printf '<span class="%s" style="width:%.0f%%" title="%3$d %4$s"> %s</span>',
+                                       $g, $_/$most*100, $_,
+                                       join(' ', map {
+                                               $table->{flag}{$_}[0] || 'extra'  # legend label of each class
+                                       } reverse split / /, $g)
+                                       for $table->{inventory}{$mode}{$g};
+                       }
+                       say '</span>';
+               }
+               print "\t<td class=ni>";
+               print join ' ', map { $caticon{$_} // () }
+                       split m{/}, $table->{category} // '';
+               say '';
+               if (my $keys = eval {
+                       my $keydata = Data("$dirbase/$inc.eng");
+                       Shiar_Sheet::Keyboard->new($keydata)
+               }) {
+                       for my $c (@sample) {
+                               my $def = $keys->{def}{''}{$c} // [];
+                               $def->[0] //= 'ni';
+                               $def->[0] =~ s/ mode\S*//;
+                               $keys->print_key('', $c, $def);
+                       }
+               }
+               say '</tr>';
        }
 }
-:></dl></section>
+print '</table>' if @sample;
+:></section>