-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
164 additions
and
24 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 |
---|---|---|
@@ -1,11 +1,19 @@ | ||
import { useNavigate } from "react-router-dom"; | ||
import { Role } from "./signUp"; | ||
import { Card, Modal } from "antd"; | ||
import { Button, Card, Form, Input, Modal } from "antd"; | ||
import Title from "antd/es/typography/Title"; | ||
import { useState } from "react"; | ||
import { useEffect, useState } from "react"; | ||
import axios from "axios"; | ||
import { | ||
ROLE_LOCALSTORAGE_KEY, | ||
SERVER_URL, | ||
TOKEN_LOCALSTORAGE_KEY, | ||
} from "../constants"; | ||
|
||
import { LogoutOutlined, PlusOutlined } from "@ant-design/icons"; | ||
|
||
export type User = { | ||
id: number; | ||
id: string; | ||
username: string; | ||
email: string; | ||
role: Role; | ||
|
@@ -21,68 +29,162 @@ export const Boss: React.FC = () => { | |
const [selectedEmployee, setSelectedEmployee] = useState<Employee | null>( | ||
null | ||
); | ||
const [isAddingEmployee, setIsAddingEmployee] = useState<boolean>(false); | ||
const [employees, setEmployees] = useState<Employee[]>([]); | ||
useEffect(() => { | ||
axios | ||
.get(`${SERVER_URL}/auth/boos/employee`, { | ||
headers: { | ||
Authorization: `Bearer ${localStorage.getItem( | ||
TOKEN_LOCALSTORAGE_KEY | ||
)}`, | ||
}, | ||
}) | ||
.then((response) => { | ||
setEmployees(response.data); | ||
}); | ||
}, []); | ||
|
||
const EMPLOYEES: Employee[] = [ | ||
{ | ||
id: 1, | ||
id: "1", | ||
username: "employee1", | ||
email: "[email protected]", | ||
role: Role.EMPLOYEE, | ||
bossId: "1", | ||
}, | ||
{ | ||
id: 2, | ||
id: "2", | ||
username: "employee2", | ||
email: "[email protected]", | ||
role: Role.EMPLOYEE, | ||
bossId: "1", | ||
}, | ||
{ | ||
id: 3, | ||
id: "3", | ||
username: "employee3", | ||
email: "[email protected]", | ||
role: Role.EMPLOYEE, | ||
bossId: "1", | ||
}, | ||
]; | ||
|
||
const openModal = (employee: Employee) => { | ||
const openAssignTaskModal = (employee: Employee) => { | ||
setSelectedEmployee(employee); | ||
}; | ||
|
||
const closeModal = () => { | ||
const closeAssignTaskModal = () => { | ||
setSelectedEmployee(null); | ||
}; | ||
|
||
const openAddEmployeeModal = () => { | ||
setIsAddingEmployee(true); | ||
}; | ||
|
||
const closeAddEmployeeModal = () => { | ||
setIsAddingEmployee(false); | ||
}; | ||
|
||
const handleAddEmployee = (employee: Employee) => { | ||
const newEmployee: Employee = { | ||
...employee, | ||
id: `${employee.username}-${employees.length + 1}`, | ||
role: Role.EMPLOYEE, | ||
bossId: "1", | ||
}; | ||
setEmployees([...employees, newEmployee]); | ||
closeAddEmployeeModal(); | ||
}; | ||
|
||
const logout = () => { | ||
localStorage.removeItem(TOKEN_LOCALSTORAGE_KEY); | ||
localStorage.removeItem(ROLE_LOCALSTORAGE_KEY); | ||
navigate("/login"); | ||
}; | ||
return ( | ||
<> | ||
<div | ||
style={{ | ||
margin: 10, | ||
display: "flex", | ||
flexDirection: "row", | ||
flexWrap: "wrap", | ||
height: "100vh", | ||
flexDirection: "column", | ||
height: "calc(100vh - 20px)", | ||
}} | ||
> | ||
{EMPLOYEES.map((employee) => ( | ||
<Card | ||
<header | ||
style={{ | ||
display: "flex", | ||
justifyContent: "space-between", | ||
alignItems: "center", | ||
marginBottom: 10, | ||
}} | ||
> | ||
<Title level={2}>Employees</Title> | ||
<div | ||
style={{ | ||
width: 300, | ||
height: 200, | ||
margin: 10, | ||
padding: 10, | ||
display: "flex", | ||
gap: 10, | ||
}} | ||
key={employee.id} | ||
onClick={() => openModal(employee)} | ||
> | ||
<Title level={3}>{employee.username}</Title> | ||
<p>{employee.email}</p> | ||
</Card> | ||
))} | ||
<Button icon={<PlusOutlined />} onClick={openAddEmployeeModal}> | ||
Add Employee | ||
</Button> | ||
<Button icon={<LogoutOutlined />} onClick={logout}> | ||
Logout | ||
</Button> | ||
</div> | ||
</header> | ||
<div | ||
style={{ | ||
display: "flex", | ||
flexWrap: "wrap", | ||
height: "100%", | ||
}} | ||
> | ||
{employees.length > 0 ? ( | ||
employees.map((employee) => ( | ||
<Card | ||
style={{ | ||
width: 300, | ||
height: 200, | ||
margin: 10, | ||
padding: 10, | ||
}} | ||
key={employee.id} | ||
onClick={() => openAssignTaskModal(employee)} | ||
> | ||
<Title level={3}>{employee.username}</Title> | ||
<p>{employee.email}</p> | ||
</Card> | ||
)) | ||
) : ( | ||
<div | ||
style={{ | ||
display: "flex", | ||
flex: 1, | ||
justifyContent: "center", | ||
alignItems: "center", | ||
flexDirection: "column", | ||
width: "100%", | ||
}} | ||
> | ||
<Title level={3}>No employees found</Title> | ||
<Button | ||
icon={<PlusOutlined />} | ||
onClick={() => { | ||
setEmployees(EMPLOYEES); | ||
}} | ||
> | ||
Use hardcoded employees to test the page | ||
</Button> | ||
</div> | ||
)} | ||
</div> | ||
</div> | ||
<Modal | ||
okText="Assign Task" | ||
open={selectedEmployee !== null} | ||
onCancel={closeModal} | ||
onCancel={closeAssignTaskModal} | ||
> | ||
<div | ||
style={{ | ||
|
@@ -93,6 +195,44 @@ export const Boss: React.FC = () => { | |
<p>Tasks:</p> | ||
</div> | ||
</Modal> | ||
<Modal | ||
okText="Add Employee" | ||
open={isAddingEmployee} | ||
onCancel={closeAddEmployeeModal} | ||
> | ||
<div | ||
style={{ | ||
margin: 10, | ||
}} | ||
> | ||
<Title level={3}> | ||
This will only hardcode employee, to test UI, you can create it with | ||
signUp page | ||
</Title> | ||
<p>Form to add employee</p> | ||
<Form onFinish={handleAddEmployee}> | ||
<Form.Item | ||
name="username" | ||
label="Username" | ||
rules={[{ required: true }]} | ||
> | ||
<Input /> | ||
</Form.Item> | ||
<Form.Item<Employee> | ||
name="email" | ||
label="Email" | ||
rules={[{ required: true, type: "email" }]} | ||
> | ||
<Input /> | ||
</Form.Item> | ||
<Form.Item> | ||
<Button type="primary" htmlType="submit"> | ||
Add hardcoded employee | ||
</Button> | ||
</Form.Item> | ||
</Form> | ||
</div> | ||
</Modal> | ||
</> | ||
); | ||
}; |