Bugzilla – Attachment 71540 Details for
Bug 19939
Move cataloging Z39.50 results actions into menu
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19939 - Move cataloging Z39.50 results actions into menu
Bug-19939---Move-cataloging-Z3950-results-actions-.patch (text/plain), 8.52 KB, created by
Claire Gravely
on 2018-02-13 14:35:23 UTC
(
hide
)
Description:
Bug 19939 - Move cataloging Z39.50 results actions into menu
Filename:
MIME Type:
Creator:
Claire Gravely
Created:
2018-02-13 14:35:23 UTC
Size:
8.52 KB
patch
obsolete
>From feed14c8801f5c371e0f7c3443fe9baf68ea8f6f Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 9 Jan 2018 19:11:12 +0000 >Subject: [PATCH] Bug 19939 - Move cataloging Z39.50 results actions into menu > >This patch modifies the template which displays cataloging Z39.50 >search results so that the "MARC," "Card," and "Import" links are moved >out of separate table cells and into one menu. > >The old menu which would appear when any table cell is clicked has been >removed, and code added to display the same Bootstrap menu if a table >cell is clicked. > >To test, apply the patch and go to Cataloging -> New from Z39.50/SRU. > >- Perform a Z39.50 search which will return more than one result. >- Confirm that clicking the "Actions" button triggers a drop-down menu. > - Confirm that the links in the menu trigger actions for the correct > bibliographic record. >- Confirm that clicking any other table cell in the table of results > will trigger the display of the same menu. > - Confirm that this menu works correctly for the correct record. > >Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de> >--- > .../prog/en/modules/cataloguing/z3950_search.tt | 79 ++++++++++++++-------- > 1 file changed, 52 insertions(+), 27 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >index 33053ae..ee05d96 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >@@ -4,10 +4,6 @@ > [% INCLUDE 'doc-head-close.inc' %] > <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables_[% KOHA_VERSION %].css" /> > <style type="text/css"> >-.linktools { background-color:#FFF;border-top:1px solid #DDD; border-left: 1px solid #DDD; border-right: 1px solid #666; border-bottom:1px solid #666;display: none; white-space: nowrap;} >-.linktools a { font-size : 85%; text-decoration:none; padding:.3em;;background-color:#FFF; display:block;float:left;border-right:1px solid #DDD;} >-.linktools a:hover { background-color:#EEE;color:#CC3300;border-right:1px solid #CCC;} >-tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : transparent; } > #dataPreview { width : 90%; top: 5%; } .modal-body { max-height: 380px; } .modal-header { padding: 0 14px; } @media (max-width: 767px) { #dataPreview { margin: 0; width : auto; } } > </style> > </head> >@@ -104,24 +100,32 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > <th>Edition</th> > <th>ISBN</th> > <th>LCCN</th> >- <th>MARC</th> >- <th>Card</th> >- <th> </th> >+ <th>Actions</th> > </tr></thead> > <tbody>[% FOREACH breeding_loo IN breeding_loop %] > [% IF ( breeding_loo.breedingid ) %] > > <tr id="row[% breeding_loo.breedingid %]"> >- <td>[% breeding_loo.server %] <div class="linktools"><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewData">Preview MARC</a> <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.breedingid %]" class="previewData">Preview card</a> <a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-biblionumber="[% breeding_loo.biblionumber %]" data-frameworkcode="[% frameworkcode | uri %]">Import</a><a href="#" id="close_menu" title="Close this menu"> X </a></div> </td> >+ <td>[% breeding_loo.server %]</td> > <td>[% breeding_loo.title |html %]</td> > <td>[% breeding_loo.author %]</td> > <td>[% breeding_loo.date %]</td> > <td>[% breeding_loo.edition %]</td> > <td>[% breeding_loo.isbn %]</td> > <td>[% breeding_loo.lccn %]</td> >- <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewData">MARC</a></td> >- <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.breedingid %]" class="previewData">Card</a></td> >- <td><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-biblionumber="[% breeding_loo.biblionumber %]" data-frameworkcode="[% frameworkcode | uri %]">Import</a></td> >+ >+ <td> >+ <div class="dropdown"> >+ <a class="btn btn-default btn-xs dropdown-toggle" id="cataloguesearchactions[% breeding_loo.breedingid %]" role="button" data-toggle="dropdown" href="#"> >+ Actions <b class="caret"></b> >+ </a> >+ <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="cataloguesearchactions[% breeding_loo.breedingid %]"> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" class="previewData"><i class="fa fa-eye"></i> MARC preview</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.breedingid %]" title="Card" class="previewData"><i class="fa fa-eye"></i> Card preview</a></li> >+ <li><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-biblionumber="[% breeding_loo.biblionumber %]" data-frameworkcode="[% frameworkcode | uri %]"><i class="fa fa-download"></i> Import</a></li> >+ </ul> >+ </div> >+ </td> > </tr> > [% END %] > [% END %]</tbody> >@@ -189,6 +193,17 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > <script type="text/javascript"> > $(document).ready(function(){ > >+ $(".dropdown").on("hidden.bs.dropdown", function(){ >+ // Reset menu styles so that a click on the >+ // original dropdown button toggle works correctly >+ $(".dropdown").css("position","absolute"); >+ $(".dropdown-menu").css({ >+ "top" : "100%", >+ "left" : "auto", >+ "right" : 0 >+ }); >+ }); >+ > $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, { > "sDom": 't', > "aoColumnDefs": [ >@@ -198,23 +213,33 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > "aaSorting": [[ 1, "asc" ]], > "bPaginate": false > })); >- /* Inline edit/delete links */ >- $("td").click(function(event){ >- var $tgt = $(event.target); >- var row = $(this).parent(); >- $(".linktools").hide(); >- $("tr").removeClass("selected"); >- row.addClass("selected"); >- if($tgt.is("a")||$tgt.is(":nth-child(8)")||$tgt.is(":nth-child(9)")||$tgt.is(":nth-child(10)")){ >- //Don't show inline links for cells containing links of their own. >- } else { >- var position = $(this).offset(); >- var top = position.top+5; >- var left = position.left+5; >- $(".linktools",row).show().css("position","absolute").css("top",top).css("left",left); >- } >- }); > >+ /* Display actions menu anywhere the table is clicked */ >+ $("td").click(function(event){ >+ var tgt = $(event.target); >+ var row = $(this).parent(); >+ var rowid = row.attr("id"); >+ $("tr").removeClass("highlighted-row"); >+ row.addClass("highlighted-row"); >+ $(".dropdown").removeClass("open"); >+ if(tgt.is("a")||tgt.is(":nth-child(8)")){ >+ // Don't show inline links for cells containing links of their own. >+ } else { >+ event.stopPropagation(); >+ var dropdown = $(".dropdown", row); >+ dropdown.addClass("open"); >+ var position = $(this).offset(); >+ var top = position.top + 5; >+ var left = position.left + 5; >+ dropdown.css("position","unset"); >+ $(".dropdown-menu", row).css({ >+ "top" : top, >+ "left" : left, >+ "right" : "unset" >+ }); >+ >+ } >+ }); > }); > </script> > [% INCLUDE 'z3950_search.inc' %] >-- >2.1.4
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 19939
:
70393
|
71540
|
71904
|
71905