Bugzilla – Attachment 177920 Details for
Bug 38116
Patrons search description should be built from DT's search settings
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38116: Build patron search descriptions using DT's search settings
Bug-38116-Build-patron-search-descriptions-using-D.patch (text/plain), 14.55 KB, created by
Jonathan Druart
on 2025-02-12 14:36:39 UTC
(
hide
)
Description:
Bug 38116: Build patron search descriptions using DT's search settings
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-02-12 14:36:39 UTC
Size:
14.55 KB
patch
obsolete
>From 79918fd244b883ebe83a460a5110b37dd4b73ad4 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 9 Oct 2024 14:08:26 +0200 >Subject: [PATCH] Bug 38116: Build patron search descriptions using DT's search > settings > >The goal of this patch is to move the construction of the patron search description >to datatables.js in order to make it generic and reusable. > >With bug 33484 and the restoration of the state from localStorage or the >URL could lead to confusion when the table is displayed. It could also >be problematic when an hidden column has a search pattern. > >Note that if a column has a dropdown list with an option selected AND is hidden, >the description won't display the value but the code (eg. ^CPL$ if >library Centerville is selected) > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > .../prog/en/includes/patron-search.inc | 105 ++++++++---------- > koha-tmpl/intranet-tmpl/prog/js/datatables.js | 86 +++++++++++++- > 2 files changed, 133 insertions(+), 58 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >index ba17bf990f4..73530801c9e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >@@ -147,7 +147,7 @@ > [% END %] > </div> > >- <h3 style="display: none;">Patrons found for: <span class="searchpattern"></span></h3> >+ <h3 style="display: none;" class="search_description" data-prefix="[% I18N.t("Patrons found for: %s") %]"></h3> > > <div id="[% table_id | html %]_search_results" style="display:none;"> > <div class="info alert alert-info" style="display: none; margin: 1em 0;"></div> >@@ -422,6 +422,52 @@ > }; > [% END %] > >+ let additional_search_descriptions = {}; >+ [% IF display_search_description %] >+ additional_search_descriptions = { >+ main: function(){ >+ let parent_block = $("#[% search_results_block_id | html %]"); >+ let patron_search_form = get_patron_search_form(); >+ let searched = ""; >+ let pattern = patron_search_form.find(".search_patron_filter").val(); >+ if ( pattern ) { >+ let field = patron_search_form.find(".searchfieldstype_filter").find("option:selected").text(); >+ if ( patron_search_form.find(".searchtype_filter").val() == 'starts_with' ) { >+ searched += _("%s starting with '%s'".format(field, pattern)); >+ } else { >+ searched += _("%s containing '%s'".format(field, pattern)); >+ } >+ } >+ >+ if ( patron_search_form.find("select[name='sort1_filter']").val() ) { >+ searched += _(" with sort1 ") >+ if ( patron_search_form.find("select[name='sort1_filter']") ) { >+ searched += patron_search_form.find("select[name='sort1_filter'] option:selected").text(); >+ } >+ else { >+ searched += paron_search_form.find("select[name='sort1_filter']").val(); >+ } >+ } >+ if ( patron_search_form.find("select[name='sort2_filter']").val() ) { >+ searched += _(" with sort2 ") >+ if ( patron_search_form.find("select[name='sort2_filter']") ) { >+ searched += patron_search_form.find("select[name='sort2_filter'] option:selected").text(); >+ } >+ else { >+ searched += paron_search_form.find("select[name='sort2_filter']").val(); >+ } >+ } >+ return searched; >+ }, >+ surname: function(){ >+ let parent_block = $("#[% search_results_block_id | html %]"); >+ let start_with = parent_block.find(".firstletter_filter").val() >+ if (!start_with) return ""; >+ return _("Surname begins with '%s'".format(start_with)); >+ }, >+ }; >+ [% END %] >+ > [% UNLESS default_sort_column %] > [% default_sort_column = "name" %] > [% END %] >@@ -734,7 +780,7 @@ > }, > [% END %] > fixedHeader: false, >- }, typeof table_settings !== 'undefined' ? table_settings : null, 1, additional_filters, undefined, external_filter_nodes); >+ }, typeof table_settings !== 'undefined' ? table_settings : null, 1, additional_filters, undefined, external_filter_nodes, parent_block.find(".search_description"), additional_search_descriptions ); > > patron_search_form.on('submit', filter); > patron_search_form.on('submit', update_search_type); >@@ -780,7 +826,6 @@ > patron_search_form.find(".clear_search").on("click",function(e){ > e.preventDefault(); > clearFilters(); >- parent_block.find(".searchpattern").parent().hide(); > }); > > let loaded_from_state = patrons_table.data('loaded_from_state'); >@@ -813,51 +858,6 @@ > $("#searchtype").val($("#searchtype_filter").val()); > } > >- function update_search_description(){ >- let parent_block = $("#[% search_results_block_id | html %]"); >- let patron_search_form = get_patron_search_form(); >- var searched = patron_search_form.find(".searchfieldstype_filter").find("option:selected").text(); >- let pattern = patron_search_form.find(".search_patron_filter").val(); >- if ( pattern ) { >- if ( patron_search_form.find(".searchtype_filter").val() == 'starts_with' ) { >- searched += _(" starting with "); >- } else { >- searched += _(" containing "); >- } >- searched += "'" + pattern + "'"; >- } >- let firstletter_filter = parent_block.find(".firstletter_filter").val(); >- if ( firstletter_filter ) { >- searched += _(" begins with ") + "'" + firstletter_filter +"'"; >- } >- >- if ( patron_search_form.find(".categorycode_filter").val() ) { >- searched += _(" with category ") + "'" + patron_search_form.find(".categorycode_filter option:selected").text() + "'"; >- } >- if ( patron_search_form.find(".branchcode_filter").val() ) { >- searched += _(" in library ") + patron_search_form.find(".branchcode_filter option:selected").text(); >- } >- if ( patron_search_form.find("select[name='sort1_filter']").val() ) { >- searched += _(" with sort1 ") >- if ( patron_search_form.find("select[name='sort1_filter']") ) { >- searched += patron_search_form.find("select[name='sort1_filter'] option:selected").text(); >- } >- else { >- searched += paron_search_form.find("select[name='sort1_filter']").val(); >- } >- } >- if ( patron_search_form.find("select[name='sort2_filter']").val() ) { >- searched += _(" with sort2 ") >- if ( patron_search_form.find("select[name='sort2_filter']") ) { >- searched += patron_search_form.find("select[name='sort2_filter'] option:selected").text(); >- } >- else { >- searched += paron_search_form.find("select[name='sort2_filter']").val(); >- } >- } >- parent_block.find(".searchpattern").text(searched).parent().show(); >- } >- > function filter() { > let parent_block = $("#[% search_results_block_id | html %]"); > let patron_search_form = get_patron_search_form(); >@@ -906,9 +906,6 @@ > patrons_table.data('loaded_from_state', false); > first_draw = 1; // Only redirect if we are coming from here > table_dt.draw(); >- [% IF display_search_description %] >- update_search_description(); >- [% END %] > return false; > } > >@@ -928,9 +925,6 @@ > history.pushState( {}, null, window.location.href.split("?" )[0]); > [% END %] > $("#[% table_id | html %]_search_results").hide(); >- [% IF display_search_description %] >- update_search_description(); >- [% END %] > } > > // User has clicked on a letter >@@ -947,9 +941,6 @@ > [% END %] > > patrons_table.DataTable().draw(); >- [% IF display_search_description %] >- update_search_description(); >- [% END %] > } > > // modify parent window owner element >diff --git a/koha-tmpl/intranet-tmpl/prog/js/datatables.js b/koha-tmpl/intranet-tmpl/prog/js/datatables.js >index 65aea7733d0..e2b8b459dda 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/datatables.js >@@ -1224,6 +1224,69 @@ function _dt_save_restore_state(table_settings, external_filter_nodes = {}) { > }; > } > >+function update_search_description( >+ table_node, >+ table_dt, >+ additional_search_descriptions >+) { >+ let description_node = additional_search_descriptions.node; >+ let description_fns = >+ additional_search_descriptions.additional_search_descriptions; >+ let description = []; >+ let global_search = table_dt.search(); >+ if (global_search.length) { >+ description.push(__("Anywhere: %s").format(global_search)); >+ } >+ let additional_searches = []; >+ for (f in description_fns) { >+ let d = description_fns[f](); >+ if (d.length) { >+ additional_searches.push(d); >+ } >+ } >+ if (additional_searches.length) { >+ description.push(additional_searches.join(", ")); >+ } >+ let column_searches = []; >+ table_dt >+ .columns() >+ .search() >+ .each((search, i) => { >+ if (search.length) { >+ // Retrieve the value from the dropdown list if there is one >+ var visible_i = table_dt.column.index("fromData", i); >+ let option = $(table_node).find( >+ "thead tr:eq(1) th:eq(%s) select option:selected".format( >+ visible_i >+ ) >+ ); >+ if (option.length) { >+ search = $(option).text(); >+ } >+ >+ column_searches.push( >+ "%s=%s".format( >+ table_dt.column(i).header().innerHTML, >+ search >+ ) >+ ); >+ } >+ }); >+ if (column_searches.length) { >+ description.push(column_searches.join(", ")); >+ } >+ >+ if (description.length) { >+ let display = description.length ? "block" : "none"; >+ let description_str = $(description_node) >+ .data("prefix") >+ .format(description.join("<br/>")); >+ $(description_node).html(description_str).show(); >+ } else { >+ $(description_node).html("").hide(); >+ } >+} >+ > (function ($) { > /** > * Create a new dataTables instance that uses the Koha RESTful API's as a data source >@@ -1238,6 +1301,12 @@ function _dt_save_restore_state(table_settings, external_filter_nodes = {}) { > * available from the columns_settings template toolkit include > * @param {Boolean} add_filters Add a filters row as the top row of the table > * @param {Object} default_filters Add a set of default search filters to apply at table initialisation >+ * @param {Object} filters_options Build selects for the filters row, and pass their value. >+ * eg. { 1 => vendors } will build a select with the vendor list in the second column >+ * @param {Object} show_search_descriptions Whether or not display the search descriptions when the table is drawn >+ * Expect a node in which to place the descriptions. It must have a data-prefix attribute to build the description properly. >+ * @param {Object} aditional_search_descriptions Pass additional descriptions >+ * eg. { surname => () => { 'Surname with '.format($("#surname_form").val()) } } > * @return {Object} The dataTables instance > */ > $.fn.kohaTable = function ( >@@ -1246,7 +1315,9 @@ function _dt_save_restore_state(table_settings, external_filter_nodes = {}) { > add_filters, > default_filters, > filters_options, >- external_filter_nodes >+ external_filter_nodes, >+ show_search_descriptions, >+ additional_search_descriptions > ) { > var settings = null; > >@@ -1332,6 +1403,19 @@ function _dt_save_restore_state(table_settings, external_filter_nodes = {}) { > toggledClearFilter(table_dt.search(), settings.nTable.id); > }); > >+ if (show_search_descriptions !== undefined) { >+ table_dt.on("draw", function (e, settings) { >+ update_search_description(table, table_dt, { >+ node: show_search_descriptions, >+ additional_search_descriptions, >+ }); >+ }); >+ update_search_description(table, table_dt, { >+ node: show_search_descriptions, >+ additional_search_descriptions, >+ }); >+ } >+ > return table; > }; > })(jQuery); >-- >2.34.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 38116
:
172569
|
173663
|
175585
|
175600
|
176043
|
176051
|
177211
|
177212
|
177213
| 177920 |
177921
|
177922