Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented loading state whil fetching default values #78

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export default function Home() {
zIndex="overlay"
>
<Box
display="flex"
flexDir="column"
bg="chakra-body-bg"
borderRadius={[0, "md"]}
h={["100%", "90%"]}
Expand Down
11 changes: 5 additions & 6 deletions components/InstitutionsTabsList/InstitutionsTabsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@

// TODO fix animation framer https://github.com/skorphil/nextjs-form/issues/25

import { InstitutionTab } from "../InstitutionTab";
import { InstitutionTab } from "~/InstitutionTab";
import { TabList, Heading, Button, Box, IconButton } from "@chakra-ui/react";

import classes from "./InstitutionsTabsList.module.css";
import { CgMathPlus } from "react-icons/cg";
import { useVisualViewportSize } from "../../app/hooks";
import { motion } from "framer-motion";
// import { motion } from "framer-motion";
import { useFormContext } from "react-hook-form";

export function InstitutionsTabsList({ simulateKeyboard = false }) {
export function InstitutionsTabsList({ isKeyboardOpened = false }) {
const {
institutionsFieldArray: { fields: institutions },
handlers: { handleInstitutionCreate },
} = useFormContext();
const { height } = useVisualViewportSize();
const isKeyboardOpened =
simulateKeyboard || (window.innerHeight - height > 200 ? true : false);

// const isKeyboardOpened =
// simulateKeyboard || (window.innerHeight - height > 200 ? true : false);
return (
<Box my={isKeyboardOpened || 3} paddingTop={2}>
{isKeyboardOpened || <Heading size="md">Record Institutions</Heading>}
Expand Down
65 changes: 35 additions & 30 deletions components/RecordForm/RecordForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Root element of the form

import { useForm, FormProvider, useFieldArray } from "react-hook-form";
import classes from "./RecordForm.module.css";
import { Button } from "@chakra-ui/react";
import { Button, Progress, useToast } from "@chakra-ui/react";
import { useState } from "react";

import { InstitutionsList } from "components/InstitutionsList";
Expand All @@ -22,6 +22,7 @@ export function RecordForm() {
const [selectedInstitutionIndex, setSelectedInstitutionIndex] = useState(0);
const router = useRouter();
const arrayName = "institutions";

const { control, ...form } = useForm({
defaultValues: async () => getLatestRecord(),
});
Expand Down Expand Up @@ -63,36 +64,40 @@ export function RecordForm() {

return (
<FormProvider {...formMethods}>
<form className={classes.RecordForm}>
{isInstitutionOpen || (
<FormHeader
text="New Record"
rightButtons={
<>
<Button
onClick={() => {
router.push("/");
}}
variant="outline"
>
Cancel
</Button>
<Button
onClick={formMethods.handleSubmit((data) => {
appendRecord(data);
})}
>
Save
</Button>
</>
}
/>
)}
<InstitutionsList
isInstitutionOpen={isInstitutionOpen}
selectedInstitution={selectedInstitutionIndex}
{isInstitutionOpen || (
<FormHeader
text="New Record"
rightButtons={
<>
<Button
onClick={() => {
router.push("/");
}}
variant="outline"
>
Cancel
</Button>
<Button
onClick={formMethods.handleSubmit((data) => {
appendRecord(data);
})}
>
Save
</Button>
</>
}
/>
</form>
)}
{form.formState.isLoading ? (
<Progress size="xs" isIndeterminate />
) : (
<form className={classes.RecordForm}>
<InstitutionsList
isInstitutionOpen={isInstitutionOpen}
selectedInstitution={selectedInstitutionIndex}
/>
</form>
)}
{/* <DevTool control={formMethods.control} /> */}
</FormProvider>
);
Expand Down
4 changes: 3 additions & 1 deletion components/RecordForm/RecordForm.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.RecordForm {
display: flex;
flex-direction: column;
height: 100%;
flex-shrink: 1;
flex-grow: 1;
height: 600px;
}
12 changes: 12 additions & 0 deletions components/RecordForm/SlowLoadingToast.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { useToast } from "@chakra-ui/react";

export function SlowLoadingToast() {
const toast = useToast();
toast({
title: "Account created.",
description: "We've created your account for you.",
status: "success",
duration: 5000,
isClosable: true,
});
}
Loading