word edit: common function to format form input
[sheet.git] / writer.plp
index 206333f137e04c33e67b777b31e98ffdb37aa329..99a9736aa782bdd0ff393ffbd763b6558523c5e2 100644 (file)
@@ -15,31 +15,40 @@ form > ul {
        display: table;
        border-spacing: 0 2px;
 }
-form > ul li {
+form > ul li {
        display: table-row;
 }
-form > ul li > * {
+form > ul li > * {
        display: table-cell;
        padding-right: .5em;
 }
-form > ul li > label {
+form > ul li > label {
        /* th */
        text-align: right;
 }
-form > ul li > label + * {
+form > ul li > label + * {
        /* td */
        width: 32em;
 }
 
-input:not([type]) {
+input,select {
        box-sizing: border-box;
-       width: 100%;
+       flex-grow: 1;
+}
+input:not([type=submit]) {
        padding: .4rem;
        font-family: monospace;
 }
+input[type=number] {
+       max-width: 7em;
+}
 select {
        padding: .3rem .2rem; /* TODO: input */
 }
+#thumbpreview {
+       width: 300px;
+       align-self: start;
+}
 
 ul.popup {
        display: flex;
@@ -61,7 +70,7 @@ h1 {
 }
 .inline {
        display: inline-flex;
-       align-items: start;
+       align-items: baseline;
        margin: 0 -1ex; /* inner gap */
 }
 .inline > * {
@@ -71,9 +80,6 @@ h1 {
        display: flex;
 }
 
-#nav {
-       -margin-left: 1em; /* flex gap */
-}
 #nav > ul,
 #nav > ul strong,
 #nav form {
@@ -102,16 +108,22 @@ my $db = eval {
 my @wordcols = (
        lang    => 'Language',
        cat     => 'Category',
-       form    => 'Translation',
+       ref     => undef, # included with cat
+       grade   => undef, # "
+       prio    => 'Level',
+       cover   => undef, # included with prio
+       form    => 'Title',
        alt     => 'Synonyms',
        wptitle => 'Wikipedia',
        source  => 'Image',
        thumb   => 'Convert options',
-       prio    => 'Level',
-       cover   => undef, # included with prio
-       ref     => 'Reference',
 );
 my @prioenum = qw( essential basic common distinctive rare invisible );
+my %langflag = (
+       nld => "\N{REGIONAL INDICATOR SYMBOL LETTER N}\N{REGIONAL INDICATOR SYMBOL LETTER L}",
+       eng => "\N{REGIONAL INDICATOR SYMBOL LETTER G}\N{REGIONAL INDICATOR SYMBOL LETTER B}",
+       epo => '<span style="color:green">★</span>',
+);
 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
 
 my $row;
@@ -193,6 +205,44 @@ else {
 }
 
 my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
+
+package Shiar_Sheet::FormRow {
+       sub input {
+               my ($row, $col, $type, $label) = @_;
+               my $val = $row->{$col} // '';
+               $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY';
+               if (ref $type eq 'ARRAY') {
+                       return (
+                               sprintf('<select id="%s" name="%1$s">', $col),
+                               (map { sprintf('<option value="%s"%s>%s</option>',
+                                       $_, $val eq $_ && ' selected', $type->[$_]
+                               ) } 0 .. $#{$type}),
+                               '</select>',
+                       );
+               }
+               elsif ($type eq 'checkbox') {
+                       return sprintf(
+                               join('',
+                                       '<label>',
+                                       '<input id="%1$s" name="%1$s" value="0" type="hidden" />',
+                                       '<input id="%s" name="%1$s" value="1" type="%s"%s>',
+                                       ' %s</label>',
+                               ), $col, $type, !!$val && ' checked', $label
+                       );
+               }
+               else {
+                       my $html = '';
+                       $html .= qq( $_="$type->{$_}") for sort keys %{$type // {}};
+                       return (
+                               $label ? sprintf('<label for="%s">%s</label>', $col, $label) : (),
+                               sprintf('<input id="%s" name="%1$s" value="%s"%s />',
+                                       $col, PLP::Functions::EscapeHTML($val), $html
+                               ),
+                       );
+               }
+       }
+}
+bless $row, 'Shiar_Sheet::FormRow';
 :>
 <h1>Words <:= $title :></h1>
 
@@ -202,34 +252,21 @@ my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
 <input id="id" name="id" value="<:= $row->{id} // '' :>" type="hidden" />
 <ul>
 <:
-
 for my $colinfo (pairs @wordcols) {
        my ($col, $title) = @{$colinfo};
        defined $title or next;
-       my $val = $row->{$col} // '';
-       $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY';
        printf '<li><label for="%s">%s</label><p>', $col, $title;
                printf '<span class=inline>';
        if ($col eq 'prio') {
-               printf '<select id="%s" name="%1$s">', $col;
-               printf('<option value="%s"%s>%s</option>',
-                       $_, $row->{$col} eq $_ && ' selected', $prioenum[$_]
-               ) for 0 .. $#prioenum;
-               print '</select>';
-               printf(
-                       join('',
-                               '<label>',
-                               '<input id="%1$s" name="%1$s" value="0" type="hidden" />',
-                               '<input id="%s" name="%1$s" value="1" type="checkbox"%s>',
-                               ' %s</label>',
-                       ),
-                       'cover', !!$row->{cover} && ' checked', 'Highlighted'
-               );
+               print $row->input($col => \@prioenum);
+               print $row->input(cover => 'checkbox', 'Highlighted');
+               print $row->input(grade => {type => 'number'}, 'Order');
        }
        else {
-               printf '<input id="%s" name="%1$s" value="%s" />', $col, Entity($val);
-               -e and printf '<img src="/%s" alt="%s" />', $_, $row->{form}
+               print $row->input($col);
+               -e and printf '<img id="%spreview" src="/%s" alt="%s" />', $col, $_, $row->{form}
                        for $col eq 'thumb'  ? "data/word/eng/$row->{form}.jpg" : ();
+               print $row->input(ref => {}, 'Reference') if $col eq 'cat';
        }
                print '</span>';
        -e and printf('<img id="%spreview" src="/%s" alt="%s" hidden />',
@@ -237,6 +274,17 @@ for my $colinfo (pairs @wordcols) {
        ) for $col eq 'source' ? "data/word/org/$row->{id}.jpg" : ();
        say '</p></li>';
 }
+
+if ($row->{id}) {
+       my $children = $db->select(word => '*', {ref => $row->{id}}, 'lang, id');
+       printf '<li><label>%s</label><div><ul class="inline">', 'Translations';
+       while (my $row = $children->hash) {
+               printf '<li><label for="%s">%s</label> <a id="%1$s" href="%s">%s</a></li>',
+                       "trans-$row->{lang}", $langflag{$row->{lang}},
+                       "/writer/$row->{id}", Entity($row->{form});
+       }
+       say '</ul></div></li>';
+}
 :>
 </ul>
 <p>
@@ -258,7 +306,7 @@ while (my $ref = $parents->hash) {
        printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
 }
 say "<li><strong>$row->{form}</strong></li>";
-my $children = $db->select(word => '*', {cat => $row->{id}});
+my $children = $db->select(word => '*', {cat => $row->{id}}, 'grade, id');
 while (my $ref = $children->hash) {
        printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
 }