1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-10-01 00:50:10 +02:00

Added granular control of expiration + 12/24 hour modes

This commit is contained in:
Steve Tautonico 2022-10-14 18:14:46 -04:00
parent 56349c6f4c
commit 5988d5ffcc
No known key found for this signature in database
GPG Key ID: 6422E5D217FC628B
5 changed files with 199 additions and 131 deletions

View File

@ -1,3 +1,4 @@
SHOW_HOME_PAGE=true SHOW_HOME_PAGE=true
ALLOW_REGISTRATION=true ALLOW_REGISTRATION=true
MAX_FILE_SIZE=1000000000 MAX_FILE_SIZE=1000000000
TWELVE_HOUR_TIME=false

View File

@ -5,7 +5,8 @@ const nextConfig = {
ALLOW_REGISTRATION: process.env.ALLOW_REGISTRATION, ALLOW_REGISTRATION: process.env.ALLOW_REGISTRATION,
SHOW_HOME_PAGE: process.env.SHOW_HOME_PAGE, SHOW_HOME_PAGE: process.env.SHOW_HOME_PAGE,
MAX_FILE_SIZE: process.env.MAX_FILE_SIZE, MAX_FILE_SIZE: process.env.MAX_FILE_SIZE,
BACKEND_URL: process.env.BACKEND_URL BACKEND_URL: process.env.BACKEND_URL,
TWELVE_HOUR_TIME: process.env.TWELVE_HOUR_TIME
} }
} }

View File

@ -2,6 +2,7 @@ import {
Accordion, Accordion,
Button, Button,
Col, Col,
Checkbox,
Grid, Grid,
NumberInput, NumberInput,
PasswordInput, PasswordInput,
@ -15,6 +16,27 @@ import { useModals } from "@mantine/modals";
import * as yup from "yup"; import * as yup from "yup";
import shareService from "../../services/share.service"; import shareService from "../../services/share.service";
import {ShareSecurity} from "../../types/share.type"; 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 = ({ const CreateUploadModalBody = ({
uploadCallback, uploadCallback,
@ -44,7 +66,9 @@ const CreateUploadModalBody = ({
password: undefined, password: undefined,
maxViews: undefined, maxViews: undefined,
expiration: "1-day", expiration_num: 1,
expiration_unit: "-days",
never_expires: false
}, },
validate: yupResolver(validationSchema), validate: yupResolver(validationSchema),
}); });
@ -55,7 +79,8 @@ const CreateUploadModalBody = ({
if (!(await shareService.isShareIdAvailable(values.link))) { if (!(await shareService.isShareIdAvailable(values.link))) {
form.setFieldError("link", "This link is already in use"); form.setFieldError("link", "This link is already in use");
} else { } else {
uploadCallback(values.link, values.expiration, { const expiration = form.values.never_expires ? "never" : form.values.expiration_num + form.values.expiration_unit;
uploadCallback(values.link, expiration, {
password: values.password, password: values.password,
maxViews: values.maxViews, maxViews: values.maxViews,
}); });
@ -90,7 +115,7 @@ const CreateUploadModalBody = ({
</Col> </Col>
</Grid> </Grid>
<Text <Text italic
size="xs" size="xs"
sx={(theme) => ({ sx={(theme) => ({
color: theme.colors.gray[6], color: theme.colors.gray[6],
@ -99,18 +124,47 @@ const CreateUploadModalBody = ({
{window.location.origin}/share/ {window.location.origin}/share/
{form.values.link == "" ? "myAwesomeShare" : form.values.link} {form.values.link == "" ? "myAwesomeShare" : form.values.link}
</Text> </Text>
<Select <Grid align={form.errors.link ? "center" : "flex-end"}>
<Col xs={6}>
<NumberInput
min={1}
max={99999}
precision={0}
variant="filled"
label="Expiration" label="Expiration"
{...form.getInputProps("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={[ data={[
{value: "never", label: "Never"}, // Set the label to singular if the number is 1, else plural
{value: "10-minutes", label: "10 Minutes"}, {value: "-minutes", label: "Minute" + (form.values.expiration_num == 1 ? "" : "s")},
{value: "1-hour", label: "1 Hour"}, {value: "-hours", label: "Hour" + (form.values.expiration_num == 1 ? "" : "s")},
{value: "1-day", label: "1 Day"}, {value: "-days", label: "Day" + (form.values.expiration_num == 1 ? "" : "s")},
{value: "1-week", label: "1 Week"}, {value: "-weeks", label: "Week" + (form.values.expiration_num == 1 ? "" : "s")},
{value: "1-month", label: "1 Month"}, {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>
<Accordion.Item value="security" sx={{borderBottom: "none"}}> <Accordion.Item value="security" sx={{borderBottom: "none"}}>
<Accordion.Control>Security options</Accordion.Control> <Accordion.Control>Security options</Accordion.Control>

View File

@ -14,6 +14,9 @@ import { useRouter } from "next/router";
import { Copy } from "tabler-icons-react"; import { Copy } from "tabler-icons-react";
import { Share } from "../../types/share.type"; import { Share } from "../../types/share.type";
import toast from "../../utils/toast.util"; import toast from "../../utils/toast.util";
import getConfig from "next/config";
const {publicRuntimeConfig} = getConfig();
const showCompletedUploadModal = ( const showCompletedUploadModal = (
modals: ModalsContextProps, modals: ModalsContextProps,
@ -62,7 +65,10 @@ const Body = ({share}: { share: Share }) => {
{/* If our share.expiration is timestamp 0, show a different message */} {/* If our share.expiration is timestamp 0, show a different message */}
{moment(share.expiration).unix() === 0 {moment(share.expiration).unix() === 0
? "This share will never expire." ? "This share will never expire."
: `This share will expire on ${moment(share.expiration).format("LLL")}`} : `This share will expire on ${
(publicRuntimeConfig.TWELVE_HOUR_TIME === "true")
? moment(share.expiration).format("MMMM Do YYYY, h:mm a")
: moment(share.expiration).format("MMMM DD YYYY, HH:mm")}`}
</Text> </Text>
<Button <Button

View File

@ -20,6 +20,9 @@ import Meta from "../../components/Meta";
import shareService from "../../services/share.service"; import shareService from "../../services/share.service";
import {MyShare} from "../../types/share.type"; import {MyShare} from "../../types/share.type";
import toast from "../../utils/toast.util"; import toast from "../../utils/toast.util";
import getConfig from "next/config";
const {publicRuntimeConfig} = getConfig();
const MyShares = () => { const MyShares = () => {
const modals = useModals(); const modals = useModals();
@ -67,7 +70,10 @@ const MyShares = () => {
<td> <td>
{moment(share.expiration).unix() === 0 {moment(share.expiration).unix() === 0
? "Never" ? "Never"
: moment(share.expiration).format("MMMM DD YYYY, HH:mm")} : (publicRuntimeConfig.TWELVE_HOUR_TIME === "true")
? moment(share.expiration).format("MMMM Do YYYY, h:mm a")
: moment(share.expiration).format("MMMM DD YYYY, HH:mm")
}
</td> </td>
<td> <td>
<Group position="right"> <Group position="right">