Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a button to copy api token to clipboard #1345 #1346

Open
wants to merge 19 commits into
base: master
Choose a base branch
from

Conversation

MontrealSergiy
Copy link
Contributor

see #1345

@MontrealSergiy MontrealSergiy added User Interface API API issues or Swagger description labels Aug 29, 2023
@MontrealSergiy MontrealSergiy self-assigned this Aug 29, 2023
@MontrealSergiy MontrealSergiy linked an issue Sep 18, 2023 that may be closed by this pull request
@MontrealSergiy MontrealSergiy changed the base branch from master to dev September 18, 2023 19:10
@natacha-beck
Copy link
Contributor

natacha-beck commented Nov 7, 2024

I have multiple comments:

  • The code did not work as you expected, when you copy the API key you have space (before and after the API key you even have a \n. You should trim it.
  • I do not see the necessity of having the class copiable instead you can use an ID.

I think this can do the job:

We have just generated a new API token for you (click to copy).
<p>
<div>
    <button onclick="copy_text_to_clipboard()" id="api_token"><%= @new_token %></button>
</div>
<p>

and:

function copy_text_to_clipboard() {
    navigator.clipboard.writeText($("#api_token").text().trim());
}

It gave:

image

Also you need to correct the date in the Copyright section.

@MontrealSergiy
Copy link
Contributor Author

@natacha-beck do you actually observed the whitespace in copied string with your browser (safari I guess?), or trimming is 'just in case'?)

@MontrealSergiy
Copy link
Contributor Author

MontrealSergiy commented Nov 7, 2024

I can adjust Copyrights, but fyi I think it is no longer part of cbrain development policies. Darcy had a discussion with Pierre regarding relevance of Copyright date updating, and I think he convinced everybody that copyright update is not necessary.

@natacha-beck
Copy link
Contributor

I can adjust Copyrights, but fyi I think it is no longer part of cbrain development policies. Darcy had a discussion with Pierre regarding relevance of Copyright date updating, and I think he convinced everybody that copyright update is not necessary.

So do not update it, it's fine.

@natacha-beck
Copy link
Contributor

@natacha-beck do you actually observed the whitespace in copied string with your browser (safari I guess?), or trimming is 'just in case'?)

I use chrome and yes I observe it by copying it, then when debugging and print in the console I was able to confirm that it copy some beginning white space and the a \n

@MontrealSergiy
Copy link
Contributor Author

MontrealSergiy commented Nov 7, 2024

Screenshot from 2024-11-07 16-18-46
Ok then. Trimming never hurts, I do not mind to delete all the styling.

Your solution is elegant, yet ticket requested to add a new button besides token, rather than placing token into button. I do mind strongly but if you insist I have to consult with team or at the least the requester of the feature. And even in this case I suggest to add small svg copying icon besides, and, perhaps a tooltip, e.g. with

<p>
<div>
  <button onclick="copy_text_to_clipboard()" title="Click to copy the API token to the clipboard"
     id="api_token"><%= @new_token %>
    <svg width="12" height="12" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" >
      <rect x="4" y="4" width="14" height="14" rx="2" ry="2" fill="#d1d5da" stroke="#6a737d" stroke-width="1.25" />
      <rect x="7" y="7" width="14" height="14" rx="2" ry="2" fill="#d1d5da" stroke="#6a737d" stroke-width="1.25" />
    </svg>
  </button>
</div>
<p>

@MontrealSergiy
Copy link
Contributor Author

MontrealSergiy commented Nov 7, 2024

While your token inside button suggestion has its charms, it might prevent typical 'clipboardless' copy-paste flow in unix-like OSs (selecting word with a double click and then copying it with wheel click, without need for any clipboard)

@natacha-beck
Copy link
Contributor

You can discard my comment about the API button if you want, result is the same.

Your 1st solution with the trimming is good, but you can consider to remove the copiable class that is not needed.

@MontrealSergiy
Copy link
Contributor Author

MontrealSergiy commented Nov 8, 2024

Ok, done, please, check the changes. I can rebase if you like

@MontrealSergiy MontrealSergiy changed the base branch from dev to master March 17, 2025 00:38
Copy link
Member

@prioux prioux left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restructure code

…o clipboard button
@MontrealSergiy
Copy link
Contributor Author

Ok, a helper added

@MontrealSergiy MontrealSergiy requested a review from prioux March 18, 2025 19:00
Copy link
Member

@prioux prioux left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aside from my two comments about the helper, the overall structure of this pull request is good. Isn't it much cleaner than the original design?

fill="#d1d5da" stroke="#6a737d" stroke-width="1.25"/>
</svg>'

options['class'] = options['class'].to_s + " copy_button"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're mutating the content of options['class'] here, so that the caller has now a different options hash after calling your helper. Use an intermediate variable or dup options

ok_msg = options.delete(:message)
ok_msg ||= 'Copied!'
label = options.delete(:label)
label ||= 'copy' +
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like the caller to be able to change the text label and still get the icon. Right now if I change the label, the icon disappear.

Also the default label should be the full "Copy to clipboard", because just the word "copy" is not clear enough.

@MontrealSergiy MontrealSergiy requested a review from prioux March 25, 2025 13:39
@prioux
Copy link
Member

prioux commented Mar 25, 2025

I'm not sure why you 'asked for my review' given nothing has changed since I last reviewed this PR and you have not addressed my comments about your helper.

@MontrealSergiy
Copy link
Contributor Author

MontrealSergiy commented Mar 27, 2025

I might jumped the gun here. I was mainly trying to draw attention to my comment, which is mostly about label wording but could also impact other aspects. Reading it now, I realize it's a bit long and might be better discussed in person. In the meantime, I'll try to improve the helper. I'm still uncertain: (1) whether the icon or text should come first, and (2) whether a clipboard icon (or a Unicode symbol) adds more clarity than copy symbol. But I'll do my best.

@MontrealSergiy
Copy link
Contributor Author

MontrealSergiy commented Mar 31, 2025

  1. I got feeling you initially wanted to have separate helper params for the icon, distinct from the textual label, so I included one. I called it prefix, rather than icon, as it might be text or piece code, auxiliary to label itself.

If I misunderstand you, or you changed you mind, or do not like param name it is should be pretty easy to delete. one label parameter should be enough.

  1. Also I am still on fence is clipboard icon better than copy icon, added both icon helpers just in the case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API API issues or Swagger description User Interface
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add a 'copy to clipboard' button in the API token page
3 participants