keyboard/altgr: recover ukext combining characters
[sheet.git] / keyboard.plp
index b23e2f2db3e37135bde781948dc28f73c30a8fec..c96977d7eb7dadf4df9f596dad50222322489a90 100644 (file)
@@ -1,74 +1,37 @@
 <(common.inc.plp)><:
 
+my $mode = lc($Request || 'altgr');
+my $include = "$mode.eng";
+
+my $info = eval { Data($include) } || {};
+$mode = $info->{title} // $mode;
+
 Html({
-       title => 'keyboard cheat sheet',
-       version => '1.1',
-       description => [
-               "Windows US international keyboard layout table",
-               "with the AltGr modifier key.",
-       ],
+       title => "\L$mode\E keyboard cheat sheet",
+       version => $info->{version} || '0.1',
+       description => $info->{description} //
+               ["Keyboard cheat sheet for the default controls of $mode."],
+       keywords => [@{ $info->{keywords} // [] }, qw'
+               sheet cheat reference overview keyboard control commands shortkey
+       '],
        stylesheet => [qw( light dark circus mono red )],
        keys => 1,
+       data => ["$include.inc.pl"],
 });
 
-:>
-<h1>keyboard cheat sheet</h1>
-
-<p>Special <a href="/unicode">characters</a> returned with the AltGr modifier
-for the Windows US international layout.</p>
-
-<h2>normal mode (default)</h2>
-
-<:
-use Shiar_Sheet::Keyboard 2.07;
-use Unicode::Normalize qw( NFKD );
-use Text::Unidecode qw( unidecode );
-
-my @usintrows = (
-       [  'a' ..                                            'z'],
-       [qw(Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ)],
-       [qw(á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ)],
-       [qw(Å ı Ç ð ´ ̉ ˝ ̣ ˆ ½  Þ ¾ ˜ Ø ∏ Œ ‰ / ˇ ¨ ◊ „ ˛ ¼ ¸)],
-       [qw(å ∫ ç ∂ ́ ƒ © ˙ ̂ ∆ ° ¬ µ ̃ ø π œ ® ß † ̈ √ ∑ ≈ ¥ Ω)],
-);
-my @usint = (
-       map {
-               my $c = $_;
-               [ map { $usintrows[$_]->[$c] } 0 .. 2 ]
-       } 0 .. $#{ $usintrows[0] }
+%{$info} or Abort(
+       "Requested keyboard <q>$mode</q> not available",
+       '404 request not found',
 );
 
-my $keys = Shiar_Sheet::Keyboard->new({
-       def => {
-               '' => {
-                       map {
-                               my @row = @{$_};
-                               my $class = (
-                                         !defined $row[2] || $row[0] eq $row[2] ? 1 # identical
-                                       : NFKD($row[2]) =~ $row[0] ? 2 # decomposed equivalent
-                                       : $row[2] =~ /^\p{Latin}/ ? 4 # latin script
-                                       : unidecode($row[2]) =~ /^\W*\Q$row[0]/ ? 5 # transliterated
-                                       : $row[2] =~ /^\p{Mn}/ ? 8 # combining accent
-                                       : 7
-                               );
-                               $row[0] => "g$class"
-                       } @usint
-               },
-       },
-       key => {
-               map {
-                       $_->[0] => "$_->[1]<br>$_->[2]"
-               } @usint
-       },
-       flag => {
-               g1 => ['unaltered'],
-               g2 => ['accented'],
-               g4 => ['latin'],
-               g7 => ['other'],
-               g8 => ['combining'],
-       },
-});
+say "<h1>$mode cheat sheet</h1>";
+say "<p>$_</p>" for $info->{intro} // ();
+say "<h2>", $info->{mode}->{''}, " (default)</h2>"
+       if $info->{mode} and %{ $info->{mode} } > 1;
+
+use Shiar_Sheet::Keyboard 2.08;
+my $keys = Shiar_Sheet::Keyboard->new($info);
 $keys->map($get{map}) or undef $get{map};
-$keys->print_rows($get{rows}, [0]);
+$keys->print_rows($get{rows}, $info->{rows});
 $keys->print_legends(\%get);