diff --git a/compass/components/Drawer/Drawer.tsx b/compass/components/Drawer/Drawer.tsx deleted file mode 100644 index 6879f75..0000000 --- a/compass/components/Drawer/Drawer.tsx +++ /dev/null @@ -1,247 +0,0 @@ -import { FunctionComponent, ReactNode } from "react"; -import React, { useState } from "react"; -import { ChevronDoubleLeftIcon } from "@heroicons/react/24/solid"; -import { - StarIcon as SolidStarIcon, - EnvelopeIcon, - UserIcon, -} from "@heroicons/react/24/solid"; -import { - ArrowsPointingOutIcon, - ArrowsPointingInIcon, - StarIcon as OutlineStarIcon, - ListBulletIcon, -} from "@heroicons/react/24/outline"; -import TagsInput from "../TagsInput/Index"; - -type DrawerProps = { - title: string; - children: ReactNode; - onClick?: (event: React.MouseEvent) => void; - type?: "button" | "submit" | "reset"; // specify possible values for type - disabled?: boolean; - editableContent?: any; - onSave?: (content: any) => void; - rowContent?: any; - onRowUpdate?: (content: any) => void; -}; - -interface EditContent { - content: string; - isEditing: boolean; -} - -const Drawer: FunctionComponent = ({ - title, - children, - onSave, - editableContent, - rowContent, - onRowUpdate, -}) => { - const [isOpen, setIsOpen] = useState(false); - const [isFull, setIsFull] = useState(false); - const [isFavorite, setIsFavorite] = useState(false); - const [tempRowContent, setTempRowContent] = useState(rowContent); - - const handleTempRowContentChange = (e) => { - const { name, value } = e.target; - console.log(name); - console.log(value); - setTempRowContent((prevContent) => ({ - ...prevContent, - [name]: value, - })); - }; - - const handleEnterPress = (e) => { - if (e.key === "Enter") { - e.preventDefault(); - // Update the rowContent with the temporaryRowContent - if (onRowUpdate) { - onRowUpdate(tempRowContent); - } - } - }; - - const toggleDrawer = () => { - setIsOpen(!isOpen); - if (isFull) { - setIsFull(!isFull); - } - }; - - const toggleDrawerFullScreen = () => setIsFull(!isFull); - - const toggleFavorite = () => setIsFavorite(!isFavorite); - - const drawerClassName = `fixed top-0 right-0 w-1/2 h-full bg-white transform ease-in-out duration-300 z-20 ${ - isOpen ? "translate-x-0 shadow-xl" : "translate-x-full" - } ${isFull ? "w-full" : "w-1/2"}`; - - const iconComponent = isFull ? ( - - ) : ( - - ); - - const favoriteIcon = isFavorite ? ( - - ) : ( - - ); - - const [presetOptions, setPresetOptions] = useState([ - "administrator", - "volunteer", - "employee", - ]); - const [rolePresetOptions, setRolePresetOptions] = useState([ - "domestic", - "community", - "economic", - ]); - const [tagColors, setTagColors] = useState(new Map()); - - const getTagColor = (tag: string) => { - if (!tagColors.has(tag)) { - const colors = [ - "bg-cyan-100", - "bg-blue-100", - "bg-green-100", - "bg-yellow-100", - "bg-purple-100", - ]; - const randomColor = - colors[Math.floor(Math.random() * colors.length)]; - setTagColors(new Map(tagColors).set(tag, randomColor)); - } - return tagColors.get(tag); - }; - - return ( -
- -
-
-
-
- - - -

- {rowContent.username} -

-
-
- - - -
-
-
- - - -
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
- - - - - -
- - Username - -
- - Role - -
- - Email - -
- - Type of Program - {/* {rowContent.program} */} - -
-
-
-
-
- ); -}; - -export default Drawer; diff --git a/compass/components/ResourceDrawer/page.tsx b/compass/components/ResourceDrawer/page.tsx new file mode 100644 index 0000000..8870f05 --- /dev/null +++ b/compass/components/ResourceDrawer/page.tsx @@ -0,0 +1,146 @@ +import React, { useState, FunctionComponent } from "react"; +import { + ChevronDoubleLeftIcon, + StarIcon as SolidStarIcon, + UserIcon, +} from "@heroicons/react/24/solid"; +import { + ArrowsPointingOutIcon, + ArrowsPointingInIcon, + StarIcon as OutlineStarIcon, + ListBulletIcon, +} from "@heroicons/react/24/outline"; +import TagsInput from "../TagsInput/Index"; + +type DrawerProps = { + rowContent: any; // Define specific types if known for better TypeScript support +}; + +const ResourceDrawer: FunctionComponent = ({ rowContent }) => { + const [isOpen, setIsOpen] = useState(false); + const [isFull, setIsFull] = useState(false); + const [isFavorite, setIsFavorite] = useState(false); + + const toggleDrawer = () => setIsOpen(!isOpen); + const toggleDrawerFullScreen = () => setIsFull(!isFull); + const toggleFavorite = () => setIsFavorite(!isFavorite); + + const drawerClassName = `fixed top-0 right-0 ${ + isFull ? "w-full" : "w-1/2" + } h-full bg-white transform ease-in-out duration-300 z-20 ${ + isOpen ? "translate-x-0 shadow-xl" : "translate-x-full" + }`; + + return ( +
+ +
+
+

+ {rowContent.name} +

+
+ + + +
+
+
+ + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+ + Name + {rowContent.name} +
+ + Link + + {rowContent.link} + +
+ + Program + +
+ + Summary + {rowContent.summary} +
+
+
+
+
+ ); +}; + +export default ResourceDrawer; diff --git a/compass/components/ServiceDrawer/page.tsx b/compass/components/ServiceDrawer/page.tsx new file mode 100644 index 0000000..e942772 --- /dev/null +++ b/compass/components/ServiceDrawer/page.tsx @@ -0,0 +1,157 @@ +import React, { useState, FunctionComponent } from "react"; +import { + ChevronDoubleLeftIcon, + StarIcon as SolidStarIcon, + UserIcon, +} from "@heroicons/react/24/solid"; +import { + ArrowsPointingOutIcon, + ArrowsPointingInIcon, + StarIcon as OutlineStarIcon, + ListBulletIcon, +} from "@heroicons/react/24/outline"; +import TagsInput from "../TagsInput/Index"; + +type DrawerProps = { + rowContent: any; // Define specific types if known for better TypeScript support +}; + +const ServiceDrawer: FunctionComponent = ({ rowContent }) => { + const [isOpen, setIsOpen] = useState(false); + const [isFull, setIsFull] = useState(false); + const [isFavorite, setIsFavorite] = useState(false); + + const toggleDrawer = () => setIsOpen(!isOpen); + const toggleDrawerFullScreen = () => setIsFull(!isFull); + const toggleFavorite = () => setIsFavorite(!isFavorite); + + const drawerClassName = `fixed top-0 right-0 ${ + isFull ? "w-full" : "w-1/2" + } h-full bg-white transform ease-in-out duration-300 z-20 ${ + isOpen ? "translate-x-0 shadow-xl" : "translate-x-full" + }`; + + return ( +
+ +
+
+

+ {rowContent.name} +

+
+ + + +
+
+
+ + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+ + Name + {rowContent.name} +
+ + Status + + {rowContent.status} + +
+ + Program + +
+ + Requirements + {rowContent.requirements} +
+ + Summary + {rowContent.summary} +
+
+
+
+
+ ); +}; + +export default ServiceDrawer; diff --git a/compass/components/Table/Index.tsx b/compass/components/Table/Index.tsx index 931b039..05e35ba 100644 --- a/compass/components/Table/Index.tsx +++ b/compass/components/Table/Index.tsx @@ -22,7 +22,7 @@ import { Key, } from "react"; import { RowOptionMenu } from "./RowOptionMenu"; -import { RowOpenAction } from "./RowOpenAction"; +import { RowOpenAction } from "./ResourceRowOpenAction"; import { TableAction } from "./TableAction"; import { AtSymbolIcon, diff --git a/compass/components/Table/PrimaryTableCell.tsx b/compass/components/Table/PrimaryTableCell.tsx index 06a85b2..b2dabfb 100644 --- a/compass/components/Table/PrimaryTableCell.tsx +++ b/compass/components/Table/PrimaryTableCell.tsx @@ -1,6 +1,6 @@ /* An extension of TableCell.tsx that includes an "open" button and the drawer. For cells in the "primary" (or first) column of the table. */ -import Drawer from "@/components/Drawer/Drawer"; +import Drawer from "@/components/ResourceDrawer/page"; import { TableCell } from "./TableCell"; import { SetStateAction, useState } from "react"; diff --git a/compass/components/Table/ResourceIndex.tsx b/compass/components/Table/ResourceIndex.tsx index a714836..1666068 100644 --- a/compass/components/Table/ResourceIndex.tsx +++ b/compass/components/Table/ResourceIndex.tsx @@ -22,7 +22,7 @@ import { Key, } from "react"; import { RowOptionMenu } from "./RowOptionMenu"; -import { RowOpenAction } from "./RowOpenAction"; +import { ResourceRowOpenAction } from "./ResourceRowOpenAction"; import { TableAction } from "./TableAction"; import { AtSymbolIcon, @@ -127,7 +127,7 @@ export const ResourceTable = ({ users }: { users: Resource[] }) => { ), cell: (info) => ( - { + const [pageContent, setPageContent] = useState(""); + + const handleDrawerContentChange = (newContent) => { + setPageContent(newContent); + }; + + return ( +
+ {title} + + {/* Added OnRowUpdate to drawer */} + + {pageContent} + + +
+ ); +}; diff --git a/compass/components/Table/ServiceIndex.tsx b/compass/components/Table/ServiceIndex.tsx index 6895984..3809231 100644 --- a/compass/components/Table/ServiceIndex.tsx +++ b/compass/components/Table/ServiceIndex.tsx @@ -22,7 +22,7 @@ import { Key, } from "react"; import { RowOptionMenu } from "./RowOptionMenu"; -import { RowOpenAction } from "./RowOpenAction"; +import { ServiceRowOpenAction } from "./ServiceRowOpenAction"; import { TableAction } from "./TableAction"; import { AtSymbolIcon, @@ -127,7 +127,7 @@ export const ServiceTable = ({ users }: { users: Service[] }) => { ), cell: (info) => ( - { +export const ServiceRowOpenAction = ({ title, rowData, onRowUpdate }) => { const [pageContent, setPageContent] = useState(""); const handleDrawerContentChange = (newContent) => { @@ -13,7 +13,7 @@ export const RowOpenAction = ({ title, rowData, onRowUpdate }) => { {title} {/* Added OnRowUpdate to drawer */} - { onRowUpdate={onRowUpdate} > {pageContent} - + ); diff --git a/compass/components/page/Drawer.tsx b/compass/components/page/Drawer.tsx index 6879f75..6e1cbbe 100644 --- a/compass/components/page/Drawer.tsx +++ b/compass/components/page/Drawer.tsx @@ -169,7 +169,7 @@ const Drawer: FunctionComponent = ({ - Username + Test