mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: table as dropdown for information about input and output file formats
This commit is contained in:
parent
6d71eaef03
commit
9e2215b70a
2 changed files with 78 additions and 51 deletions
|
|
@ -4,7 +4,7 @@ import { toolLinks } from "@/constants";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: toolLinks[0].title,
|
title: toolLinks[0].title,
|
||||||
description: "Converter for documents to pdf format!",
|
description: "Converter for documents!",
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import Button from "../../components/Button";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ChevronDown, ChevronUp } from "lucide-react";
|
import { ChevronDown, ChevronUp } from "lucide-react";
|
||||||
|
|
||||||
export default function Home() {
|
export default function DocConverter() {
|
||||||
const [file, setFile] = useState<File | null>(null);
|
const [file, setFile] = useState<File | null>(null);
|
||||||
const [downloadUrl, setDownloadUrl] = useState<string>("");
|
const [downloadUrl, setDownloadUrl] = useState<string>("");
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
|
|
@ -20,7 +20,7 @@ export default function Home() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const convertToPdf = async () => {
|
const convertDoc = async () => {
|
||||||
if (!file) {
|
if (!file) {
|
||||||
alert("No file selected");
|
alert("No file selected");
|
||||||
return;
|
return;
|
||||||
|
|
@ -56,9 +56,9 @@ export default function Home() {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="h-screen w-screen bg-black text-white font-noto flex flex-col items-center">
|
<div className="w-screen h-auto min-h-screen bg-black text-white font-noto flex flex-col items-center">
|
||||||
<Navbar renderHomeLink={true} />
|
<Navbar renderHomeLink={true} />
|
||||||
<div className="w-screen h-screen flex flex-col items-center justify-center">
|
<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">doc-converter</h2>
|
<h2 className="text-5xl font-bold text-white mb-16">doc-converter</h2>
|
||||||
<input
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
|
|
@ -80,127 +80,154 @@ export default function Home() {
|
||||||
"convert"
|
"convert"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
onClick={convertToPdf}
|
onClick={convertDoc}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{
|
{
|
||||||
// TODO: Fix Table Head widths (fixed and the same as the max body width)
|
// TODO: Fix Table Head widths (fixed and the same as the max body width)
|
||||||
// TODO: Add hover animation to table head (scale-110, blue text, blue border)
|
// TODO: Add hover animation to table head (scale-110, blue text, blue border)
|
||||||
// TODO: Fix general site height and add scrolling
|
|
||||||
// TODO: Add animated pop in for the table body
|
|
||||||
}
|
}
|
||||||
<div className="overflow-hidden text-xl rounded-lg border border-white">
|
<div className="overflow-hidden text-xl rounded-lg border border-white mb-16 transition-all duration-300 ease-in-out hover:border-blue-400">
|
||||||
<div
|
<div
|
||||||
className="cursor-pointer flex justify-between items-center"
|
className="cursor-pointer flex justify-between items-center"
|
||||||
onClick={() => setTableOpen(!tableOpen)}
|
onClick={() => setTableOpen(!tableOpen)}
|
||||||
>
|
>
|
||||||
<table className="w-full px-6 py-4 border-b">
|
<table className="px-6 py-4 border-b">
|
||||||
<thead>
|
<thead>
|
||||||
<tr className="border-b border-white">
|
<tr className="border-b border-white">
|
||||||
<th className="w-sm px-6 py-4 border-r">📥 Input Format</th>
|
<th className="min-w-96 px-6 py-4 border-r border-white">
|
||||||
<th className="w-sm px-6 py-4 flex flex-row">
|
📥 Input Format
|
||||||
<p className="pr-4">📤 Output Format</p>
|
</th>
|
||||||
{tableOpen ? (
|
<th className="min-w-[398px] px-6 py-4 flex flex-row justify-between items-center">
|
||||||
<ChevronUp className="h-6 w-6" />
|
<p className="pr-4 mx-auto">📤 Output Format</p>
|
||||||
) : (
|
<div className="flex items-end justify-end place-content-end">
|
||||||
<ChevronDown className="h-6 w-6" />
|
{tableOpen ? (
|
||||||
)}
|
<ChevronUp className="h-6 w-6" />
|
||||||
|
) : (
|
||||||
|
<ChevronDown className="h-6 w-6" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{tableOpen && (
|
<div
|
||||||
<table className="w-full text-left border-collapse">
|
className={`
|
||||||
|
}overflow-hidden transition-all duration-700 ease-in-out ${tableOpen ? "max-h-[900px]" : "max-h-0"}`}
|
||||||
|
>
|
||||||
|
<table className="w-full h-auto text-left border-collapse border-white">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.doc (MS Word)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">
|
.doc (MS Word)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .docx, .odt, .txt, .rtf, .html, .epub
|
.pdf, .docx, .odt, .txt, .rtf, .html, .epub
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.docx (MS Word)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">
|
.docx (MS Word)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .odt, .txt, .rtf, .html, .epub
|
.pdf, .odt, .txt, .rtf, .html, .epub
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
.odt (OpenDocument Text)
|
.odt (OpenDocument Text)
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4">
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .doc, .docx, .txt, .rtf, .html, .epub
|
.pdf, .doc, .docx, .txt, .rtf, .html, .epub
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
.rtf (Rich Text Format)
|
.rtf (Rich Text Format)
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4">
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .doc, .docx, .odt, .txt, .html
|
.pdf, .doc, .docx, .odt, .txt, .html
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.txt (Text)</td>
|
<td className="min-w-96 px-6 py-4 border-r">.txt (Text)</td>
|
||||||
<td className="px-6 py-4">
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .doc, .docx, .odt, .txt, .html
|
.pdf, .doc, .docx, .odt, .txt, .html
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.html (Webseite)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">
|
.html (Webseite)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .doc, .docx, .odt, .rtf, .txt
|
.pdf, .doc, .docx, .odt, .rtf, .txt
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.epub (E-Book)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">
|
.epub (E-Book)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">
|
||||||
.pdf, .doc, .docx, .odt, .rtf, .txt
|
.pdf, .doc, .docx, .odt, .rtf, .txt
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.xls (MS Excel)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">.pdf, .xlsx, .ods, .csv</td>
|
.xls (MS Excel)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">
|
||||||
|
.pdf, .xlsx, .ods, .csv
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.xlsx (MS Excel)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">.pdf, .xls, .ods, .csv</td>
|
.xlsx (MS Excel)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">.pdf, .xls, .ods, .csv</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
.ods (OpenDocument Spreadsheet)
|
.ods (OpenDocument Spreadsheet)
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4">.pdf, .xls, .xlsx, .csv</td>
|
<td className="min-w-96 px-6 py-4">
|
||||||
|
.pdf, .xls, .xlsx, .csv
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
.csv (Comma-Separated Values)
|
.csv (Comma-Separated Values)
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4">.pdf, .xls, .xlsx, .ods</td>
|
<td className="min-w-96 px-6 py-4">
|
||||||
|
.pdf, .xls, .xlsx, .ods
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.ppt (MS PowerPoint)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">.pdf, .pptx, .odp</td>
|
.ppt (MS PowerPoint)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">.pdf, .pptx, .odp</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="border-b">
|
||||||
<td className="px-6 py-4 border-r">.pptx (MS PowerPoint)</td>
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
<td className="px-6 py-4">.pdf, .ppt, .odp</td>
|
.pptx (MS PowerPoint)
|
||||||
|
</td>
|
||||||
|
<td className="min-w-96 px-6 py-4">.pdf, .ppt, .odp</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr className="border-b">
|
<tr className="pb-10">
|
||||||
<td className="px-6 py-4 border-r">
|
<td className="min-w-96 px-6 py-4 border-r">
|
||||||
.odp (OpenDocument Presentation)
|
.odp (OpenDocument Presentation)
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4">.pdf, .ppt, .pptx</td>
|
<td className="min-w-96 px-6 py-4">.pdf, .ppt, .pptx</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
)}
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer className="flex justify-center items-end" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue