Merge pull request #14 from theoleuthardt/feat/tmz-converter

feat: tmz-converter
This commit is contained in:
AurionTex 2025-02-20 22:08:23 +01:00 committed by GitHub
commit ccca78cec0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 196 additions and 6 deletions

View file

@ -15,9 +15,11 @@
"fastify": "^5.2.1",
"fastify-cors": "^6.0.3",
"fastify-multipart": "^5.3.1",
"libreoffice-convert": "^1.6.0"
"libreoffice-convert": "^1.6.0",
"luxon": "^3.5.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.4",
"prettier": "3.5.1",
"ts-node": "^10.9.2",
@ -263,6 +265,13 @@
"dev": true,
"license": "MIT"
},
"node_modules/@types/luxon": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@types/luxon/-/luxon-3.4.2.tgz",
"integrity": "sha512-TifLZlFudklWlMBfhubvgqTXRzLDI5pCbGa4P8a3wPyUQSW+1xQ5eDsreP9DWHX3tjq1ke96uYG/nwundroWcA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/node": {
"version": "22.13.4",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz",
@ -682,6 +691,15 @@
"set-cookie-parser": "^2.6.0"
}
},
"node_modules/luxon": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz",
"integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==",
"license": "MIT",
"engines": {
"node": ">=12"
}
},
"node_modules/make-error": {
"version": "1.3.6",
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",

View file

@ -18,9 +18,11 @@
"fastify": "^5.2.1",
"fastify-cors": "^6.0.3",
"fastify-multipart": "^5.3.1",
"libreoffice-convert": "^1.6.0"
"libreoffice-convert": "^1.6.0",
"luxon": "^3.5.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.13.4",
"prettier": "3.5.1",
"ts-node": "^10.9.2",

View file

@ -5,6 +5,7 @@ import { libreConvert } from "./src/routes/libreconvert.route";
import { colorConvert } from "./src/routes/colorconvert.route";
import { passwordGenerate } from "./src/routes/passwordgenerate.route";
import { regexTest } from "./src/routes/regextest.route";
import { tmzConvert } from "./src/routes/tmzconvert.route";
const app = Fastify({ logger: true });
@ -19,6 +20,7 @@ app.register(libreConvert);
app.register(colorConvert);
app.register(passwordGenerate);
app.register(regexTest);
app.register(tmzConvert);
const PORT = process.env.PORT || 4000;
app.listen({ port: Number(PORT), host: "0.0.0.0" }, () => {

View file

@ -0,0 +1,45 @@
import { FastifyInstance, FastifyReply, FastifyRequest } from "fastify";
import { DateTime } from "luxon";
interface RequestBody {
time: string;
fromZone: string;
toZone: string;
}
export async function tmzConvert(app: FastifyInstance) {
app.post(
"/api/tmz-convert",
async (
request: FastifyRequest<{ Body: RequestBody }>,
reply: FastifyReply,
) => {
const data = request.body;
const time = data.time;
const fromZone = data.fromZone;
const toZone = data.toZone;
try {
if (!time || !fromZone || !toZone) {
return reply.status(400).send({ error: "Missing parameters" });
}
const dateTime = DateTime.fromISO(time, { zone: fromZone });
if (!dateTime.isValid) {
return reply.status(400).send({ error: "Invalid date or time zone" });
}
const convertedTime = dateTime.setZone(toZone).toISO();
return reply
.header("Content-Type", "text/plain")
.status(200)
.send(convertedTime);
} catch (error) {
console.error("Conversion error:", error);
reply.status(500).send({ error: "Error converting time" });
}
},
);
}

View file

@ -0,0 +1,20 @@
import React from "react";
import type { Metadata } from "next";
import { toolLinks } from "@/constants";
export const metadata: Metadata = {
title: toolLinks[1].title,
description: "Converter for timezones!",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`antialiased`}>{children}</body>
</html>
);
}

View file

@ -0,0 +1,103 @@
"use client";
import React, { useState } from "react";
import Navbar from "../../components/Navbar";
import Footer from "../../components/Footer";
import Button from "../../components/Button";
export default function DocConverter() {
const [loading, setLoading] = useState(false);
const [convertedTMZ, setConvertedTMZ] = useState("");
const convertTMZ = async () => {
setLoading(true);
const time = (document.getElementById("time") as HTMLInputElement).value;
const fromZone = (document.getElementById("fromZone") as HTMLInputElement)
.value;
const toZone = (document.getElementById("toZone") as HTMLInputElement)
.value;
try {
const response = await fetch(
process.env.backend_url + "/api/tmz-convert",
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
time: time,
fromZone: fromZone,
toZone: toZone,
}),
},
);
if (!response.ok) {
return new Error(`Error: ${response.statusText}`);
}
const output: string = await response.text();
setConvertedTMZ(output);
} catch (error) {
console.error("Error while converting:", error);
alert("Error while converting");
} finally {
setLoading(false);
}
};
return (
<div className="w-screen h-auto min-h-screen bg-black text-white font-noto flex flex-col items-center">
<Navbar renderHomeLink={true} />
<div className="w-screen h-auto min-h-[calc(100vh-80px-60px)] flex flex-1 flex-col items-center justify-center">
<h2 className="text-5xl font-bold text-white mb-16">tmz-converter</h2>
<h3 className="text-3xl font-bold text-white">Example:</h3>
<div className="h-8 flex flex-row items-center justify-center gap-4 mt-3">
<p className="text-white text-xl">Time: 2025-02-20T15:30:00</p>
<p className="text-white text-xl">From TMZ: America/New_York</p>
<p className="text-white text-xl">To TMZ: Europe/Berlin</p>
</div>
<p className="text-xl text-white mb-3">
Output: 2025-02-20T21:30:00.000+01:00
</p>
<div className="h-24 flex flex-row items-center justify-center gap-4">
<input
className="h-10 w-64 p-2 rounded-xl text-white bg-black border-2 border-white text-center"
type="text"
id="time"
placeholder="Enter Time!"
/>
<input
className="h-10 w-64 p-2 rounded-xl text-white bg-black border-2 border-white text-center"
type="text"
id="fromZone"
placeholder="Enter your TMZ!"
/>
<input
className="h-10 w-64 p-2 rounded-xl text-white bg-black border-2 border-white text-center"
type="text"
id="toZone"
placeholder="Enter destination TMZ!"
/>
</div>
<div className={"flex flex-row items-center gap-4 mt-1 mb-10"}>
<Button
content={
loading ? (
<div className="h-10 w-10 border-8 border-blue-100 border-t-blue-500 rounded-full animate-spin" />
) : (
"convert"
)
}
onClick={convertTMZ}
/>
</div>
<div className="p-3 rounded-xl text-center">
<output id="output" className="text-blue-400 text-3xl">
{convertedTMZ}
</output>
</div>
</div>
<Footer className="flex justify-center items-end" />
</div>
);
}

View file

@ -4,8 +4,8 @@ export const toolLinks = [
link: "/doc-converter",
},
{
title: "img-converter",
link: "/img-converter",
title: "tmz-converter",
link: "/tmz-converter",
},
{
title: "rgb-to-hex",
@ -32,8 +32,8 @@ export const toolLinks = [
link: "/word-counter",
},
{
title: "pomodoro-timer",
link: "/pomodoro-timer",
title: "video-to-audio",
link: "/video-to-audio",
},
];