word edit: group reference input with category
[sheet.git] / writer.plp
index 2df9e559f2895c7eb982f18301e2d836c74d2e8a..bae010cf19aa89e20ec950652848b3293ee987af 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;
@@ -105,14 +102,14 @@ my $db = eval {
 my @wordcols = (
        lang    => 'Language',
        cat     => 'Category',
+       ref     => undef, # included with cat
+       prio    => 'Level',
+       cover   => undef, # included with prio
        form    => 'Translation',
        alt     => 'Synonyms',
        wptitle => 'Wikipedia',
-       source  => 'Image URL',
+       source  => 'Image',
        thumb   => 'Convert options',
-       prio    => 'Level',
-       cover   => undef, # included with prio
-       ref     => 'Reference',
 );
 my @prioenum = qw( essential basic common distinctive rare invisible );
 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
@@ -231,12 +228,16 @@ 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" : ();
+               printf('<label for="%s">%s</label><input id="%1$s" name="%1$s" value="%s" />',
+                       'ref', 'Reference', Entity($row->{ref})
+               ) if $col eq 'cat';
        }
                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>';
 }
 :>