Summer Reading
A New Blog

Pimping the Permalink

How to copy and share the permalink programatically

Until now I did not show the permalink under my posts in this blog, but in the past I had sometimes the need to pass one of the links and it was not very user-friendly, on desktop as well as on mobile. Not the One-Click experience I prefer.

My goal was to show the permalink and, even more important, provide a simple way to copy and to share. JavaScript to the rescue…

Display

As I run my blog with Hexo, I deal with EJS files. To show the permalink in my article.ejs, was quite simple. First step was to create a new partial file named permalink.ejs, to be called every time when the complete article has to be rendered:

1
2
3
<% if (!index){ %>
<%- partial('post/permalink', { class_name: 'article-permalink' }) %>
<% } %>

The partial file looked like this in this step:

1
2
3
<div class="<%= class_name %>"">
<a id="article-permalink" href="<%- post.permalink %>"><%- post.permalink %></a>
</div>

Copy

As I read a little bit about the possibilities to copy text into the clipboard via JavaScript on MDN, it became obvious that a link is not the best solution, because using the exeCommand needs to have something selected and this is difficult on anchors. Then … do it with an input:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="<%= class_name %>"">
<input id="article-permalink" value="<%- post.permalink %>" />
<a id="action-copy" class="article-action" href="javascript:copyPermalink();"></a>
</div>
<script>
var copyText = document.querySelector("#article-permalink");

//Disable Input by default
copyText.disabled = true;

function copyPermalink() {
//Enable Input
copyText.disabled = false;

//Select permalink text
copyText.select();

//Copy to clipboard
document.execCommand("copy");

//Remove selection again
copyText.blur();

//Disable Input again
copyText.disabled = true;
}
</script>

Nice, but a user feedback, that the text has been copied to the clipboard, was advisable, because nothing is more annoying, when you click somewhere and nothing seems to happen. As I hate default browser confirmations and other distracting messaging methods, I wanted to use the input itself, by fading out the link text, replace it with a message and fade in the text again:

Copy Animation

I extended my animation.styl (Hexo works with Stylus) with two keyframe animations … one for fading in, one for fading out…

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
.fade-in-500
animation: fadeIn ease 0.5s;
.fade-in-1000
animation: fadeIn ease 1s;

@keyframes fadeOut {
0% {
opacity:1;
}
100% {
opacity:0;
}
}
.fade-out-500
animation: fadeOut ease 0.5s;
.fade-out-1000
animation: fadeOut ease 1s;

… and wrote a setTimeout cascade to achive the effect:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<div class="<%= class_name %>"">
<input id="article-permalink" value="<%- post.permalink %>" />
<a class="article-action action-copy" href="javascript:copyPermalink();"></a>
</div>
<script>
var copyText = document.querySelector("#article-permalink");
copyText.disabled = true;
function copyPermalink() {
copyText.disabled = false;
copyText.select();
document.execCommand("copy");
copyText.blur();
copyText.disabled = true;

//Store original text
var permalink = copyText.value;

//Start fading out
copyText.classList.add("fade-out-500");

//Wait until animation is done
setTimeout(function(){

//Set message, remove fadout class and add start fading in
copyText.value = "copied to clipboard";
copyText.classList.remove("fade-out-500");
copyText.classList.add("fade-in-1000");

//Wait 2 seconds to show the message
setTimeout(function() {

//Start to fade out message
copyText.classList.add("fade-out-500");

//Wait until animation is done
setTimeout(function() {

//Set original text again and remove fadout class
copyText.value = permalink;
copyText.classList.remove("fade-out-500");

//Wait until animation is done
setTimeout(function() {

//Remove fadeout class
copyText.classList.remove("fade-in-1000");
}, 500);
}, 500);
}, 2000);
}, 500);
}
</script>

Share

The second permalink feature was a little bit trickier, because I didn’t want to use one of the sharing libraries out there, whose business model is based on my readers data (always keep conservative on implementing third party stuff, because you never know what they are doing with the data). But a couple of months ago I read about a new native browser API for WebApps on the rise: Web Share API.

Since 2019 W3C is working on this API, for sharing text, links and other content to an arbitrary destination of the user’s choice. On 27 August 2020 the published a Working Draft and on 16 September 2020 the latest Editors Draft.

Can I Use - Web Share, state today

Brand new stuff. The browser support is not the best yet, but it will be getting better in the near feature, especially as Edge Chrome is one of the early adopters.

Web Share in Edge Chrome

web.dev lists important requirements on using this new feature in JavaScript:

  • It can only be used on a site that supports HTTPS
  • It must be invoked in response to a user action such as a click

But it can share URL’s, text and even files!

A raw implementation can be:

1
2
3
4
5
6
7
8
9
10
if (navigator.share === undefined) {
navigator.share({
title: 'My Post',
url: 'https://my-domain.com/my-url',
})
.then(() => console.log('Successful share'))
.catch((error) => console.log('Error sharing', error));
} else {
// fallback
}

I refrain to implement a fallback, rather I would like to show the appropriate button only to those users, whose browser supports it:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="<%= class_name %>"">
<input id="article-permalink" value="<%- post.permalink %>" data-id="<%= post._id %>" />
<a id="action-copy" class="article-action" href="javascript:copyPermalink();"></a>
<a id="action-share" class="article-action" href="javascript:sharePermalink();"></a>
</div>
<script>
function copyPermalink() {
-- SEE ABOVE
}

if (navigator.share === undefined) {
var shareLink = document.querySelector("#action-share");
shareLink.style.display = "none";
}

function sharePermalink() {
navigator.share({
title: "<%- post.title %>",
url: "<%- post.permalink %>",
})
}
</script>

More Info

You can interact with this article (applause, criticism, whatever) by mention it in one of your posts, which will be shown here as a Webmention, or by leaving a good old comment with your GitHub account.

Webmentions

No Webmentions yet...

In case your blog software can't send Webmentions, you can use this form to submit me a mention of this article...


Comments

Related