word edit: -area option crops thumbnails with relative offsets
[sheet.git] / writer.plp
index 99a9736aa782bdd0ff393ffbd763b6558523c5e2..7280142226a1c30dd19ddeb734e9825b02636f0e 100644 (file)
@@ -105,24 +105,32 @@ my $db = eval {
        });
 } or Abort('Database error', 501, $@);
 
-my @wordcols = (
-       lang    => 'Language',
-       cat     => 'Category',
-       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',
+my %lang = (
+       nl => ["\N{REGIONAL INDICATOR SYMBOL LETTER N}\N{REGIONAL INDICATOR SYMBOL LETTER L}", 'nederlands'],
+       en => ["\N{REGIONAL INDICATOR SYMBOL LETTER G}\N{REGIONAL INDICATOR SYMBOL LETTER B}", 'english'],
+       eo => ['<span style="color:green">★</span>', 'esperanto'],
+       ru => ["\N{REGIONAL INDICATOR SYMBOL LETTER R}\N{REGIONAL INDICATOR SYMBOL LETTER U}", 'русский'],
 );
-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 @wordcols = pairkeys
+my %wordcol = (
+       lang    => {-label => 'Language', -select => {
+               map { $_ => "@{$lang{$_}}" } keys %lang
+       }},
+       cat     => [{-label => 'Category'}, 'ref'],
+       ref     => {-label => 'Reference'},
+       prio    => [
+               {-label => 'Level', -select => [qw(
+                       essential basic common distinctive rare invisible
+               )]},
+               'cover', 'grade',
+       ],
+       cover   => {-label => 'Highlighted', type => 'checkbox'},
+       grade   => {-label => 'Order', type => 'number'},
+       form    => {-label => 'Title'},
+       alt     => {-label => 'Synonyms'},
+       wptitle => {-label => 'Wikipedia'},
+       source  => {-label => 'Image'},
+       thumb   => {-label => 'Convert options'},
 );
 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
 
@@ -137,9 +145,22 @@ if (exists $get{copy}) {
 }
 elsif ($ENV{REQUEST_METHOD} eq 'POST') {{
        my $replace = $row;
-       $row = {%post{ pairkeys @wordcols }};
+       $row = {%post{keys %wordcol}};
        $_ = length ? $_ : undef for values %{$row};
 
+       if (!$row->{form}) {
+               if ($row->{ref} ne 'delete') {
+                       Alert("Empty title",
+                               "Confirm removal by setting <em>Reference</em> to <q>delete</q>."
+                       );
+               }
+               else {
+                       $db->delete(word => $find);
+                       Alert("Entry removed");
+               }
+               next;
+       }
+
        eval {
                my %res = (returning => '*');
                my $query = $find ? $db->update(word => $row, $find, \%res) :
@@ -150,7 +171,21 @@ elsif ($ENV{REQUEST_METHOD} eq 'POST') {{
                next;
        };
 
-       my $imgpath = "data/word/org/$row->{id}.jpg";
+       eval {
+               while (my ($lang, $val) = each %post) {
+                       my $field = $lang;
+                       $lang =~ s/^trans-// or next;
+                       $db->insert(word => {
+                               ref   => $row->{id},
+                               lang  => $lang,
+                               form  => $val,
+                       });
+                       delete $fields{$field};
+               }
+               return 1;
+       } or Alert('Error creating translation entries', $@);
+
+       my $imgpath = Shiar_Sheet::FormRow::imagepath($row, 'source');
        my $reimage = eval {
                ($row->{source} // '') ne ($replace->{source} // '') or return;
                # copy changed remote url to local file
@@ -169,11 +204,24 @@ elsif ($ENV{REQUEST_METHOD} eq 'POST') {{
        $reimage ||= $row->{cover} ~~ $replace->{cover};  # resize
        $reimage++ if $fields{rethumb};  # force refresh
 
-       my $thumbpath = "data/word/eng/$row->{form}.jpg";
+       my $thumbpath = Shiar_Sheet::FormRow::imagepath($row => 'thumb');
        if ($reimage) {
                if (-e $imgpath) {
                        my $xyres = $row->{cover} ? '600x400' : '300x200';
                        my @cmds = @{ $row->{thumb} // [] };
+                       if (my ($cmdarg) = grep { $cmds[$_] eq '-area' } 0 .. $#cmds) {
+                               # replace option by permillage crop
+                               my @dim = map { $_ / 1000 } split /\D/, $cmds[$cmdarg + 1];
+                               splice @cmds, $cmdarg, 2, (
+                                       -set => 'option:distort:viewport' => sprintf(
+                                               '%%[fx:w*%s]x%%[fx:h*%s]+%%[fx:w*%s]+%%[fx:h*%s]',
+                                               ($dim[2] || 1) - $dim[0], # width  = x2 - x1
+                                               ($dim[3] || 1) - $dim[1], # height = y2 - y1
+                                               @dim[0, 1]                # offset = x1,y1
+                                       ),
+                                       -distort => SRT => 0, # noop transform to apply viewport
+                               );
+                       }
                        @cmds = (
                                'convert',
                                -delete => '1--1', -background => 'white',
@@ -208,39 +256,57 @@ my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
 
 package Shiar_Sheet::FormRow {
        sub input {
-               my ($row, $col, $type, $label) = @_;
+               my ($row, $col, $attr) = @_;
                my $val = $row->{$col} // '';
                $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY';
-               if (ref $type eq 'ARRAY') {
+               my $html = '';
+               $html .= qq( $_="$attr->{$_}") for sort grep {!/^-/} keys %{$attr // {}};
+
+               if (my $options = $attr->{-select}) {
+                       $options = { map {$_ => $options->[$_]} 0 .. $#{$options} }
+                               if ref $options eq 'ARRAY';
+                       $options->{$val} //= "unknown ($val)";  # preserve current
                        return (
                                sprintf('<select id="%s" name="%1$s">', $col),
                                (map { sprintf('<option value="%s"%s>%s</option>',
-                                       $_, $val eq $_ && ' selected', $type->[$_]
-                               ) } 0 .. $#{$type}),
+                                       $_, $val eq $_ && ' selected', $options->{$_}
+                               ) } sort keys %{$options}),
                                '</select>',
                        );
                }
-               elsif ($type eq 'checkbox') {
+               elsif ($attr->{type} eq 'checkbox') {
+                       $html .= ' checked' if $val;
                        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>',
+                                       '<input name="%1$s" value="0" type="hidden" />',
+                                       '<input id="%s" name="%1$s" value="1"%s>',
                                        ' %s</label>',
-                               ), $col, $type, !!$val && ' checked', $label
+                               ), $col, $html, $attr->{-label}
                        );
                }
                else {
-                       my $html = '';
-                       $html .= qq( $_="$type->{$_}") for sort keys %{$type // {}};
                        return (
-                               $label ? sprintf('<label for="%s">%s</label>', $col, $label) : (),
+                               (map {
+                                       sprintf('<label for="%s">%s</label>', $col, $_)
+                               } $attr->{-label} // ()),
                                sprintf('<input id="%s" name="%1$s" value="%s"%s />',
                                        $col, PLP::Functions::EscapeHTML($val), $html
                                ),
+                               (map {
+                                       sprintf '<img id="%spreview" src="/%s" alt="%s"%s />',
+                                               $col, $_, $row->{form}, $col eq 'source' ? ' hidden' : '';
+                               } grep { -e } $row->imagepath($col)),
                        );
                }
        }
+
+       sub imagepath {
+               my ($row, $col) = @_;
+               return "data/word/org/$row->{id}.jpg"   if $col eq 'source';
+               return "data/word/en/$row->{form}.jpg"  if $col eq 'thumb';
+               return;
+       }
 }
 bless $row, 'Shiar_Sheet::FormRow';
 :>
@@ -252,36 +318,36 @@ bless $row, 'Shiar_Sheet::FormRow';
 <input id="id" name="id" value="<:= $row->{id} // '' :>" type="hidden" />
 <ul>
 <:
-for my $colinfo (pairs @wordcols) {
-       my ($col, $title) = @{$colinfo};
-       defined $title or next;
+for my $col (@wordcols) {
+       my $info = $wordcol{$col} or next;
+       my ($attr, @span) = ref $info eq 'ARRAY' ? @{$info} : $info;
+       my $title = ref $attr ? delete $attr->{-label} : $attr;
        printf '<li><label for="%s">%s</label><p>', $col, $title;
                printf '<span class=inline>';
-       if ($col eq 'prio') {
-               print $row->input($col => \@prioenum);
-               print $row->input(cover => 'checkbox', 'Highlighted');
-               print $row->input(grade => {type => 'number'}, 'Order');
-       }
-       else {
-               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 $row->input($col => $attr);
+               print $row->input($_ => delete $wordcol{$_}) for @span;
                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});
+if ($row->{id} and not $row->{ref}) {
+       printf '<li><label for="%s">%s</label><div><ul class="inline" id="%1$s">',
+               'trans', 'Translations';
+       my @children = $db->select(word => '*', {ref => $row->{id}}, 'lang, id')->hashes;
+       while (my ($lang, $val) = each %fields) {
+               $lang =~ s/^trans-// or next;
+               push @children, { lang => $lang, form => $val };
+       }
+       for my $ref (@children) {
+               printf(
+                       '<li><label for="%s" title="%3$s">%s </label>',
+                       "trans-$ref->{lang}", @{$lang{ $ref->{lang} }}, # flag, name
+               );
+               printf(
+                       $ref->{id} ? '<a id="%s" href="%s">%s</a></li>' :
+                       '<input id="%s" name="%1$s" value="%3$s" />',
+                       "trans-$ref->{lang}", "/writer/$ref->{id}", Entity($ref->{form}),
+               );
        }
        say '</ul></div></li>';
 }
@@ -301,12 +367,12 @@ if ($row->{id}) {
 
 <:
 say '<ul>';
-my $parents = $db->select(word => '*', {id => $row->{cat}});
+my $parents = $db->select(word => '*', [{id => $row->{cat}}, {id => $row->{ref}}]);
 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}}, 'grade, id');
+my $children = $db->select(word => '*', {cat => $row->{id}, ref => undef}, 'grade, id');
 while (my $ref = $children->hash) {
        printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
 }