word edit: enlarge and align columns, thumbnail
[sheet.git] / writer.plp
index b64fea08e3f8f2fb5dbab85e807dc070eb813e7a..226aa4b6802db660de69caaa7c18462a9d4523b2 100644 (file)
@@ -15,33 +15,39 @@ 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 */
 }
-form > ul li img {
-       max-width: 300px;
+#thumbpreview {
+       width: 300px;
+       align-self: start;
 }
 
 ul.popup {
@@ -64,7 +70,7 @@ h1 {
 }
 .inline {
        display: inline-flex;
-       align-items: start;
+       align-items: baseline;
        margin: 0 -1ex; /* inner gap */
 }
 .inline > * {
@@ -74,9 +80,6 @@ h1 {
        display: flex;
 }
 
-#nav {
-       -margin-left: 1em; /* flex gap */
-}
 #nav > ul,
 #nav > ul strong,
 #nav form {
@@ -85,42 +88,7 @@ h1 {
 }
 </style>
 
-<script>
-document.addEventListener('DOMContentLoaded', () => {
-       var wpinput = document.getElementById('wptitle');
-       var wpbutton = wpinput.parentNode.appendChild(document.createElement('button'));
-       wpbutton.type = 'button';
-       wpbutton.append('Copy');
-       wpbutton.onclick = () => {
-               let wptitle = wpinput.value || document.getElementById('form').value;
-               let wplang = document.getElementById('lang').value.substr(0, 2); // crude iso-639-3→2
-               let wpapi = `https://${wplang}.wikipedia.org/w/api.php`;
-               let wppage = wpapi+'?action=parse&format=json&origin=*&prop=text&page='+wptitle;
-               fetch(wppage).then(res => res.json()).then(json => {
-                       if (json.error) throw `error returned: ${json.error.info}`;
-                       wpinput.value = json.parse.title;
-                       let imginput = document.getElementById('source');
-                       if (imginput.value) return;
-                       let wpimages = json.parse.text['*'].match(/<img\s[^>]+>/g);
-                       let wpselect = wpinput.parentNode.appendChild(document.createElement('ul'));
-                       wpselect.className = 'popup';
-                       wpimages.forEach(img => {
-                               let selectitem = wpselect.appendChild(document.createElement('li'));
-                               selectitem.insertAdjacentHTML('beforeend', img);
-                               selectitem.onclick = e => {
-                                       let imgsrc = e.target.src
-                                               .replace(/^(?=\/\/)/, 'https:')
-                                               .replace(/\/thumb(\/.+)\/[^\/]+$/, '$1');
-                                       imginput.value = imgsrc;
-                                       wpselect.remove();
-                                       return false;
-                               };
-                       });
-               }).catch(error => alert(error));
-               return false;
-       };
-});
-</script>
+<script src="/writer.js"></script>
 EOT
 });
 
@@ -140,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 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 %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;
@@ -263,17 +237,35 @@ for my $colinfo (pairs @wordcols) {
                        ),
                        'cover', !!$row->{cover} && ' checked', 'Highlighted'
                );
+               printf('<label for="%s">%s</label><input id="%1$s" name="%1$s" value="%s" type="number" />',
+                       'grade', 'Order', Entity($row->{grade})
+               );
        }
        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 id="%spreview" src="/%s" alt="%s" />', $col, $_, $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>';
 }
+
+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>
@@ -295,7 +287,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});
 }