mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
92 lines
2.5 KiB
TypeScript
92 lines
2.5 KiB
TypeScript
import axios from "axios";
|
|
import { useRouter } from "next/router";
|
|
import nProgress from "nprogress";
|
|
import { useMemo, useState } from "react";
|
|
|
|
import FormLayout from "components/FormLayout";
|
|
import PageTransition from "components/PageTransition";
|
|
import TextBox from "components/TextBox";
|
|
|
|
import PATHS from "constants/paths";
|
|
import useAutoFocus from "hooks/useAutoFocus";
|
|
import getUserCategoriesCount from "lib/category/getUserCategoriesCount";
|
|
import { redirectWithoutClientCache } from "utils/client";
|
|
import { HandleAxiosError } from "utils/front";
|
|
import { withAuthentication } from "utils/session";
|
|
|
|
import styles from "styles/form.module.scss";
|
|
|
|
export default function PageCreateCategory({
|
|
categoriesCount,
|
|
}: {
|
|
categoriesCount: number;
|
|
}) {
|
|
const autoFocusRef = useAutoFocus();
|
|
const router = useRouter();
|
|
const info = useRouter().query?.info as string;
|
|
|
|
const [name, setName] = useState<string>("");
|
|
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [submitted, setSubmitted] = useState<boolean>(false);
|
|
|
|
const canSubmit = useMemo<boolean>(
|
|
() => name.length !== 0 && !submitted,
|
|
[name.length, submitted]
|
|
);
|
|
|
|
const handleSubmit = async (event) => {
|
|
event.preventDefault();
|
|
setError(null);
|
|
setSubmitted(true);
|
|
nProgress.start();
|
|
|
|
try {
|
|
const { data } = await axios.post(PATHS.API.CATEGORY, { name });
|
|
redirectWithoutClientCache(router, "");
|
|
router.push(`${PATHS.HOME}?categoryId=${data?.categoryId}`);
|
|
setSubmitted(true);
|
|
} catch (error) {
|
|
setError(HandleAxiosError(error));
|
|
setSubmitted(false);
|
|
} finally {
|
|
nProgress.done();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<PageTransition className={styles["form-container"]}>
|
|
<FormLayout
|
|
title="Créer une catégorie"
|
|
errorMessage={error}
|
|
infoMessage={info}
|
|
canSubmit={canSubmit}
|
|
handleSubmit={handleSubmit}
|
|
disableHomeLink={categoriesCount === 0}
|
|
>
|
|
<TextBox
|
|
name="name"
|
|
label="Nom de la catégorie"
|
|
onChangeCallback={(value) => setName(value)}
|
|
value={name}
|
|
fieldClass={styles["input-field"]}
|
|
placeholder="Nom..."
|
|
innerRef={autoFocusRef}
|
|
/>
|
|
</FormLayout>
|
|
</PageTransition>
|
|
);
|
|
}
|
|
|
|
export const getServerSideProps = withAuthentication(
|
|
async ({ session, user }) => {
|
|
const categoriesCount = await getUserCategoriesCount(user);
|
|
return {
|
|
props: {
|
|
session,
|
|
categoriesCount,
|
|
},
|
|
};
|
|
}
|
|
);
|