mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-19 13:50:10 +01:00
130 lines
4.1 KiB
TypeScript
130 lines
4.1 KiB
TypeScript
import { Button, Group, Menu } from "@mantine/core";
|
|
import { useModals } from "@mantine/modals";
|
|
import { useRouter } from "next/router";
|
|
import { useContext, useState } from "react";
|
|
import { Link, Mail } from "tabler-icons-react";
|
|
import Meta from "../components/Meta";
|
|
import Dropzone from "../components/upload/Dropzone";
|
|
import FileList from "../components/upload/FileList";
|
|
import showCompletedUploadModal from "../components/upload/showCompletedUploadModal";
|
|
import showCreateUploadModal from "../components/upload/showCreateUploadModal";
|
|
import { FileUpload } from "../types/File.type";
|
|
import aw from "../utils/appwrite.util";
|
|
import { IsSignedInContext } from "../utils/auth.util";
|
|
import { useConfig } from "../utils/config.util";
|
|
import toast from "../utils/toast.util";
|
|
|
|
const Upload = () => {
|
|
const router = useRouter();
|
|
const modals = useModals();
|
|
const config = useConfig();
|
|
const isSignedIn = useContext(IsSignedInContext);
|
|
const [files, setFiles] = useState<FileUpload[]>([]);
|
|
const [isUploading, setisUploading] = useState(false);
|
|
let shareMode: "email" | "standard";
|
|
|
|
const uploadFiles = async (
|
|
id: string,
|
|
expiration: number,
|
|
security: { password?: string; maxVisitors?: number },
|
|
emails?: string[]
|
|
) => {
|
|
setisUploading(true);
|
|
try {
|
|
files.forEach((file) => {
|
|
file.uploadingState = "inProgress";
|
|
});
|
|
const bucketId = JSON.parse(
|
|
(
|
|
await aw.functions.createExecution(
|
|
"createShare",
|
|
JSON.stringify({ id, security, expiration, emails }),
|
|
false
|
|
)
|
|
).stdout
|
|
).id;
|
|
for (let i = 0; i < files.length; i++) {
|
|
setFiles([...files]);
|
|
aw.storage.createFile(bucketId, "unique()", files[i]).then(
|
|
async () => {
|
|
files[i].uploadingState = "finished";
|
|
setFiles([...files]);
|
|
if (!files.some((f) => f.uploadingState == "inProgress")) {
|
|
await aw.functions.createExecution(
|
|
"finishShare",
|
|
JSON.stringify({ id }),
|
|
false
|
|
),
|
|
setisUploading(false);
|
|
showCompletedUploadModal(
|
|
modals,
|
|
`${window.location.origin}/share/${bucketId}`,
|
|
new Date(Date.now() + expiration * 60 * 1000).toLocaleString(),
|
|
shareMode
|
|
);
|
|
setFiles([]);
|
|
}
|
|
},
|
|
(error) => {
|
|
files[i].uploadingState = undefined;
|
|
throw error;
|
|
}
|
|
);
|
|
}
|
|
} catch (e: any) {
|
|
setisUploading(false);
|
|
if (e.message) {
|
|
toast.error(e.message);
|
|
} else {
|
|
toast.error("An unknown error occurred.");
|
|
}
|
|
}
|
|
};
|
|
if (!isSignedIn) {
|
|
router.replace("/");
|
|
} else {
|
|
return (
|
|
<>
|
|
<Meta title="Upload" />
|
|
<Group position="right" mb={20}>
|
|
<div>
|
|
<Menu
|
|
control={
|
|
<Button loading={isUploading} disabled={files.length <= 0}>
|
|
Share
|
|
</Button>
|
|
}
|
|
transition="pop-top-right"
|
|
placement="end"
|
|
size="lg"
|
|
>
|
|
<Menu.Item
|
|
icon={<Link size={16} />}
|
|
onClick={() => {
|
|
shareMode = "standard";
|
|
showCreateUploadModal(shareMode, modals, uploadFiles);
|
|
}}
|
|
>
|
|
Share with link
|
|
</Menu.Item>
|
|
<Menu.Item
|
|
disabled={!config.MAIL_SHARE_ENABLED}
|
|
icon={<Mail size={16} />}
|
|
onClick={() => {
|
|
shareMode = "email";
|
|
showCreateUploadModal(shareMode, modals, uploadFiles);
|
|
}}
|
|
>
|
|
Share with email
|
|
</Menu.Item>
|
|
</Menu>
|
|
</div>
|
|
</Group>
|
|
<Dropzone setFiles={setFiles} isUploading={isUploading} />
|
|
{files.length > 0 && <FileList files={files} setFiles={setFiles} />}
|
|
</>
|
|
);
|
|
}
|
|
};
|
|
export default Upload;
|