It would be a quality of life improvement and make the copying less error prone as well. I can't count the number of times I inserted a leading space into a field for an endpoint test w/o noticing.
Created attachment 180263 [details] [review] Bug 36725: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt 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
If this fails because of the security context of localhost, try the ktd_proxy. With it, it works.
Created attachment 180299 [details] [review] Bug 36275: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt 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>
Created attachment 180307 [details] [review] Bug 36275: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt 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>
Created attachment 180336 [details] [review] Bug 36275: (follow-up) Add tooltip feedback This patch adds some code to the copytoClipBoard function so that it triggers a Bootstrap tooltip with the text "Copied to clipboard", providing feedback to the user that something has happened. The tooltip self-destructs after a few seconds.
Created attachment 180339 [details] [review] Bug 36275: (follow-up) Add tooltip feedback This patch adds some code to the copytoClipBoard function so that it triggers a Bootstrap tooltip with the text "Copied to clipboard", providing feedback to the user that something has happened. The tooltip self-destructs after a few seconds. -- This is an awesome improvement, thanks Owen! Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de>
Created attachment 180352 [details] [review] Bug 36275: (follow-up) Only show tooltip on successful copy Question is whether we should display anything on the failure case as well? Test plan stays the same.
Created attachment 180368 [details] [review] Bug 36275: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt 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>
Created attachment 180369 [details] [review] Bug 36275: (follow-up) Add tooltip feedback This patch adds some code to the copytoClipBoard function so that it triggers a Bootstrap tooltip with the text "Copied to clipboard", providing feedback to the user that something has happened. The tooltip self-destructs after a few seconds. Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de> Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com>
Created attachment 180370 [details] [review] Bug 36275: (follow-up) Only show tooltip on successful copy Question is whether we should display anything on the failure case as well? Test plan stays the same. Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com>
(In reply to Emmanuel Bétemps from comment #10) > Created attachment 180370 [details] [review] [review] > Bug 36275: (follow-up) Only show tooltip on successful copy > > Question is whether we should display anything on the failure case as well? I saw only successful copies so I don't know how it behaves (i.e what is displayed) when there's a failure with the tooltip how could I test that case ?
I think the easiest way to show that tooltip is not shown on error is to just add a line like: `throw new Error()` below the awaited copy to clipboard (in the try block). Then, the tooltip shouldn't display.
Hi, I added the sentence to mask the mention in case of error; here is what it gives try { await navigator.clipboard.writeText(value); throw new Error() } catch (_) { return; the tooltip appears and when I click, there is no mention 'Copied to clipboard' BUT the clientID or Secret has been copied to go further, I wrote something else in the file and it really broke the copy-feature
Yes, that is expected. The writeText method is still successful, we just recreate the behaviour of the failing Promise from: `await navigator.clipboard.writeText(value);`. So to actually mock the real behaviour, you would need to remove the above line temporarily.
Btw, patch doesn't apply means: git bz apply <bug number> throws an error.
Created attachment 180405 [details] [review] Bug 36275: The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt 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>
Created attachment 180406 [details] [review] Bug 36275: (follow-up) Add tooltip feedback This patch adds some code to the copytoClipBoard function so that it triggers a Bootstrap tooltip with the text "Copied to clipboard", providing feedback to the user that something has happened. The tooltip self-destructs after a few seconds. Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de> Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com>
Created attachment 180407 [details] [review] Bug 36275: (follow-up) Only show tooltip on successful copy Question is whether we should display anything on the failure case as well? Test plan stays the same. Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com>
(In reply to Paul Derscheid from comment #15) > Btw, patch doesn't apply means: git bz apply <bug number> throws an error. ok !