An Almost Perfect Like Button
How hard can it be to code a like button? Well more than you think.
You see that small heart below the description of this blog? That is what I am going to talk about today.
I wanted to add a like button to my blogs for a while now as without it I had no way of knowing if anybody was reading or liking them. But I never did it cause in my head adding a like button seemed like a very trivial task which won't teach me anything new and so I decided to just leave it.
Until one day I got my hands on this new AI based Code Editor called Trae AI. So then to test the power of this new tool I gave it a task of making a like button for my blog which it did in a few minutes.
So I now had a like button that worked.
But everytime I would like a blog it would take a few milliseconds to load and then the counter would go up. That is very much understandable as the request to update the counter is sent to the server and the server responds with the updated counter which is then displayed on the page.
Refer to this GIF and the block diagram to understand how painful it looked like.
Part of the reason why it was kinda slow was because I was using free tier of firebase to store the likes. The obvious solution was to use a paid tier but I was too broke to pay for it. So then comes the interesting part.
Notice how I don't ask you to sign up on the website and still you're able to like the blog? That is because I am using localstorage
to store the likes. Localstorage is a way of storing data on the client side. So when you like a blog the like is stored in your browser and when you refresh the page the like is still there.
The important thing for you to note is that updating the localstorage is wayyy faster than updating the firebase. But we'd still need to update the likes in firebase so that the total likes are accurate.
And now we can talk about the implementation.
We'll start with a base case and first assume that there is no central database (i.e. firebase) for now and we just have one user and we want to make a like button for one user only.
In that case we will update the localstorage when the user clicks on the button and then we will update the UI immediately after that. This whole process is super fast and the user will feel like the like button is working instantly.
Great! Now we have a like button that works instantly. But what if we have multiple users?
If we have multiple users then we cannot store the likes in localstorage of one user only because that will be shared by all the users. So we need to store the likes in a central database.
This is where things get a little complicated. Let me try my best to explain them in the most simple way possible.
So what we're gonna do is we're still gonna make the UI update immediately as we make an update to the localstorage and then also queue a server request to update the likes in the database.
Let's understand it with this block diagram:
Now this solution kindaa worked as now the UI update didn't have to wait for the server request to end. So we were almost there. Except for one thing.
If the user clicks on the like button multiple times in a short amount of time then the server request will be sent multiple times and the server will respond multiple times which will cause the UI to update multiple times which will cause the UI to look weird.
didIUpdateSomething?
And this is where the legendary didIUpdateSomething
variable comes in. This variable will be used to check if end result of all the clicks by the user is the same or not.
And this is how the updated block diagram looks like:
If all of the tech stuff I threw at you was confusing then don't worry just enjoy this below gif to see how fast the like button is now after this change.
Cool right?
Anyways here's the code for the like button and with that I'll close this blog. Bye Bye!