mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
139 lines
4.3 KiB
TypeScript
139 lines
4.3 KiB
TypeScript
"use client";
|
|
import {
|
|
useAssignmentNamesQuery,
|
|
useAssignmentsQueries,
|
|
} from "@/hooks/localCourse/assignmentHooks";
|
|
import {
|
|
usePageNamesQuery,
|
|
usePagesQueries,
|
|
} from "@/hooks/localCourse/pageHooks";
|
|
import {
|
|
useQuizNamesQuery,
|
|
useQuizzesQueries,
|
|
} from "@/hooks/localCourse/quizHooks";
|
|
import { IModuleItem } from "@/models/local/IModuleItem";
|
|
import {
|
|
getDateFromString,
|
|
getDateFromStringOrThrow,
|
|
getDateOnlyMarkdownString,
|
|
} from "@/models/local/timeUtils";
|
|
import { Fragment, useRef, useState } from "react";
|
|
import Modal from "../../../../components/Modal";
|
|
import NewItemForm from "./NewItemForm";
|
|
import { ModuleCanvasStatus } from "./ModuleCanvasStatus";
|
|
import ClientOnly from "@/components/ClientOnly";
|
|
import ExpandIcon from "../../../../components/icons/ExpandIcon";
|
|
import { useDraggingContext } from "../context/draggingContext";
|
|
import DropTargetStyling from "../calendar/DropTargetStyling";
|
|
|
|
export default function ExpandableModule({
|
|
moduleName,
|
|
}: {
|
|
moduleName: string;
|
|
}) {
|
|
const { data: assignmentNames } = useAssignmentNamesQuery(moduleName);
|
|
const { data: quizNames } = useQuizNamesQuery(moduleName);
|
|
const { data: pageNames } = usePageNamesQuery(moduleName);
|
|
const { itemDropOnModule } = useDraggingContext();
|
|
|
|
const { data: assignments } = useAssignmentsQueries(
|
|
moduleName,
|
|
assignmentNames
|
|
);
|
|
const { data: quizzes } = useQuizzesQueries(moduleName, quizNames);
|
|
const { data: pages } = usePagesQueries(moduleName, pageNames);
|
|
|
|
const [expanded, setExpanded] = useState(false);
|
|
|
|
const moduleItems: {
|
|
type: "assignment" | "quiz" | "page";
|
|
item: IModuleItem;
|
|
}[] = assignments
|
|
.map(
|
|
(
|
|
a
|
|
): {
|
|
type: "assignment" | "quiz" | "page";
|
|
item: IModuleItem;
|
|
} => ({
|
|
type: "assignment",
|
|
item: a,
|
|
})
|
|
)
|
|
.concat(quizzes.map((q) => ({ type: "quiz", item: q })))
|
|
.concat(pages.map((p) => ({ type: "page", item: p })))
|
|
.sort(
|
|
(a, b) =>
|
|
getDateFromStringOrThrow(
|
|
a.item.dueAt,
|
|
"item due date in expandable module"
|
|
).getTime() -
|
|
getDateFromStringOrThrow(
|
|
b.item.dueAt,
|
|
"item due date in expandable module"
|
|
).getTime()
|
|
);
|
|
const expandRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
return (
|
|
<div
|
|
className="bg-slate-800 rounded-lg border border-slate-600 mb-3"
|
|
onDrop={(e) => itemDropOnModule(e, moduleName)}
|
|
onDragOver={(e) => e.preventDefault()}
|
|
>
|
|
<DropTargetStyling draggingClassName="shadow-[0_0px_10px_0px] shadow-blue-500/50 ">
|
|
<div className=" p-3 ">
|
|
<div
|
|
className="font-bold flex flex-row justify-between "
|
|
role="button"
|
|
onClick={() => setExpanded((e) => !e)}
|
|
>
|
|
<div>{moduleName}</div>
|
|
<div className="flex flex-row">
|
|
<ClientOnly>
|
|
<ModuleCanvasStatus moduleName={moduleName} />
|
|
</ClientOnly>
|
|
<ExpandIcon
|
|
style={{
|
|
...(expanded ? { rotate: "-90deg" } : {}),
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div
|
|
ref={expandRef}
|
|
className={` overflow-hidden transition-all `}
|
|
style={{
|
|
maxHeight: expanded ? expandRef?.current?.scrollHeight : "0",
|
|
}}
|
|
>
|
|
<Modal buttonText="New Item">
|
|
{({ closeModal }) => (
|
|
<div>
|
|
<NewItemForm moduleName={moduleName} onCreate={closeModal} />
|
|
<br />
|
|
<button onClick={closeModal}>close</button>
|
|
</div>
|
|
)}
|
|
</Modal>
|
|
<div className="grid grid-cols-[auto_1fr]">
|
|
{moduleItems.map(({ type, item }) => {
|
|
const date = getDateFromString(item.dueAt);
|
|
|
|
return (
|
|
<Fragment key={item.name + type}>
|
|
<div className="text-end text-slate-500 me-2">
|
|
{date && getDateOnlyMarkdownString(date)}
|
|
</div>
|
|
<div className="">{item.name}</div>
|
|
</Fragment>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DropTargetStyling>
|
|
</div>
|
|
);
|
|
}
|