word edit: hide original image until requested
[sheet.git] / writer.plp
index 2df9e559f2895c7eb982f18301e2d836c74d2e8a..206333f137e04c33e67b777b31e98ffdb37aa329 100644 (file)
@@ -40,9 +40,6 @@ input:not([type]) {
 select {
        padding: .3rem .2rem; /* TODO: input */
 }
-form > ul li img {
-       max-width: 300px;
-}
 
 ul.popup {
        display: flex;
@@ -108,7 +105,7 @@ my @wordcols = (
        form    => 'Translation',
        alt     => 'Synonyms',
        wptitle => 'Wikipedia',
-       source  => 'Image URL',
+       source  => 'Image',
        thumb   => 'Convert options',
        prio    => 'Level',
        cover   => undef, # included with prio
@@ -231,12 +228,13 @@ for my $colinfo (pairs @wordcols) {
        }
        else {
                printf '<input id="%s" name="%1$s" value="%s" />', $col, Entity($val);
-               -e and printf '<img src="/%s" alt="%s" />', $_, $row->{form} for
-                       $col eq 'source' ? "data/word/org/$row->{id}.jpg" :
-                       $col eq 'thumb'  ? "data/word/eng/$row->{form}.jpg" :
-                       ();
+               -e and printf '<img src="/%s" alt="%s" />', $_, $row->{form}
+                       for $col eq 'thumb'  ? "data/word/eng/$row->{form}.jpg" : ();
        }
                print '</span>';
+       -e and printf('<img id="%spreview" src="/%s" alt="%s" hidden />',
+               $col, $_, $row->{form}
+       ) for $col eq 'source' ? "data/word/org/$row->{id}.jpg" : ();
        say '</p></li>';
 }
 :>