blob: dbc6e4f5de51885e4551eeca0a2882930520d70b [file] [log] [blame]
Akron30ee5142015-06-26 01:50:14 +02001% 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/};
Akron0a6768f2016-07-13 18:00:43 +02005% 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 Diewaldfccfbcb2015-04-29 20:48:19 +000010 %# TODO: This needs to be retrieved per match
Akron30ee5142015-06-26 01:50:14 +020011 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 Diewaldfccfbcb2015-04-29 20:48:19 +000013 id="<%= $id %>"\
Akron8b054f12017-04-27 20:23:13 +020014 <% if (current_route eq 'match') { %> class="active"<% } =%>>
Akron46b9f212017-05-01 13:55:17 +020015
16%# This should be done using JavaScript
17% my ($show_sigle, $flip) = ('', stash('flip') // 'flip');
Akronccede022017-05-02 12:54:51 +020018% if ($text_sigle ne (stash('last_sigle') // '')) {
Akron46b9f212017-05-01 13:55:17 +020019% $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>
Akron08b82d62016-12-05 15:06:05 +010026 <div class="match-main">
27 <div class="match-wrap">
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000028%# --- Snippet
Akron08b82d62016-12-05 15:06:05 +010029 <div class="snippet<%= $match->{startMore} ? ' startMore' : '' %><%= $match->{endMore} ? ' endMore' : '' %>"><%== $match->{snippet} %></div>
30 </div>
Nils Diewald4af3f0b2014-06-25 01:43:17 +000031 </div>
Nils Diewald996aa552014-12-02 03:26:44 +000032%# -- Reference string
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000033 <p class="ref">\
34<% if ($match->{title}) { %><strong><%= $match->{title} %></strong><% }; %>\
35<%= $match->{author} ? ' ' . loc('by') . ' ' . $match->{author} : '' %>\
Akron30ee5142015-06-26 01:50:14 +020036% if ($match->{pubDate}) {
37 (<time datetime="<%= $match->{pubDate} %>"><%= $match->{pubDate} %></time>)\
38% };
Akron0a6768f2016-07-13 18:00:43 +020039 <span class="sigle">[<%= $text_sigle %>]</span> \
Nils Diewald996aa552014-12-02 03:26:44 +000040</p>
Nils Diewald4af3f0b2014-06-25 01:43:17 +000041</li>