-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/willji0023/announcement display (#129)
- Loading branch information
1 parent
201899a
commit d4554d6
Showing
5 changed files
with
421 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
import React, { useContext, useEffect, useState } from "react"; | ||
import { APIContext } from "../../../context/APIContext"; | ||
import { AuthContext } from "../../../context/AuthContext"; | ||
import Button from "@mui/material/Button"; | ||
import styles from "./communicate.module.css"; | ||
import { Announcement } from "../../../models"; | ||
import { CustomError } from "../../../components/util/CustomError"; | ||
import { CommunicateItem } from "./CommunicateItem"; | ||
|
||
type CommunicateProps = { | ||
id: string; | ||
}; | ||
|
||
export const Communicate: React.FC<CommunicateProps> = ({ id }) => { | ||
const api = useContext(APIContext); | ||
const { user } = useContext(AuthContext); | ||
const [popup, setPopup] = useState(false); | ||
const [announcements, setAnnouncements] = useState<Announcement[]>([]); | ||
const [title, setTitle] = useState(""); | ||
const [content, setContent] = useState(""); | ||
const [refresh, setRefresh] = useState(false); | ||
const [error, setError] = useState(false); | ||
|
||
useEffect(() => { | ||
(async () => { | ||
const res = await api.getAnnouncements(id); | ||
setAnnouncements(res); | ||
})(); | ||
}, [refresh]); | ||
|
||
const handleClick: VoidFunction = () => { | ||
setPopup(!popup); | ||
}; | ||
|
||
const handleCancel = async (): Promise<void> => { | ||
setError(false); | ||
setPopup(false); | ||
}; | ||
|
||
const handleSubmit = async (): Promise<void> => { | ||
if (title == "" || content == "") { | ||
setError(true); | ||
} else { | ||
const announcement = { | ||
title: title, | ||
content: content, | ||
}; | ||
await api.createAnnouncement(id, announcement); | ||
triggerClassModuleRefresh(); | ||
setError(false); | ||
setPopup(false); | ||
setTitle(""); | ||
setContent(""); | ||
} | ||
}; | ||
|
||
const triggerClassModuleRefresh = (): void => { | ||
setRefresh(!refresh); | ||
}; | ||
|
||
if (user == null) return <CustomError />; | ||
|
||
return ( | ||
<div className={styles.container}> | ||
{popup ? ( | ||
<div className={styles.popupBackground}> | ||
<div className={styles.popupContainer}> | ||
<div className={styles.popupTitle}>New Post</div> | ||
<input | ||
className={`${styles.label} ${styles.titleInput}`} | ||
value={title} | ||
onChange={(e) => setTitle(e.target.value)} | ||
type="text" | ||
placeholder="Summary" | ||
/> | ||
<textarea | ||
className={`${styles.label} ${styles.contentInput}`} | ||
value={content} | ||
onChange={(e) => setContent(e.target.value)} | ||
placeholder="Message here" | ||
/> | ||
{error && ( | ||
<div className={styles.popupError}> Please give the post a title and a message. </div> | ||
)} | ||
<div className={styles.buttonContainer}> | ||
<button onClick={handleCancel} className={styles.cancel}> | ||
Cancel | ||
</button> | ||
<button onClick={handleSubmit} className={styles.submit}> | ||
Submit | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
) : null} | ||
|
||
<div className={styles.title}>Communicate</div> | ||
<div className={styles.line} /> | ||
{(user.role == "Teacher" || user.role == "Admin") && ( | ||
<> | ||
<div className={styles.spacer} /> | ||
<Button className={styles.button} onClick={handleClick}> | ||
+ New Post | ||
</Button> | ||
</> | ||
)} | ||
<div className={styles.spacer} /> | ||
<div className={styles.accordionHeader}> | ||
<div> | ||
<div className={styles.dropdownHeader}>Announcements</div> | ||
</div> | ||
<div> | ||
{announcements.map((announcement, idx) => ( | ||
<CommunicateItem | ||
key={`${announcement.title}-${idx}`} | ||
id={id} | ||
announcement={announcement} | ||
idx={idx} | ||
triggerClassModuleRefresh={triggerClassModuleRefresh} | ||
/> | ||
))} | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
77 changes: 77 additions & 0 deletions
77
components/SingleClassView/Communicate/CommunicateItem.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import styles from "./communicate.module.css"; | ||
import React, { useState, useContext } from "react"; | ||
import { APIContext } from "../../../context/APIContext"; | ||
import { AuthContext } from "../../../context/AuthContext"; | ||
import { Announcement } from "../../../models"; | ||
import { CustomError } from "../../../components/util/CustomError"; | ||
|
||
type CommunicateItemProps = { | ||
id: string; | ||
announcement: Announcement; | ||
idx: number; | ||
triggerClassModuleRefresh: () => void; | ||
}; | ||
|
||
export const CommunicateItem: React.FC<CommunicateItemProps> = ({ | ||
id, | ||
announcement, | ||
idx, | ||
triggerClassModuleRefresh, | ||
}) => { | ||
const api = useContext(APIContext); | ||
const { user } = useContext(AuthContext); | ||
const [showContent, setShowContent] = useState(false); | ||
const [deleteItem, setDeleteItem] = useState(false); | ||
|
||
const handleClick: VoidFunction = () => { | ||
setShowContent(!showContent); | ||
}; | ||
|
||
const handleCancel: VoidFunction = () => { | ||
setDeleteItem(false); | ||
}; | ||
|
||
const handleDeleteConfirm = async (): Promise<void> => { | ||
await api.deleteAnnouncement(id, announcement.announcementId); | ||
triggerClassModuleRefresh(); | ||
}; | ||
|
||
if (user == null) return <CustomError />; | ||
|
||
return ( | ||
<> | ||
<div className={styles.dropdownItem} key={`${announcement.title}-${idx}`}> | ||
<div className={styles.dropdownItemText} onClick={handleClick}> | ||
{" "} | ||
{announcement.title}{" "} | ||
</div> | ||
{(user.role == "Teacher" || user.role == "Admin") && ( | ||
<img src="/Trash.svg" className={styles.trash} onClick={() => setDeleteItem(true)} /> | ||
)} | ||
</div> | ||
{showContent && ( | ||
<div className={styles.dropdownDropdownItem} key={`${announcement.title}-${idx}`}> | ||
{announcement.content.trimEnd()} | ||
</div> | ||
)} | ||
|
||
{deleteItem ? ( | ||
<div className={styles.popupBackground}> | ||
<div className={styles.popupContainer}> | ||
<div className={styles.popupTitle}> | ||
Do you want to delete the following lesson: {announcement.title}? | ||
</div> | ||
<div className={styles.buttonContainer}> | ||
<button onClick={handleCancel} className={styles.cancel}> | ||
Cancel | ||
</button> | ||
<button onClick={handleDeleteConfirm} className={styles.submit}> | ||
Yes | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
) : null} | ||
</> | ||
); | ||
}; |
Oops, something went wrong.