documents list and delet

This commit is contained in:
Timur Ercan
2023-01-24 18:18:26 +01:00
parent e6073b8482
commit 65ea717ff4
3 changed files with 196 additions and 34 deletions

View File

@ -60,6 +60,7 @@ const DashboardPage: NextPageWithLayout = () => {
link: "/documents?filter=",
},
];
const uploadToServer = async (event: any) => {
if (event.target.files && event.target.files[0]) {
const body = new FormData();
@ -108,30 +109,6 @@ const DashboardPage: NextPageWithLayout = () => {
))}
</dl>
<div className="mt-12">
<button
type="button"
onClick={() => {
document?.getElementById("fileUploadHelper")?.click();
}}
className="relative block w-full rounded-lg border-2 border-dashed border-gray-300 p-12 text-center hover:border-neon focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
>
<svg
className="mx-auto h-12 w-12 text-gray-400"
stroke="currentColor"
fill="none"
viewBox="0 00 20 25"
aria-hidden="true"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"
/>
</svg>
<span className="mt-2 block text-sm font-medium text-neon">
Upload a new PDF document
</span>
</button>
<input
id="fileUploadHelper"
type="file"
@ -141,6 +118,30 @@ const DashboardPage: NextPageWithLayout = () => {
hidden
/>
</div>
<button
type="button"
onClick={() => {
document?.getElementById("fileUploadHelper")?.click();
}}
className="relative block w-full rounded-lg border-2 border-dashed border-gray-300 p-12 text-center hover:border-neon focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2"
>
<svg
className="mx-auto h-12 w-12 text-gray-400"
stroke="currentColor"
fill="none"
viewBox="0 00 20 25"
aria-hidden="true"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"
/>
</svg>
<span className="mt-2 block text-sm font-medium text-neon">
Upload a new PDF document
</span>
</button>
</div>
</>
);