Pelletyze — Update #6
Another Sunday with some time to work on my App.
Today I made good progress. Mostly for code in the background, so I don't really have screenshots besides one.
This will add the current version number to the frontend. First, I thought about a complex idea by adding the version number to an
.env
file or to a constant hardcoded inside the codebase. Then I thought, why not use the package.json version number? I maintain them with every release, so it is the single of truth. The code is also simple and just works.
import packageJson from "@/package.json";
export function AppVersionNumber() {
return (
<p className="flex gap-2 justify-center items-center">
<small
className="opacity-50 align-middle"
title={`App Version: packageJson.version`}
aria-label={`App Version: packageJson.version`}
>
{packageJson.version}
</small>
</p>
);
}
Next on my plate, there were some bugs to fix. One, I saw at the turn of the year and I had it on my list since then. I couldn't really explain how this came together. Luckily, this one resolved itself after I removed the old data and put the new one in. Because the old data was corrupted.
Another bug was a simple fix because it was just a key prop warning. I've added the key prop and everything was fine. 😎
The last Bug was related to the data export to CSV. First I've string.replaced() my way through, but later I found out, this isn't an ideal solution. So I sat down and rewrote some parts. Supabase has its own csv export, right after you fetch your data. Which is nice, but the result was not importable for fast-csv.
Now I run csv.writeToString on my formatted data. The result cuts the file size by half. Which is not relevant because it's under 1kb but still, a good achievement.
const formattedData = [
["bags", "filled_at"],
...(data || []).map((row) => [
row.bags,
format(row.filled_at, "yyyy-MM-dd"),
]),
];
const exportReadyCSV = await csv.writeToString(formattedData, {
delimiter: ";",
});
And the last to-do for today was, to update all packages with the patch and minor version updates. If clicked through the application and everything worked, so this was a quick one too. :)
I would say that this was a productive Sunday. :)
I will visit my client from Tuesday to Thursday, and I'm sitting around 12hrs on the Train, so if I'm lazy, I will be watching some series or playing on my Steam Deck. OR I will be productive and work more on my Application. It depends on the mood. So lets see. :)
11 of #100DaysToOffload
#pelletyze
Thoughts? Discuss...