Bugzilla – Attachment 180448 Details for
Bug 36275
The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36275: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt
Bug-36275-The-displayed-values-for-Client-ID-and-S.patch (text/plain), 4.34 KB, created by
Nick Clemens (kidclamp)
on 2025-04-03 08:54:09 UTC
(
hide
)
Description:
Bug 36275: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2025-04-03 08:54:09 UTC
Size:
4.34 KB
patch
obsolete
>From 5371e48a35d765f74a99a91cc4c7be3352325c19 Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Wed, 2 Apr 2025 10:44:52 +0200 >Subject: [PATCH] Bug 36275: The displayed values for Client ID and Secret need > copy to clipboard buttons in apikeys.tt >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >This patch adds: >- A new include with a prepared button that sets the passed > copy_to_clipboard_value as the data-value attribute. >- A script, which is an IIFE that can also be used elsewhere that then > adds event listeners for clicks on the above buttons (or other buttons > with data-copy-to-clipboard) >- The included buttons and the associated js to apikeys.tt. > >To test: >1) Activate the RESTOAuth2ClientCredentials syspref. >2) Search for a patron, e.g. 42 >3) Go to more -> Manage API keys >4) Generate a new client id/key pair >5) Notice that there are copy to clipboard buttons next to the client id > and secret >6) Click one of them >7) Paste your clipboard into the top search input for example >8) Verify it works and the value is identical to the value you copied >9) Sign off > >https://bugs.koha-community.org/show_bug.cgi?id=36275 >Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com> >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com> >--- > .../en/includes/copy-to-clipboard-button.inc | 1 + > .../prog/en/modules/members/apikeys.tt | 3 +++ > .../intranet-tmpl/prog/js/copyToClipboard.js | 23 +++++++++++++++++++ > 3 files changed, 27 insertions(+) > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/copy-to-clipboard-button.inc > create mode 100644 koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/copy-to-clipboard-button.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/copy-to-clipboard-button.inc >new file mode 100644 >index 00000000000..2c5f5746d91 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/copy-to-clipboard-button.inc >@@ -0,0 +1 @@ >+<button type="button" class="btn btn-xs btn-primary" data-copy-to-clipboard data-value="[% copy_to_clipboard_value | html %]"> <i class="fa-solid fa-clipboard"></i> Copy to clipboard </button> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt >index 2763aa1ee08..c0ee02bd221 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt >@@ -48,10 +48,12 @@ > <li> > <span class="label">Client ID: </span> > [% fresh_api_key.client_id | html %] >+ [% INCLUDE 'copy-to-clipboard-button.inc' copy_to_clipboard_value = fresh_api_key.client_id %] > </li> > <li> > <span class="label">Secret: </span> > [% fresh_api_key.plain_text_secret | html %] >+ [% INCLUDE 'copy-to-clipboard-button.inc' copy_to_clipboard_value = fresh_api_key.plain_text_secret %] > </li> > </ol> > </div> >@@ -137,6 +139,7 @@ > [% MACRO jsinclude BLOCK %] > [% INCLUDE 'str/members-menu.inc' %] > [% Asset.js("js/members-menu.js") | $raw %] >+ [% Asset.js("js/copyToClipboard.js") | $raw %] > <script> > $(document).ready(function () { > $(".delete").on("click", function (e) { >diff --git a/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js b/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js >new file mode 100644 >index 00000000000..e339958273e >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js >@@ -0,0 +1,23 @@ >+(() => { >+ const copyToClipboardButtons = document.querySelectorAll( >+ "[data-copy-to-clipboard]" >+ ); >+ if (copyToClipboardButtons.length) { >+ const copyToClipboard = e => { >+ const target = e.target; >+ if (!(target instanceof HTMLButtonElement)) { >+ return; >+ } >+ const { value } = target.dataset; >+ if (!value) { >+ return; >+ } >+ >+ navigator.clipboard.writeText(value); >+ }; >+ >+ copyToClipboardButtons.forEach(copyToClipboardButton => { >+ copyToClipboardButton.addEventListener("click", copyToClipboard); >+ }); >+ } >+})(); >-- >2.39.5
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 36275
:
180263
|
180299
|
180307
|
180336
|
180339
|
180352
|
180368
|
180369
|
180370
|
180405
|
180406
|
180407
| 180448 |
180449
|
180450