X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/24d7164ce1fd20686e5091d6446b3408a1c71c73..83a0dfa9c88eac62cab4dded6664e5f133ab8d37:/writer.plp diff --git a/writer.plp b/writer.plp index 11754e8..9d67520 100644 --- a/writer.plp +++ b/writer.plp @@ -6,27 +6,39 @@ Html({ nocache => 1, raw => <<'EOT', @@ -65,7 +90,9 @@ document.addEventListener('DOMContentLoaded', () => { wpbutton.append('Copy'); wpbutton.onclick = () => { let wptitle = wpinput.value || document.getElementById('form').value; - let wppage = 'https://en.wikipedia.org/w/api.php?action=parse&format=json&origin=*&prop=text&page='+wptitle; + 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; @@ -108,13 +135,15 @@ my $db = eval { } or Abort('Database error', 501, $@); my @wordcols = ( + lang => 'Language', + cat => 'Category', form => 'Translation', + alt => 'Synonyms', wptitle => 'Wikipedia', - ref => 'Reference', - cat => 'Category', - lang => 'Language', source => 'Image URL', thumb => 'Convert options', + prio => 'Level', + ref => 'Reference', ); my ($find) = map {{id => $_}} $fields{id} || $Request || (); @@ -125,9 +154,9 @@ if ($find) { } if (exists $get{copy}) { - $row = {%{$row}{ qw(lang cat) }}; + $row = {%{$row}{ qw(prio lang cat) }}; } -elsif ($ENV{REQUEST_METHOD} eq 'POST') { +elsif ($ENV{REQUEST_METHOD} eq 'POST') {{ my $replace = $row; $row = {%post{ pairkeys @wordcols }}; $_ = length ? $_ : undef for values %{$row}; @@ -137,7 +166,10 @@ elsif ($ENV{REQUEST_METHOD} eq 'POST') { my $query = $find ? $db->update(word => $row, $find, \%res) : $db->insert(word => $row, \%res); $row = $query->hash; - } or Alert("Entry could not be saved", $@); + } or do { + Alert("Entry could not be saved", $@); + next; + }; my $imgpath = "data/word/org/$row->{id}.jpg"; if (($row->{source} // '') ne ($replace->{source} // '')) { @@ -182,8 +214,9 @@ elsif ($ENV{REQUEST_METHOD} eq 'POST') { unlink $thumbpath; } } -} +}} else { + $row->{prio} //= 1; $row->{$_} = $get{$_} for keys %get; } @@ -191,25 +224,27 @@ my $title = $row->{id} ? "entry #$row->{id}" : 'new entry'; :>

Words <:= $title :>

+
+
-
+
    <: for my $col (pairs @wordcols) { my $val = $row->{$col->key} // ''; $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY'; - printf '
    ' - . '
    ', + printf '
  • ' + . '', $col->key, $col->value, Entity($val); - -e and printf ' %s', $_, $row->{form} for + -e and printf '%s', $_, $row->{form} for $col->key eq 'source' ? "data/word/org/$row->{id}.jpg" : $col->key eq 'thumb' ? "data/word/eng/$row->{form}.jpg" : (); - say '

  • '; + say '

    '; } :> -
+

@@ -217,9 +252,9 @@ for my $col (pairs @wordcols) {

<: -$row->{id} or exit; +if ($row->{id}) { :> -
+ +<: +} +:> +