keyboard/altgr/index: hardcoded includes list
[sheet.git] / keyboard / altgr / index.inc.plp
index ccb7fb63fc3388bacad4d944102fda5cc2e28906..208cae215e3e2cc3256e64c1051f3048203d7dd9 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.2',
        description => [
                "Overview of alternate keyboard modes,",
                "offering extended Unicode characters if a modifier key",
@@ -15,9 +17,9 @@ 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>
 .keys.cmp {
@@ -31,6 +33,14 @@ Html({
 .keys.big.cmp tbody {
        font-size: 150%;
 }
+@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;
 }
@@ -46,6 +56,49 @@ Html({
        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%;
@@ -61,22 +114,33 @@ img {
 <p>Overview of available key layouts with AltGr or similar modifier keys.</p>
 
 <:
+my $idx = Data($indexfile);
+my @incs;
+push @incs, @{ $idx->{$_} } for @{ $idx->{default} };
+
 my @sample = split /(?<!\+)/, $get{sample} // 'asSci1!+1';
 require Shiar_Sheet::Keyboard;
+use List::Util qw( uniq max );
+
+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';
 if (@sample) {
        print '<table class="big keys cmp">';
-       print '<thead><tr><th>';
+       print '<thead><tr><th colspan=2>';
        print "<th>$_" for @sample;
        say '</tr></thead>';
 }
-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) {
+my %idx = map {($_ => scalar eval{ Data("$dirbase/$_.eng") })} @incs;
+my $most = max(map { scalar keys %{$_->{def}{''}} } values %idx);
+for my $inc (@incs) {
        print @sample ? '<tr><th>' : '<figure>';
-       printf '<a href="/%s">', $inc =~ s/\.eng$//r;
+       printf '<a href="/%s">', "$dirbase/$inc";
        my $table = $idx{$inc};
        my $title = $table && $table->{title} || $inc;
 
@@ -90,11 +154,29 @@ for my $inc (sort {
        }
        else {
                print $title;
-               print '</a>';
+               print '</a>', "\n\t";
                my $keys = Shiar_Sheet::Keyboard->new($table);
-               print '<br>', join(' ', map { $keys->{key}{$_} =~ s/\s.*//r } grep {$_} keys %{$_})
-                       for $keys->{mode} || ();
-               $keys->print_key('', $_, $keys->{def}{''}{$_} // 'ni') for @sample;
+               for my $mode ($keys->{mode} ? sort keys %{ $keys->{mode} } : '') {
+                       my %inventory;
+                       $inventory{$_}++ for grep { /^g[2-9]/ } map { s/ (?!ext).*//r }
+                               values %{ $keys->{def}{$mode} };
+                       print '<span class=graph>';
+                       printf '<label>%s</label>', s/\s.*//r for $keys->{key}{$mode} || ();
+                       for my $g (sort keys %inventory) {
+                               printf '<span class="%s" style="width:%.0f%%" title="%3$d %4$s"> %s</span>',
+                                       $g, $_/$most*100, $_,
+                                       join(' ', map {
+                                               $keys->{flag}{$_}[0] || 'extra'  # legend label of each class
+                                       } reverse split / /, $g)
+                                       for $inventory{$g};
+                       }
+                       say '</span>';
+               }
+               print "\t<td class=ni>";
+               print join ' ', map { $caticon{$_} // () } split m{/}, $keys->{category} // '';
+               say '';
+               $keys->print_key('', $_, ($keys->{def}{''}{$_} // 'ni') =~ s/ mode\S*//r)
+                       for @sample;
                say '</tr>';
        }
 }