X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/83a0dfa9c88eac62cab4dded6664e5f133ab8d37..08a379d96eaacbc1268c3f7aff9fb2bfcee80115:/writer.plp diff --git a/writer.plp b/writer.plp index 9d67520..226aa4b 100644 --- a/writer.plp +++ b/writer.plp @@ -15,30 +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; } -form > ul li > p input { +input,select { box-sizing: border-box; - width: 100%; + flex-grow: 1; +} +input:not([type=submit]) { padding: .4rem; font-family: monospace; } -form > ul li img { - max-width: 300px; +input[type=number] { + max-width: 7em; +} +select { + padding: .3rem .2rem; /* TODO: input */ +} +#thumbpreview { + width: 300px; + align-self: start; } ul.popup { @@ -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 { @@ -82,42 +88,7 @@ h1 { } - + EOT }); @@ -137,13 +108,21 @@ 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', - 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 => '★', ); my ($find) = map {{id => $_}} $fields{id} || $Request || (); @@ -172,43 +151,48 @@ elsif ($ENV{REQUEST_METHOD} eq 'POST') {{ }; my $imgpath = "data/word/org/$row->{id}.jpg"; - if (($row->{source} // '') ne ($replace->{source} // '')) { + my $reimage = eval { + ($row->{source} // '') ne ($replace->{source} // '') or return; # copy changed remote url to local file unlink $imgpath if -e $imgpath; - if (my $download = $row->{source}) { - require LWP::UserAgent; - my $ua = LWP::UserAgent->new; - $ua->agent('/'); - my $status = $ua->mirror($download, $imgpath); - $status->is_success or Alert([ - "Source image not found", - "Download from $download failed: ".$status->status_line, - ]); - } - } - elsif ($row->{thumb} ~~ $replace->{thumb}) { - # image and conversion unaltered - $imgpath = undef; - } + my $download = $row->{source} or return 1; + require LWP::UserAgent; + my $ua = LWP::UserAgent->new; + $ua->agent('/'); + my $status = $ua->mirror($download, $imgpath); + $status->is_success + or die "Download from $download failed: ".$status->status_line."\n"; + }; + !$@ or Alert(["Source image not found", $@]); + + $reimage ||= $row->{thumb} ~~ $replace->{thumb}; # different convert + $reimage ||= $row->{cover} ~~ $replace->{cover}; # resize + $reimage++ if $fields{rethumb}; # force refresh my $thumbpath = "data/word/eng/$row->{form}.jpg"; - if ($imgpath) { + if ($reimage) { if (-e $imgpath) { + my $xyres = $row->{cover} ? '600x400' : '300x200'; my @cmds = @{ $row->{thumb} // [] }; @cmds = ( 'convert', -delete => '1--1', -background => 'white', -gravity => @cmds ? 'northwest' : 'center', @cmds, - -resize => '300x200^', -extent => '300x200', + -resize => "$xyres^", -extent => $xyres, '-strip', -quality => '60%', -interlace => 'plane', $imgpath => $thumbpath ); - my $status = system @cmds; - $status == 0 or Alert([ + eval { + require IPC::Run; + my $output; + IPC::Run::run(\@cmds, '<' => \undef, '>&' => \$output) + or die $output || + ($? & 127 ? "signal $?" : "error code ".($? >> 8))."\n"; + } or Alert([ "Thumbnail image not generated", - "Failed to convert source image, error code ".($status >> 8), - ], "@cmds"); + "Failed to convert source image.", + ], "@cmds\n$@"); } else { unlink $thumbpath; @@ -231,17 +215,56 @@ my $title = $row->{id} ? "entry #$row->{id}" : 'new entry'; @@ -264,7 +287,7 @@ while (my $ref = $parents->hash) { printf '
  • %s
  • ', $ref->{id}, Entity($ref->{form}); } say "
  • $row->{form}
  • "; -my $children = $db->select(word => '*', {cat => $row->{id}}); +my $children = $db->select(word => '*', {cat => $row->{id}}, 'grade, id'); while (my $ref = $children->hash) { printf '
  • %s
  • ', $ref->{id}, Entity($ref->{form}); }