Bug 2735: Fix authority search pagination at the OPAC
The authority search pagination displays only 15 pages, even when there are more. To fix that, this patch mimic the authorities-home.pl intranet script to manage the pagination. Test plan: Without this patch, do some authority search and click on different pages. Apply this patch, redo the same search and make sure the same records are displayed (i.e. confirm that the pagination still works as before). Signed-off-by: Nicole C Engard <nengard@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
bfac6c29e4
commit
de2df0dfe8
3 changed files with 44 additions and 87 deletions
|
@ -1,31 +1,6 @@
|
||||||
[% USE Koha %]
|
[% USE Koha %]
|
||||||
[% PROCESS 'opac-authorities.inc' %]
|
[% PROCESS 'opac-authorities.inc' %]
|
||||||
[% PROCESS 'authorities-search-results.inc' %]
|
[% PROCESS 'authorities-search-results.inc' %]
|
||||||
[% pagination = BLOCK %]
|
|
||||||
<div class="pagination">
|
|
||||||
<ul>
|
|
||||||
[% IF ( displayprev ) %]
|
|
||||||
<li>
|
|
||||||
<a href="opac-authorities-home.pl?startfrom=[% startfromprev %]&[% FOREACH searchdat IN searchdata %][% searchdat.term %]=[% searchdat.val |url %]&[% END %]resultsperpage=[% resultsperpage |html %]&type=opac&op=do_search&authtypecode=[% authtypecode %]&orderby=[% orderby|html %]">
|
|
||||||
«
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
[% END %]
|
|
||||||
[% FOREACH number IN numbers %]
|
|
||||||
[% IF ( number.highlight ) %]
|
|
||||||
<li class="active"><a href="#">[% number.number %]</a></li>
|
|
||||||
[% ELSE %]
|
|
||||||
<li><a href="opac-authorities-home.pl?startfrom=[% number.startfrom %]&[% FOREACH searchdat IN number.searchdata %][% searchdat.term %]=[% searchdat.val |url %]&[% END %]resultsperpage=[% resultsperpage |html %]&type=opac&op=do_search&authtypecode=[% authtypecode %]&orderby=[% orderby|html %]">[% number.number %]</a></li>
|
|
||||||
[% END %]
|
|
||||||
[% END %]
|
|
||||||
[% IF ( displaynext ) %]
|
|
||||||
<li>
|
|
||||||
<a href="opac-authorities-home.pl?startfrom=[% startfromnext %]&[% FOREACH searchdat IN searchdata %][% searchdat.term %]=[% searchdat.val |url %]&[% END %]&resultsperpage=[% resultsperpage |html %]&type=opac&op=do_search&authtypecode=[% authtypecode %]&orderby=[% orderby|html %]">»</a>
|
|
||||||
</li>
|
|
||||||
[% END %]
|
|
||||||
</ul>
|
|
||||||
</div> <!-- / #pages -->
|
|
||||||
[% END %]
|
|
||||||
[% INCLUDE 'doc-head-open.inc' %]
|
[% INCLUDE 'doc-head-open.inc' %]
|
||||||
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › [% IF ( total ) %]Authority search result[% ELSE %]No results found[% END %]</title>
|
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog › [% IF ( total ) %]Authority search result[% ELSE %]No results found[% END %]</title>
|
||||||
[% INCLUDE 'doc-head-close.inc' %]
|
[% INCLUDE 'doc-head-close.inc' %]
|
||||||
|
@ -56,14 +31,15 @@
|
||||||
<div id="userauthsearchresults" class="maincontent">
|
<div id="userauthsearchresults" class="maincontent">
|
||||||
<h1>Authority search results</h1>
|
<h1>Authority search results</h1>
|
||||||
|
|
||||||
[% pagination %]
|
[% IF total %]
|
||||||
|
<div class="pages">[% pagination_bar %]</div>
|
||||||
|
[% END %]
|
||||||
<div id="results">
|
<div id="results">
|
||||||
[% IF ( total ) %]
|
[% IF ( total ) %]
|
||||||
[% IF ( countfuzzy ) %]
|
[% IF ( countfuzzy ) %]
|
||||||
<b>Showing [% resultcount %] of about [% total %] results</b>
|
<p><b>Showing [% resultcount %] of about [% total %] results</b></p>
|
||||||
[% ELSE %]
|
[% ELSE %]
|
||||||
<b>Results [% from %] to [% to %] of [% total %]</b>
|
<p><b>Results [% from %] to [% to %] of [% total %]</b></p>
|
||||||
[% END %]
|
[% END %]
|
||||||
[% ELSE %]
|
[% ELSE %]
|
||||||
No results found.
|
No results found.
|
||||||
|
@ -102,7 +78,7 @@
|
||||||
</table>
|
</table>
|
||||||
</div> <!-- / .searchresults -->
|
</div> <!-- / .searchresults -->
|
||||||
|
|
||||||
[% pagination %]
|
<div class="pages">[% pagination_bar %]</div>
|
||||||
|
|
||||||
[% END # / IF total %]
|
[% END # / IF total %]
|
||||||
</div> <!-- / #userauthsearchresults -->
|
</div> <!-- / #userauthsearchresults -->
|
||||||
|
|
|
@ -1957,7 +1957,9 @@ span.sep {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* style for PM-generated pagination bar */
|
/* style for PM-generated pagination bar */
|
||||||
|
.pages {
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
.pages span:first-child,
|
.pages span:first-child,
|
||||||
.pages a:first-child {
|
.pages a:first-child {
|
||||||
border-width: 1px 1px 1px 1px;
|
border-width: 1px 1px 1px 1px;
|
||||||
|
|
|
@ -22,6 +22,7 @@ use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
use CGI qw ( -utf8 );
|
use CGI qw ( -utf8 );
|
||||||
|
use URI::Escape;
|
||||||
use C4::Auth;
|
use C4::Auth;
|
||||||
|
|
||||||
use C4::Context;
|
use C4::Context;
|
||||||
|
@ -40,11 +41,10 @@ my $op = $query->param('op') || '';
|
||||||
my $authtypecode = $query->param('authtypecode') || '';
|
my $authtypecode = $query->param('authtypecode') || '';
|
||||||
my $dbh = C4::Context->dbh;
|
my $dbh = C4::Context->dbh;
|
||||||
|
|
||||||
my $startfrom = $query->param('startfrom');
|
my $startfrom = $query->param('startfrom') || 1;
|
||||||
|
my $resultsperpage = $query->param('resultsperpage') || 20;
|
||||||
my $authid = $query->param('authid');
|
my $authid = $query->param('authid');
|
||||||
$startfrom = 0 if ( !defined $startfrom );
|
|
||||||
my ( $template, $loggedinuser, $cookie );
|
my ( $template, $loggedinuser, $cookie );
|
||||||
my $resultsperpage;
|
|
||||||
|
|
||||||
my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']});
|
my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']});
|
||||||
|
|
||||||
|
@ -57,8 +57,6 @@ if ( $op eq "do_search" ) {
|
||||||
my @value = $query->multi_param('value');
|
my @value = $query->multi_param('value');
|
||||||
$value[0] ||= q||;
|
$value[0] ||= q||;
|
||||||
|
|
||||||
$resultsperpage = $query->param('resultsperpage');
|
|
||||||
$resultsperpage = 20 if ( !defined $resultsperpage );
|
|
||||||
my @tags;
|
my @tags;
|
||||||
my $builder = Koha::SearchEngine::QueryBuilder->new(
|
my $builder = Koha::SearchEngine::QueryBuilder->new(
|
||||||
{ index => $Koha::SearchEngine::AUTHORITIES_INDEX } );
|
{ index => $Koha::SearchEngine::AUTHORITIES_INDEX } );
|
||||||
|
@ -66,13 +64,8 @@ if ( $op eq "do_search" ) {
|
||||||
{ index => $Koha::SearchEngine::AUTHORITIES_INDEX } );
|
{ index => $Koha::SearchEngine::AUTHORITIES_INDEX } );
|
||||||
my $search_query = $builder->build_authorities_query_compat( \@marclist, \@and_or,
|
my $search_query = $builder->build_authorities_query_compat( \@marclist, \@and_or,
|
||||||
\@excluding, \@operator, \@value, $authtypecode, $orderby );
|
\@excluding, \@operator, \@value, $authtypecode, $orderby );
|
||||||
# use Data::Dumper;
|
|
||||||
# die Dumper(\@marclist, \@and_or,
|
|
||||||
# \@excluding, \@operator, \@value, $authtypecode, $orderby, $query);
|
|
||||||
# The searchengine API expects pages to start at page 1
|
|
||||||
$startfrom = $startfrom // 0;
|
|
||||||
my ( $results, $total ) =
|
my ( $results, $total ) =
|
||||||
$searcher->search_auth_compat( $search_query, $startfrom+1, $resultsperpage );
|
$searcher->search_auth_compat( $search_query, $startfrom, $resultsperpage );
|
||||||
( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
||||||
{
|
{
|
||||||
template_name => "opac-authoritiessearchresultlist.tt",
|
template_name => "opac-authoritiessearchresultlist.tt",
|
||||||
|
@ -84,48 +77,44 @@ if ( $op eq "do_search" ) {
|
||||||
);
|
);
|
||||||
|
|
||||||
# multi page display gestion
|
# multi page display gestion
|
||||||
my $displaynext = 0;
|
my $value_url = uri_escape_utf8($value[0]);
|
||||||
my $displayprev = $startfrom;
|
my $base_url = "opac-authorities-home.pl?"
|
||||||
$total ||= 0;
|
."marclist=$marclist[0]"
|
||||||
if ( ( $total - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) {
|
."&and_or=$and_or[0]"
|
||||||
$displaynext = 1;
|
."&excluding=$excluding[0]"
|
||||||
}
|
."&operator=$operator[0]"
|
||||||
|
."&value=$value_url"
|
||||||
|
."&resultsperpage=$resultsperpage"
|
||||||
|
."&type=opac"
|
||||||
|
."&op=do_search"
|
||||||
|
."&authtypecode=$authtypecode"
|
||||||
|
."&orderby=$orderby";
|
||||||
|
|
||||||
my @field_data = (
|
my $from = ( $startfrom - 1 ) * $resultsperpage + 1;
|
||||||
{ term => "marclist", val => $marclist[0] },
|
|
||||||
{ term => "and_or", val => $and_or[0] },
|
|
||||||
{ term => "excluding", val => $excluding[0] },
|
|
||||||
{ term => "operator", val => $operator[0] },
|
|
||||||
{ term => "value", val => $value[0] },
|
|
||||||
);
|
|
||||||
|
|
||||||
my @numbers = ();
|
|
||||||
|
|
||||||
if ( $total > $resultsperpage ) {
|
|
||||||
for ( my $i = 1 ; $i < $total / $resultsperpage + 1 ; $i++ ) {
|
|
||||||
if ( $i < 16 ) {
|
|
||||||
my $highlight = 0;
|
|
||||||
( $startfrom == ( $i - 1 ) ) && ( $highlight = 1 );
|
|
||||||
push @numbers,
|
|
||||||
{
|
|
||||||
number => $i,
|
|
||||||
highlight => $highlight,
|
|
||||||
searchdata => \@field_data,
|
|
||||||
startfrom => ( $i - 1 )
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
my $from = $startfrom * $resultsperpage + 1;
|
|
||||||
my $to;
|
my $to;
|
||||||
|
if ( !defined $total ) {
|
||||||
|
$total = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if ( $total < ( ( $startfrom + 1 ) * $resultsperpage ) ) {
|
if ( $total < $startfrom * $resultsperpage ) {
|
||||||
$to = $total;
|
$to = $total;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$to = ( ( $startfrom + 1 ) * $resultsperpage );
|
$to = $startfrom * $resultsperpage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$template->param( result => $results ) if $results;
|
||||||
|
|
||||||
|
$template->param(
|
||||||
|
pagination_bar => pagination_bar(
|
||||||
|
$base_url, int( $total / $resultsperpage ) + 1,
|
||||||
|
$startfrom, 'startfrom'
|
||||||
|
),
|
||||||
|
total => $total,
|
||||||
|
from => $from,
|
||||||
|
to => $to,
|
||||||
|
);
|
||||||
|
|
||||||
unless (C4::Context->preference('OPACShowUnusedAuthorities')) {
|
unless (C4::Context->preference('OPACShowUnusedAuthorities')) {
|
||||||
# TODO implement usage counts
|
# TODO implement usage counts
|
||||||
# my @usedauths = grep { $_->{used} > 0 } @$results;
|
# my @usedauths = grep { $_->{used} > 0 } @$results;
|
||||||
|
@ -162,22 +151,12 @@ if ( $op eq "do_search" ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$template->param( result => $results ) if $results;
|
|
||||||
$template->param( orderby => $orderby );
|
$template->param( orderby => $orderby );
|
||||||
$template->param(
|
$template->param(
|
||||||
startfrom => $startfrom,
|
startfrom => $startfrom,
|
||||||
displaynext => $displaynext,
|
|
||||||
displayprev => $displayprev,
|
|
||||||
resultsperpage => $resultsperpage,
|
resultsperpage => $resultsperpage,
|
||||||
startfromnext => $startfrom + 1,
|
|
||||||
startfromprev => $startfrom - 1,
|
|
||||||
searchdata => \@field_data,
|
|
||||||
countfuzzy => !(C4::Context->preference('OPACShowUnusedAuthorities')),
|
countfuzzy => !(C4::Context->preference('OPACShowUnusedAuthorities')),
|
||||||
total => $total,
|
|
||||||
from => $from,
|
|
||||||
to => $to,
|
|
||||||
resultcount => scalar @$results,
|
resultcount => scalar @$results,
|
||||||
numbers => \@numbers,
|
|
||||||
authtypecode => $authtypecode,
|
authtypecode => $authtypecode,
|
||||||
authtypetext => $authority_types->find($authtypecode)->authtypetext,
|
authtypetext => $authority_types->find($authtypecode)->authtypetext,
|
||||||
isEDITORS => $authtypecode eq 'EDITORS',
|
isEDITORS => $authtypecode eq 'EDITORS',
|
||||||
|
|
Loading…
Reference in a new issue