-
Notifications
You must be signed in to change notification settings - Fork 51
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
base: master
Are you sure you want to change the base?
Conversation
I have multiple comments:
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: Also you need to correct the date in the Copyright section. |
@natacha-beck do you actually observed the whitespace in copied string with your browser (safari I guess?), or trimming is 'just in case'?) |
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. |
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 |
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) |
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 |
Ok, done, please, check the changes. I can rebase if you like |
66c3b81
to
2602752
Compare
2602752
to
05bf981
Compare
There was a problem hiding this 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
Ok, a helper added |
There was a problem hiding this 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" |
There was a problem hiding this comment.
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' + |
There was a problem hiding this comment.
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.
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. |
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. |
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.
|
see #1345