-
Notifications
You must be signed in to change notification settings - Fork 20
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
permalinks: add a few bits to what's accepted in a URL, populate history events, add a copy to clipboard button #57
base: gh-pages
Are you sure you want to change the base?
Conversation
How is this coming along? I'm happy to help out here, the ability to generate a permalink would be awesome. |
Sorry, realized a bunch of this was harder than I expected, then started interviewing for a new job, which I then got (great for everything except this PR ;) The larger bit of functionality I had wanted to implement -- QR codes that link to a list's permalink, and with said QR code printed on the page, so it's easy to take last week's printout and tweak a few things -- require the use of a link shortener service to get reasonable QR codes. This, of course, brings up a ton of questions: which link shortener? Can decklist.org host its own? Do we need to use an external service that provides an API? If so, how do we manage API keys? etc. I still want to finish up this PR, because I think permalinks are a useful thing in general, but wasn't sure what the best way was to figure out any of the above stuff... |
Congratulations on the new job! 🔥 🔥 I think it is great that you split up that work into two parts. For now, I think being able to generate the permalink and save it manually somewhere is very useful. There is a popular library, clipboard.js that allows copying to clipboard, as @Nightfirecat suggested. I'm happy to try and implement that on top of this pr, if you don't mind? FWIW I've been using your |
I don't know that a library would be needed--copying to clipboard using the native Clipboard API is well-supported among major browsers and likely wouldn't need any polyfills to be achieved. |
I believe this is good to go. As requested, it's a button, and I also figured out the History API enough for it to Do The Right Thing on any modification, as far as I can tell. Demo running at https://decklist.nucleosynth.space/ |
friendly ping :) |
@Nightfirecat @april any chance you'll be able to take a look soon? Once this is merged I'd like to modify PDF output to include a hyperlink to the permalink URL, which is really useful for 'editing' a PDF you saved the other week. I have this code mostly ready-to-go. |
This looks good, but would you be willing to take out the stuff that isn't related to this specific change, e.g. the parts about pulling down the cards and parsing them? |
Oh. Hm. Now I see what you're talking about, and I'm not sure how that happened. I'll fix. |
Add a permalink href on the page, auto-populated by making edits.
3457a7a
to
a8c68cf
Compare
I've rebased this on your current gh-pages and I think it's good to go now. |
Extend permalinks to support deck names and designers.
Add a permalink href on the page, auto-populated by making edits.