From 3937c9fa9209132be74b78eb1d7aa5abb2acc62d Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 28 Sep 2023 11:30:35 +0000 Subject: [PATCH] Bug 34945: Remove the use of event attributes from OPAC clubs tab This patch removes the use of event attributes (onclick) from the template for the clubs tab shown in the OPAC to a logged-in user. These events are defined now along with the other in-page JS. The patch also makes some general improvements to the template for consistency: - Adding Bootstrap color classes to the "Enroll" and "Cancel enrollment" buttons. - Enhancing the responsive configuration to the DataTable. To test you should have a few patron clubs defined (Tools -> Patron clubs). - Apply the patch and log in to the OPAC. - On the user summary page, click the "Clubs" tab. - Test the "Enroll" and "Cancel enrollment" buttons to confirm that look correct and work as expected. - Test the responsive behavior of the page to confirm that it adjusts well to narrow browser widths. --- .../bootstrap/en/modules/clubs/clubs-tab.tt | 58 ++++++++++++------- 1 file changed, 37 insertions(+), 21 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt index 8e0f99659d..c0ade93a5c 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt @@ -8,10 +8,10 @@ Clubs - Name + Name Description Date enrolled -   +   @@ -24,7 +24,7 @@ [% e.date_enrolled | $KohaDates %] [% IF e.club.club_template.is_enrollable_from_opac %] - [% ELSE %] @@ -45,9 +45,9 @@ - + - + @@ -59,7 +59,7 @@
NameName Description  
[% c.description | html %] [% IF !c.club_template.is_email_required || ( c.club_template.is_email_required && borrower.notice_email_address ) %] - [% ELSE %] @@ -102,19 +102,35 @@ function cancelEnrollment( id ) { }); return false; } -var Tables = $("#clubs-table-enrolled,#clubs-table-unenrolled"); -Tables.each(function(){ - $(this).dataTable($.extend(true, {}, dataTablesDefaults, { - "searching": false, - "paging": false, - "info": false, - "autoWidth": false, - "responsive": { - "details": { "type": 'column',"target": -1 } - }, - "columnDefs": [ - { "className": 'dtr-control', "orderable": false, "targets": -1 } - ], - })); -}); + + var Tables = $("#clubs-table-enrolled,#clubs-table-unenrolled"); + Tables.each(function(){ + $(this).dataTable($.extend(true, {}, dataTablesDefaults, { + "searching": false, + "paging": false, + "info": false, + "autoWidth": false, + "responsive": { + "details": { "type": "column", "target": -1 } + }, + "columnDefs": [ + { "orderable": false, "searchable": false, "targets": [ 'NoSort' ] }, + { "className": "dtr-control", "orderable": false, "targets": -1 }, + ], + })); + }); + + $(".cancel_enrollment").on("click", function(e){ + e.preventDefault(); + let clubid = $(this).data("id"); + cancelEnrollment( clubid ); + }); + + $(".load_enrollment").on("click", function(e){ + e.preventDefault(); + let clubid = $(this).data("id"); + loadEnrollmentForm( clubid ); + }); + + -- 2.30.2