Bugzilla – Attachment 127459 Details for
Bug 29439
Add browse interface to staff client
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29439: WIP
Bug-29439-WIP.patch (text/plain), 12.23 KB, created by
Nick Clemens (kidclamp)
on 2021-11-08 20:30:17 UTC
(
hide
)
Description:
Bug 29439: WIP
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2021-11-08 20:30:17 UTC
Size:
12.23 KB
patch
obsolete
>From 0263921746e0f93f6a147bcdcbb0387990af05c6 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Mon, 8 Nov 2021 20:29:21 +0000 >Subject: [PATCH] Bug 29439: WIP > >This is a copy and paste to get a 'working' start > >Needs updates for styling/code/etc >--- > catalogue/browse.pl | 113 +++++++++++++++++ > .../prog/css/src/staff-global.scss | 51 ++++++++ > .../prog/en/modules/catalogue/browse.tt | 119 ++++++++++++++++++ > 3 files changed, 283 insertions(+) > create mode 100644 catalogue/browse.pl > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt > >diff --git a/catalogue/browse.pl b/catalogue/browse.pl >new file mode 100644 >index 0000000000..ea611a32b1 >--- /dev/null >+++ b/catalogue/browse.pl >@@ -0,0 +1,113 @@ >+#!/usr/bin/perl >+ >+# This is a CGI script that handles the browse feature. >+ >+# Copyright 2015 Catalyst IT >+# >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+use CGI qw ( -utf8 ); >+ >+use C4::Auth qw( get_template_and_user ); >+use C4::Context; >+use C4::Output qw( output_html_with_http_headers ); >+ >+use Koha::SearchEngine::Elasticsearch; >+use Koha::SearchEngine::Elasticsearch::Browse; >+use Koha::SearchEngine::Elasticsearch::QueryBuilder; >+use Koha::SearchEngine::Elasticsearch::Search; >+ >+use JSON qw( to_json ); >+use Unicode::Collate; >+ >+my $query = CGI->new; >+binmode STDOUT, ':encoding(UTF-8)'; >+ >+# If calling via JS, 'api' is used to route to correct step in process >+my $api = $query->param('api'); >+ >+if ( !$api ) { >+ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( >+ { >+ template_name => "catalogue/browse.tt", >+ query => $query, >+ type => "intranet", >+ flagsrequired => { catalogue => 1 }, >+ } >+ ); >+ $template->param(); >+ output_html_with_http_headers $query, $cookie, $template->output; >+ >+ >+} >+elsif ( $api eq 'GetSuggestions' ) { >+ my $fuzzie = $query->param('fuzziness'); >+ my $prefix = $query->param('prefix'); >+ my $field = $query->param('field'); >+ >+# Under a persistent environment, we should probably not reinit this every time. >+ my $browser = Koha::SearchEngine::Elasticsearch::Browse->new( { index => 'biblios' } ); >+ my $res = $browser->browse( $prefix, $field, { fuzziness => $fuzzie } ); >+ >+ my %seen; >+ my @sorted = >+ grep { !$seen{$_->{text}}++ } >+ sort { lc($a->{text}) cmp lc($b->{text}) } @$res; >+ print CGI::header( >+ -type => 'application/json', >+ -charset => 'utf-8' >+ ); >+ print to_json( \@sorted ); >+} >+elsif ( $api eq 'GetResults' ) { >+ my $term = $query->param('term'); >+ my $field = $query->param('field'); >+ >+ my $builder = Koha::SearchEngine::Elasticsearch::QueryBuilder->new( { index => 'biblios' } ); >+ my $searcher = Koha::SearchEngine::Elasticsearch::Search->new( >+ { index => $Koha::SearchEngine::Elasticsearch::BIBLIOS_INDEX } ); >+ >+ my $query = { query => { term => { $field.".raw" => $term } } } ; >+ my $results = $searcher->search( $query, undef, 500 ); >+ my @output = _filter_for_output( $results->{hits}->{hits} ); >+ print CGI::header( >+ -type => 'application/json', >+ -charset => 'utf-8' >+ ); >+ print to_json( \@output ); >+} >+ >+# This should probably be done with some templatey gizmo >+# in the future. >+sub _filter_for_output { >+ my ($records) = @_; >+ my @output; >+ foreach my $rec (@$records) { >+ my $biblionumber = $rec->{_id}; >+ my $biblio = Koha::Biblios->find( $biblionumber ); >+ next unless $biblio; >+ push @output, >+ { >+ id => $biblionumber, >+ title => $biblio->title, >+ subtitle => $biblio->subtitle, >+ author => $biblio->author, >+ }; >+ }; >+ my @sorted = sort { lc($a->{title}) cmp lc($b->{title}) } @output; >+ return @sorted; >+} >diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >index fa3421dee1..9acbfa65aa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >+++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss >@@ -4482,6 +4482,57 @@ input.renew { > top: 0; > } > >+/*browse search*/ >+ >+#browse-resultswrapper { >+ margin-top: 15px; >+} >+#browse-searchfuzziness { >+ padding: 15px 0; >+} >+ >+#browse-searchresults, #browse-selectionsearch { >+ border: 1px solid #E3E3E3; >+ border-radius: 4px; >+ padding: 0; >+ margin-bottom: 2em; >+} >+ >+#browse-selectionsearch p.subjects { >+ font-size: 0.9em; >+ margin-bottom: 0; >+} >+ >+#browse-selectionsearch h4 { >+ margin: 0; >+} >+ >+#browse-suggestionserror { >+ margin-top: 1rem; >+} >+ >+#browse-search { >+ .loading { >+ text-align: center; >+ >+ img { >+ margin:0.5em 0; >+ position: relative; >+ left: -5px; >+ } >+ } >+} >+ >+#card_template { >+ display: none; >+} >+ >+.result-title { >+ margin-bottom: .4rem; >+ margin-left: 1rem; >+} >+/*end browse search*/ >+ > div#makechart ol li { > list-style: none; > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt >new file mode 100644 >index 0000000000..1af64682eb >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/browse.tt >@@ -0,0 +1,119 @@ >+[% USE Koha %] >+[% USE Asset %] >+[% USE raw %] >+[% SET footerjs = 1 %] >+ >+[% INCLUDE 'doc-head-open.inc' %] >+ >+<title>Browse the catalog › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> >+[% INCLUDE 'doc-head-close.inc' %] >+</head> >+ >+<body id="browse_results" class="catalog"> >+[% INCLUDE 'header.inc' %] >+[% INCLUDE 'cat-search.inc' %] >+ >+[% IntranetCoce = Koha.Preference('IntranetCoce') %] >+[% CoceProviders = Koha.Preference('CoceProviders') %] >+[% CoceHost = Koha.Preference('CoceHost') %] >+ >+<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumbs"> >+ <ol class="breadcrumb"> >+ <li class="breadcrumb-item"> >+ <a href="/cgi-bin/koha/opac-main.pl">Home</a> >+ </li> >+ <li class="breadcrumb-item active"> >+ <a href="#" aria-current="page">Browse search</a> >+ </li> >+ </ol> >+</nav> <!-- /#breadcrumbs --> >+ >+<div class="main container-fluid"> >+ <div class="row"> >+ <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2"> >+ [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && Koha.Preference('OpacBrowseSearch') %] >+ <div id="browse-search" class="maincontent"> >+ <h1>Browse search</h1> >+ >+ <form> >+ <legend class="sr-only">Browse search</legend> >+ <div class="form-row"> >+ <div class="col"> >+ <label for="browse-searchterm">Search for:</label> >+ <input type="search" id="browse-searchterm" class="form-control" name="searchterm" value="" /> >+ </div> <!-- /.col-12.col-sm-9 --> >+ <div class="col-auto"> >+ <label for="browse-searchfield">Search type:</label> >+ <select id="browse-searchfield" name="searchfield" class="form-control"> >+ <option value="author">Author</option> >+ <option value="subject">Subject</option> >+ <option value="title">Title</option> >+ </select> >+ </div> <!-- /.col-auto --> >+ </div> <!-- /.form-row --> >+ <div class="form-row"> >+ <div class="col"> >+ <div id="browse-searchfuzziness"> >+ <div class="form-check form-check-inline"> >+ <label for="exact" class="form-check-label"> >+ <input class="form-check-input" type="radio" name="browse-searchfuzziness" id="exact" value="0" />Exact >+ </label> >+ </div> <!-- /.form-check.form-check-inline --> >+ <div class="form-check form-check-inline"> >+ <label for="fuzzy" class="form-check-label"> >+ <input class="form-check-input" type="radio" name="browse-searchfuzziness" id="fuzzy" value="1" checked="checked" /> Fuzzy >+ </label> >+ </div> <!-- /.form-check.form-check-inline --> >+ <div class="form-check form-check-inline"> >+ <label for="reallyfuzzy" class="form-check-label"> >+ <input class="form-check-input" type="radio" name="browse-searchfuzziness" id="reallyfuzzy" value="2" /> Really fuzzy >+ </label> >+ </div> <!-- /.form-check.form-check-inline --> >+ </div> <!-- /#browse-searchfuzziness --> >+ </div> <!-- /.col --> >+ </div> <!-- /.form-row --> >+ <div class="form-row"> >+ <div class="col"> >+ <button class="btn btn-primary" type="submit" accesskey="s">Search</button> >+ </div> >+ </div> >+ </form> >+ >+ <div id="browse-suggestionserror" class="alert alert-warning d-none" role="alert"> >+ An error occurred, please try again. >+ </div> >+ >+ <div id="browse-resultswrapper" class="d-none"> >+ <h2>Results</h2> >+ >+ <div class="loading d-none"><img src="[% interface | html %]/[% theme |html %]/images/loading.gif" alt=""> Loading</div> >+ <div class="alert alert-warning no-results d-none" role="alert">Sorry, there are no results. Try a different search term.</div> >+ >+ <div class="accordion" id="browse-searchresults"> >+ <div id="card_template" class="card"> >+ <div class="card-header" id="heading"> >+ <a class="expand-result" href="#" data-toggle="collapse" aria-expanded="false" aria-controls="collapse"> >+ </a> >+ </div> <!-- /#heading.card-header --> >+ <div id="collapse" class="collapse" aria-labelledby="heading" data-parent="#browse-searchresults"> >+ <div class="card-body"> >+ </div> >+ </div> <!-- /#collapse.collapse --> >+ </div> <!-- /#card_template.card --> >+ </div> <!-- /#browse-searchresults.accordion --> >+ </div><!-- / #browse-resultswrapper --> >+ </div><!-- /#browse-search --> >+ [% ELSE %] >+ <h1>Browse search</h1> >+ <div class="alert alert-info"> >+ This feature is not enabled >+ </div> >+ [% END %] >+ >+ </div><!-- / .col/col-10 --> >+ </div><!-- / .row --> >+ >+[% MACRO jsinclude BLOCK %] >+ [% Asset.js("js/browse.js") | $raw %] >+[% END %] >+[% INCLUDE 'intranet-bottom.inc' %] >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 29439
: 127459