mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-17 12:43:13 +02:00
198 lines
7.6 KiB
TypeScript
198 lines
7.6 KiB
TypeScript
import {
|
|
Accordion,
|
|
Button,
|
|
Col,
|
|
Checkbox,
|
|
Grid,
|
|
NumberInput,
|
|
PasswordInput,
|
|
Select,
|
|
Stack,
|
|
Text,
|
|
TextInput,
|
|
} from "@mantine/core";
|
|
import {useForm, yupResolver} from "@mantine/form";
|
|
import {useModals} from "@mantine/modals";
|
|
import * as yup from "yup";
|
|
import shareService from "../../services/share.service";
|
|
import {ShareSecurity} from "../../types/share.type";
|
|
import moment from "moment";
|
|
import getConfig from "next/config";
|
|
|
|
const {publicRuntimeConfig} = getConfig();
|
|
|
|
const PreviewExpiration = ({form}: { form: any }) => {
|
|
const value = form.values.never_expires ? "never" : form.values.expiration_num + form.values.expiration_unit;
|
|
if (value === "never") return "This share will never expire.";
|
|
|
|
const expirationDate = moment()
|
|
.add(
|
|
value.split("-")[0],
|
|
value.split("-")[1] as moment.unitOfTime.DurationConstructor
|
|
)
|
|
.toDate();
|
|
|
|
if (publicRuntimeConfig.TWELVE_HOUR_TIME === "true")
|
|
return `This share will expire on ${moment(expirationDate).format("MMMM Do YYYY, h:mm a")}`;
|
|
else
|
|
return `This share will expire on ${moment(expirationDate).format("MMMM DD YYYY, HH:mm")}`;
|
|
}
|
|
|
|
const CreateUploadModalBody = ({
|
|
uploadCallback,
|
|
}: {
|
|
uploadCallback: (
|
|
id: string,
|
|
expiration: string,
|
|
security: ShareSecurity
|
|
) => void;
|
|
}) => {
|
|
const modals = useModals();
|
|
const validationSchema = yup.object().shape({
|
|
link: yup
|
|
.string()
|
|
.required()
|
|
.min(3)
|
|
.max(100)
|
|
.matches(new RegExp("^[a-zA-Z0-9_-]*$"), {
|
|
message: "Can only contain letters, numbers, underscores and hyphens",
|
|
}),
|
|
password: yup.string().min(3).max(30),
|
|
maxViews: yup.number().min(1),
|
|
});
|
|
const form = useForm({
|
|
initialValues: {
|
|
link: "",
|
|
|
|
password: undefined,
|
|
maxViews: undefined,
|
|
expiration_num: 1,
|
|
expiration_unit: "-days",
|
|
never_expires: false
|
|
},
|
|
validate: yupResolver(validationSchema),
|
|
});
|
|
|
|
return (
|
|
<form
|
|
onSubmit={form.onSubmit(async (values) => {
|
|
if (!(await shareService.isShareIdAvailable(values.link))) {
|
|
form.setFieldError("link", "This link is already in use");
|
|
} else {
|
|
const expiration = form.values.never_expires ? "never" : form.values.expiration_num + form.values.expiration_unit;
|
|
uploadCallback(values.link, expiration, {
|
|
password: values.password,
|
|
maxViews: values.maxViews,
|
|
});
|
|
modals.closeAll();
|
|
}
|
|
})}
|
|
>
|
|
<Stack align="stretch">
|
|
<Grid align={form.errors.link ? "center" : "flex-end"}>
|
|
<Col xs={9}>
|
|
<TextInput
|
|
variant="filled"
|
|
label="Link"
|
|
placeholder="myAwesomeShare"
|
|
{...form.getInputProps("link")}
|
|
/>
|
|
</Col>
|
|
<Col xs={3}>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() =>
|
|
form.setFieldValue(
|
|
"link",
|
|
Buffer.from(Math.random().toString(), "utf8")
|
|
.toString("base64")
|
|
.substr(10, 7)
|
|
)
|
|
}
|
|
>
|
|
Generate
|
|
</Button>
|
|
</Col>
|
|
</Grid>
|
|
|
|
<Text italic
|
|
size="xs"
|
|
sx={(theme) => ({
|
|
color: theme.colors.gray[6],
|
|
})}
|
|
>
|
|
{window.location.origin}/share/
|
|
{form.values.link == "" ? "myAwesomeShare" : form.values.link}
|
|
</Text>
|
|
<Grid align={form.errors.link ? "center" : "flex-end"}>
|
|
<Col xs={6}>
|
|
<NumberInput
|
|
min={1}
|
|
max={99999}
|
|
precision={0}
|
|
variant="filled"
|
|
label="Expiration"
|
|
placeholder="n"
|
|
disabled={form.values.never_expires}
|
|
{...form.getInputProps("expiration_num")}
|
|
/>
|
|
</Col>
|
|
<Col xs={6}>
|
|
<Select
|
|
disabled={form.values.never_expires}
|
|
{...form.getInputProps("expiration_unit")}
|
|
data={[
|
|
// Set the label to singular if the number is 1, else plural
|
|
{value: "-minutes", label: "Minute" + (form.values.expiration_num == 1 ? "" : "s")},
|
|
{value: "-hours", label: "Hour" + (form.values.expiration_num == 1 ? "" : "s")},
|
|
{value: "-days", label: "Day" + (form.values.expiration_num == 1 ? "" : "s")},
|
|
{value: "-weeks", label: "Week" + (form.values.expiration_num == 1 ? "" : "s")},
|
|
{value: "-months", label: "Month" + (form.values.expiration_num == 1 ? "" : "s")},
|
|
{value: "-years", label: "Year" + (form.values.expiration_num == 1 ? "" : "s")}
|
|
]}
|
|
/>
|
|
</Col>
|
|
</Grid>
|
|
<Checkbox label="Never Expires" {...form.getInputProps("never_expires")} />
|
|
|
|
{/* Preview expiration date text */}
|
|
<Text italic
|
|
size="xs"
|
|
sx={(theme) => ({
|
|
color: theme.colors.gray[6],
|
|
})}
|
|
>
|
|
{PreviewExpiration({form})}
|
|
</Text>
|
|
|
|
<Accordion>
|
|
<Accordion.Item value="security" sx={{borderBottom: "none"}}>
|
|
<Accordion.Control>Security options</Accordion.Control>
|
|
<Accordion.Panel>
|
|
<Stack align="stretch">
|
|
<PasswordInput
|
|
variant="filled"
|
|
placeholder="No password"
|
|
label="Password protection"
|
|
{...form.getInputProps("password")}
|
|
/>
|
|
<NumberInput
|
|
min={1}
|
|
type="number"
|
|
variant="filled"
|
|
placeholder="No limit"
|
|
label="Maximal views"
|
|
{...form.getInputProps("maxViews")}
|
|
/>
|
|
</Stack>
|
|
</Accordion.Panel>
|
|
</Accordion.Item>
|
|
</Accordion>
|
|
<Button type="submit">Share</Button>
|
|
</Stack>
|
|
</form>
|
|
);
|
|
};
|
|
|
|
export default CreateUploadModalBody;
|