word edit: restrict access by login cookie
[sheet.git] / word.plp
index dd5985aee07a33eea02901a6bb4ddac3efabb85e..59bf8ca12beca9570f6e093c51948cf4e3d8441c 100644 (file)
--- a/word.plp
+++ b/word.plp
@@ -1,6 +1,8 @@
 <(common.inc.plp)><:
 
-my $wordlist = 'wordlist.eng.inc.pl';
+my $wordlist = 'wordlist.en.inc.pl';
+my $limit = $get{v} // (exists $get{v} ? 4 : 3);
+
 Html({
        title => 'words cheat sheet',
        version => '1.0',
@@ -27,11 +29,16 @@ figcaption > small {
        display: inline-block;
 }
 
-li.large > figure {
-       grid-row: span 2;
-       grid-column: span 2;
+body {
+       margin: 8px 1px;
+}
+@media (min-width: 403px) and (min-height: 266px) {
+       li.large > figure {
+               grid-row: span 2;
+               grid-column: span 2;
+       }
 }
-@media (min-width: 600px) and (min-height: 400px) {
+@media (min-width: 603px) and (min-height: 400px) {
        p + ul > li:first-child > figure {
                grid-row: span 3;
                grid-column: span 3;
@@ -62,6 +69,11 @@ figure:hover > figcaption {
 EOT
 });
 
+if (exists $get{debug}) {
+       say '<style>';
+       include 'word-debug.css';
+       say '</style>';
+}
 :>
 <h1>Words</h1>
 
@@ -83,7 +95,7 @@ sub showimg {
        $name = "<q>$name</q>" if $name =~ s/\?$//;
        $name = "<figcaption>$name</figcaption>";
 
-       if ($imgname and -e ($img = "data/word/eng/$imgname.jpg")) {
+       if ($imgname and -e (my $img = "data/word/en/$imgname.jpg")) {
                $name .= sprintf '<img src="/%s" alt="%s" />', $img, $imgname;
        }
        return sprintf '<figure%s>%s</figure>', $hidden && !exists $get{v} && ' hidden', $name;
@@ -92,11 +104,13 @@ sub showimg {
 sub printimgs {
        say '<ul>';
        for my $row (@_) {
+               my ($level, $mark, $title) = split /([a-z]*):/, $row, 2;
                my @type;
                push @type, 'parent' if defined $table->{$row};
-               push @type, 'large'  if $row =~ /^\*/;
+               push @type, 'large'  if $mark;
+               push @type, 'level'.($level || 0);
                printf '<li%s>', @type ? sprintf ' class="%s"', join ' ', @type : '';
-               print showimg($row =~ s/^\*//r);
+               print showimg($title) if $level <= $limit;
                printimgs(@{$_}) for $table->{$row} // ();
                print '</li>';
        }