Akron | 30ee514 | 2015-06-26 01:50:14 +0200 | [diff] [blame] | 1 | % use Mojo::JSON qw/encode_json/; |
| 2 | % my $match = stash('match') || {}; |
| 3 | % my %match_data = %$match; |
| 4 | % delete @match_data{qw/snippet startMore endMore field/}; |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 5 | % my $text_sigle = $match->{textSigle} // join('/', $match->{corpusID}, $match->{docID}, $match->{textID}); |
| 6 | % my $id = $text_sigle . '#' . $match->{matchID}; |
| 7 | <li data-match-id="<%= $match->{matchID} %>" |
| 8 | data-text-sigle="<%= $text_sigle %>" |
| 9 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 10 | %# TODO: This needs to be retrieved per match |
Akron | 30ee514 | 2015-06-26 01:50:14 +0200 | [diff] [blame] | 11 | data-available-info="<%= $match->{layerInfos} // $match->{layerInfo} // 'cnx/c=spans corenlp/ne=tokens corenlp/p=tokens mate/l=tokens mate/m=tokens mate/p=tokens opennlp/p=tokens tt/l=tokens tt/p=tokens xip/c=spans' %>" |
| 12 | data-info="<%== b(encode_json(\%match_data))->decode->xml_escape %>" |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 13 | id="<%= $id %>"\ |
Akron | 8b054f1 | 2017-04-27 20:23:13 +0200 | [diff] [blame] | 14 | <% if (current_route eq 'match') { %> class="active"<% } =%>> |
Akron | 46b9f21 | 2017-05-01 13:55:17 +0200 | [diff] [blame] | 15 | |
| 16 | %# This should be done using JavaScript |
| 17 | % my ($show_sigle, $flip) = ('', stash('flip') // 'flip'); |
Akron | ccede02 | 2017-05-02 12:54:51 +0200 | [diff] [blame] | 18 | % if ($text_sigle ne (stash('last_sigle') // '')) { |
Akron | 46b9f21 | 2017-05-01 13:55:17 +0200 | [diff] [blame] | 19 | % $show_sigle = $text_sigle; |
| 20 | % stash(last_sigle => $text_sigle); |
| 21 | % $flip = $flip eq 'flip' ? 'flop' : 'flip'; |
| 22 | % stash(flip => $flip); |
| 23 | % } |
| 24 | |
| 25 | <div class="meta <%= $flip %>"><%= $show_sigle %></div> |
Akron | 08b82d6 | 2016-12-05 15:06:05 +0100 | [diff] [blame] | 26 | <div class="match-main"> |
| 27 | <div class="match-wrap"> |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 28 | %# --- Snippet |
Akron | 08b82d6 | 2016-12-05 15:06:05 +0100 | [diff] [blame] | 29 | <div class="snippet<%= $match->{startMore} ? ' startMore' : '' %><%= $match->{endMore} ? ' endMore' : '' %>"><%== $match->{snippet} %></div> |
| 30 | </div> |
Nils Diewald | 4af3f0b | 2014-06-25 01:43:17 +0000 | [diff] [blame] | 31 | </div> |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 32 | %# -- Reference string |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 33 | <p class="ref">\ |
| 34 | <% if ($match->{title}) { %><strong><%= $match->{title} %></strong><% }; %>\ |
| 35 | <%= $match->{author} ? ' ' . loc('by') . ' ' . $match->{author} : '' %>\ |
Akron | 30ee514 | 2015-06-26 01:50:14 +0200 | [diff] [blame] | 36 | % if ($match->{pubDate}) { |
| 37 | (<time datetime="<%= $match->{pubDate} %>"><%= $match->{pubDate} %></time>)\ |
| 38 | % }; |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 39 | <span class="sigle">[<%= $text_sigle %>]</span> \ |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 40 | </p> |
Nils Diewald | 4af3f0b | 2014-06-25 01:43:17 +0000 | [diff] [blame] | 41 | </li> |