index: release v1.18 with only altgr index linked
[sheet.git] / word.plp
index ca850709f86790f6784f10907da8ee23595a80d7..aedca9da411b67326c62ac8ce20b64a07fb14f51 100644 (file)
--- a/word.plp
+++ b/word.plp
 <(common.inc.plp)><:
 
-my $wordlist = 'wordlist.eng.inc.pl';
-Html({
-       title => 'words cheat sheet',
-       version => '1.0',
-       description => "Visual words",
-       keywords => [qw'
-               language
-       '],
-       data => [$wordlist],
-       raw => <<'EOT',
-<style>
-ul {
-       display: flex;
-       flex-wrap: wrap;
-       align-items: end;
-       margin: -1px;
+my ($name) = $Request ? $Request =~ m{\A(\w+)} : 'finder';
+if (-e (my $page = "word/$name.plp")) {
+       utf8::downgrade($page); # unicode filename breaks contents encoding
+       Include $page;
+}
+elsif (-e "word/$name.js") {
+       Html({
+               raw => join("\n",
+                       (map {qq(<script src="/word/$_"></script>)}
+                               'put.min.js', 'quiz.js', "$name.js",
+                       ),
+                       (map {qq(<link rel="stylesheet" type="text/css" href="/$_">)}
+                               grep {-e} "word/$name.css"
+                       ),
+               ),
+       });
+       say '<h1>Words</h1>';
+       say '<section id="quiz"></section>';
+       say "<script>new Word\u$name()</script>";
+}
+else {
+       Html();
+       say '<h1>Words</h1>';
+       die ["Page <q>$name</q> not found"];
 }
-li, ul ul {
-       display: contents;
-       height: 100%;
-}
-figure {
-       flex: 200px;
-       flex-grow: 1;
-       max-width: 300px;
-       overflow: hidden;
-       padding: 1px;
-}
-figcaption > small {
-       display: inline-block;
-}
-
-figure:hover ~ ul figure,
-figure:hover ~ ul figcaption {
-       background: #CCC;
-       color: #000;
-}
-figure:hover ~ ul figcaption {
-       background: rgba(255, 255, 255, .5);
-}
-
-figure, figcaption {
-       transition: all .5s ease-in;
-}
-li.parent:hover > figure > figcaption,
-figure:hover > figcaption {
-       font-size: 175%;
-       right: 50%;
-       bottom: 50%;
-       transform: translate(50%, 50%);
-       margin-left: -60%; /* keep width */
-}
-</style>
-EOT
-});
-
-:>
-<h1>Words</h1>
-
-<p>
-Under construction.
-Zie ook <a href="/dieren">dieren</a>.
-</p>
-
-<:
-my $table = do $wordlist or die $@ // $!;
-
-sub showimg {
-       my ($name) = @_;
-       my ($img) = $name =~ /^([\w -]+)/;
-       $name =~ s/\w{4} [^aoeuiyc\W] [rl]?+ \K (?= [^aoeuiy\W] [rl]? [aoeuiy] \w)/&shy;/gx;
-       $name =~ s{/(.*)}{ <small>($1)</small>}g;
-       my $hidden = $name =~ s/\?$//;
-       my $alt = $name;
-       $name = "<q>$name</q>" if $name =~ s/\?$//;
-
-       if ($img and -e ($img = "data/word/eng/$img.jpg")) {
-               my $alt = -l $img && readlink($img) =~ s/\.jpg$//r;
-               if ($alt) {
-                       $name .= " ($alt)";
-               }
-               else {
-                       $alt = $name;
-               }
-               $name = "<figcaption>$name</figcaption>";
-               $name .= sprintf '<img src="/%s" alt="%s" />', $img, $alt;
-       }
-       elsif ($hidden) {
-               $name = "<figcaption>$name?</figcaption>";
-       }
-       return sprintf '<figure%s>%s</figure>', $hidden && !exists $get{v} && ' hidden', $name;
-}
-
-sub printimgs {
-       say '<ul>';
-       for my $row (@_) {
-               printf '<li%s>', defined $table->{$row} && ' class="parent"';
-               print showimg($row);
-               printimgs(@{$_}) for $table->{$row} // ();
-               print '</li>';
-       }
-       say '</ul>';
-}
-
-printimgs(@{$table->{''}});