blob: ce89c3df58cfa8524798e68268514ac98dcb1a7f [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 %>"\
14<% if (current_route eq 'match') { %> class="active"<% } =%>>
Akron08b82d62016-12-05 15:06:05 +010015 <div class="match-main">
16 <div class="match-wrap">
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000017%# --- Snippet
Akron08b82d62016-12-05 15:06:05 +010018 <div class="snippet<%= $match->{startMore} ? ' startMore' : '' %><%= $match->{endMore} ? ' endMore' : '' %>"><%== $match->{snippet} %></div>
19 </div>
Nils Diewald4af3f0b2014-06-25 01:43:17 +000020 </div>
Nils Diewald996aa552014-12-02 03:26:44 +000021%# -- Reference string
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000022 <p class="ref">\
23<% if ($match->{title}) { %><strong><%= $match->{title} %></strong><% }; %>\
24<%= $match->{author} ? ' ' . loc('by') . ' ' . $match->{author} : '' %>\
Akron30ee5142015-06-26 01:50:14 +020025% if ($match->{pubDate}) {
26 (<time datetime="<%= $match->{pubDate} %>"><%= $match->{pubDate} %></time>)\
27% };
Akron0a6768f2016-07-13 18:00:43 +020028 <span class="sigle">[<%= $text_sigle %>]</span> \
Nils Diewald996aa552014-12-02 03:26:44 +000029</p>
Nils Diewald4af3f0b2014-06-25 01:43:17 +000030</li>