Files
outline/app/scenes/DocumentNew.tsx
Tom Moor e2c5fda610 fix: Do not copy edit path from headers
chore: Rename url -> path in routeHelpers
closes #5229
2023-04-22 10:00:09 -04:00

62 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { observer } from "mobx-react";
import queryString from "query-string";
import * as React from "react";
import { useEffect } from "react";
import { useTranslation } from "react-i18next";
import { useHistory, useLocation, useRouteMatch } from "react-router-dom";
import CenteredContent from "~/components/CenteredContent";
import Flex from "~/components/Flex";
import PlaceholderDocument from "~/components/PlaceholderDocument";
import useStores from "~/hooks/useStores";
import useToasts from "~/hooks/useToasts";
import { documentEditPath } from "~/utils/routeHelpers";
function DocumentNew() {
const history = useHistory();
const location = useLocation();
const match = useRouteMatch<{ id?: string }>();
const { t } = useTranslation();
const { documents, collections } = useStores();
const { showToast } = useToasts();
const id = match.params.id || "";
useEffect(() => {
async function createDocument() {
const params = queryString.parse(location.search);
let collection;
try {
if (id) {
collection = await collections.fetch(id);
}
const document = await documents.create({
collectionId: collection?.id,
parentDocumentId: params.parentDocumentId?.toString(),
templateId: params.templateId?.toString(),
template: params.template === "true" ? true : false,
title: "",
text: "",
});
history.replace(documentEditPath(document), location.state);
} catch (err) {
showToast(t("Couldnt create the document, try again?"), {
type: "error",
});
history.goBack();
}
}
createDocument();
});
return (
<Flex column auto>
<CenteredContent>
<PlaceholderDocument />
</CenteredContent>
</Flex>
);
}
export default observer(DocumentNew);