Koha/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-topissues.inc
Owen Leonard 9cb89b4639 Bug 20168: Update of the OPAC bootstrap template to bootstrap v4
This patch updates the version of Bootstrap in the OPAC from 2.3.1 to
4.5.0. The Bootstrap JavaScript files have been replaced with custom
builds of the 4.5.0 JavaScript source files. The Bootstrap CSS is now
built into the OPAC CSS by loading the required Bootstrap 4.5.0 SCSS
files in node_modules.

OPAC SCSS now starts with Bootstrap customizations:

/* Bootstrap variable customizations */
$headings-color: #727272;
...

Followed by loading the necessary Bootstrap SCSS files:

/* Bootstrap imports */
@import "../../../../../node_modules/bootstrap/scss/functions";
@import "../../../../../node_modules/bootstrap/scss/variables";
...

Followed by our CSS. The build process for generating compiled CSS now
creates a file which bundles Bootstrap CSS and ours. Removed from the
Koha source: Bootstrap CSS files, Bootstrap "glyphicons" images.

The upgrade to Bootstrap 4 involved a lot of markup changes to conform
with new Bootstrap classes, especially in classes related to the grid.
Besides duplicating the grid we used before, this upgrade adds some new
features made possible by Bootstrap 4.5's use of flexbox as a layout
tool. This includes custom ordering of columns based on class names:
https://getbootstrap.com/docs/4.5/layout/grid/#order-classes.

Other areas where the most changes have been made: Navigation menus,
breadcrumb menus, buttons, dropdowns.

Bootstrap's JavaScript file is now "bootstrap.bundle.min.js" to reflect
the fact that a required JavaScript asset is now distributed separately
in Bootstrap 4. The "bundle" version includes Popper.js.

Unrelated changes: Indentation corrections, removal of invalid
"//<![CDATA[" markers, removal of invalid script type attributes.

To test, apply the patch and run 'yarn install' to install Bootstrap as
an npm module. Run 'yarn build --view opac' to regenerate the OPAC CSS.

Test as many aspect of the OPAC as possible, viewing pages at various
browser widths to confirm that everything adjusts well. Test with
various OPAC interface system preferences enabled and disabled.

Test self checkout and self checkin.

Known issues: RTL support has not been updated.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2020-09-09 14:13:03 +02:00

94 lines
5.6 KiB
HTML

[% USE Koha %]
[% USE Branches %]
[% PROCESS 'html_helpers.inc' %]
<div id="search-facets">
<form method="get" action="/cgi-bin/koha/opac-topissues.pl">
<h2><a href="#" class="menu-collapse-toggle">Refine your search</a></h2>
<ul class="menu-collapse">
<li><label for="limit">Show the top </label>
<select name="limit" id="limit">
[% IF ( limit == 10 ) %]<option value ="10" selected="selected">10 titles</option>[% ELSE %]<option value="10">10 titles</option>[% END %]
[% IF ( limit == 15 ) %]<option value ="15" selected="selected">15 titles</option>[% ELSE %]<option value="15">15 titles</option>[% END %]
[% IF ( limit == 20 ) %]<option value ="20" selected="selected">20 titles</option>[% ELSE %]<option value="20">20 titles</option>[% END %]
[% IF ( limit == 30 ) %]<option value ="30" selected="selected">30 titles</option>[% ELSE %]<option value="30">30 titles</option>[% END %]
[% IF ( limit == 40 ) %]<option value ="40" selected="selected">40 titles</option>[% ELSE %]<option value="40">40 titles</option>[% END %]
[% IF ( limit == 50 ) %]<option value ="50" selected="selected">50 titles</option>[% ELSE %]<option value="50">50 titles</option>[% END %]
[% IF ( limit == 100 ) %]<option value ="100" selected="selected">100 titles</option>[% ELSE %]<option value="100">100 titles</option>[% END %]
</select></li>
[% IF Branches.all.size > 1 %]
<li><label for="branch">From: </label>
<select name="branch" id="branch">
<option value="">All libraries</option>
[% PROCESS options_for_libraries libraries => Branches.all( selected => branch ) %]
</select></li>
[% END %]
[% AdvancedSearchTypes = Koha.Preference('AdvancedSearchTypes').split('\|') %]
[% IF AdvancedSearchTypes.grep('^itemtypes$').size %]
<li>
<label for="itemtype">Limit to: </label>
<select name="itemtype" id="itemtype">
<option value="">All item types</option>
[% FOREACH itemtype IN ItemTypes.Get() %]
[% IF itemtype.itemtype == selected_itemtype %]
<option value="[% itemtype.itemtype | html %]" selected="selected">
[% ELSE %]
<option value="[% itemtype.itemtype | html %]">
[% END %]
[% itemtype.translated_description | html %]
</option>
[% END %]
</select>
</li>
[% END %]
[% IF AdvancedSearchTypes.grep('^ccode$').size %]
<li>
<label for="ccode">Limit to:</label>
<select name="ccode" id="ccode">
<option value="">All collections</option>
[% FOREACH ccode IN AuthorisedValues.Get('CCODE', 1) %]
[% IF ccode.authorised_value == selected_ccode %]
<option value="[% ccode.authorised_value | html %]" selected="selected">
[% ELSE %]
<option value="[% ccode.authorised_value | html %]">
[% END %]
[% ccode.lib | html %]
</option>
[% END %]
</select>
</li>
[% END %]
<li><label for="timeLimit">Acquired in the last:</label>
<select name="timeLimit" id="timeLimit">
[% IF ( timeLimit == 3 ) %]
<option value="3" selected="selected">3 months</option>
[% ELSE %]
<option value="3">3 months</option>
[% END %]
[% IF ( timeLimit == 6 ) %]
<option value="6" selected="selected">6 months</option>
[% ELSE %]
<option value="6">6 months</option>
[% END %]
[% IF ( timeLimit == 12 ) %]
<option value="12" selected="selected">12 months</option>
[% ELSE %]
<option value="12">12 months</option>
[% END %]
[% IF ( timeLimit == 999 ) %]
<option value="999" selected="selected">No limit</option>
[% ELSE %]
<option value="999">No limit</option>
[% END %]
</select></li>
<li>
<input type="hidden" name="do_it" value="1" />
<input type="submit" class="btn btn-primary" value="Submit" />
</li>
</ul>
</form>
</div>