This commit is contained in:
al8763be 2024-03-20 01:14:30 +01:00
parent 0b6edd359e
commit 7b78767f50

View file

@ -4,6 +4,7 @@ import {
User,
Project,
NewProject,
WeeklyReport,
} from "../Types/goTypes";
// This type of pattern should be hard to misuse
@ -49,9 +50,10 @@ interface API {
token: string,
): Promise<APIResponse<NewWeeklyReport>>;
getWeeklyReportsForProject(
username: string,
projectName: string,
token: string,
): Promise<APIResponse<NewWeeklyReport[]>>;
): Promise<APIResponse<WeeklyReport[]>>;
/** Gets all the projects of a user*/
getUserProjects(token: string): Promise<APIResponse<Project[]>>;
/** Gets a project from id*/
@ -272,15 +274,19 @@ export const api: API = {
}
},
async getWeeklyReportsForProject(projectName: string, token: string) {
async getWeeklyReportsForProject(
username: string,
projectName: string,
token: string,
) {
try {
const response = await fetch("/api/getWeeklyReportsForProject", {
const response = await fetch("/api/getWeeklyReportsUser", {
method: "GET",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + token,
},
body: JSON.stringify({ projectName }),
body: JSON.stringify({ username, projectName }),
});
if (!response.ok) {
@ -289,7 +295,7 @@ export const api: API = {
message: "Failed to get weekly reports for project",
};
} else {
const data = (await response.json()) as NewWeeklyReport[];
const data = (await response.json()) as WeeklyReport[];
return { success: true, data };
}
} catch (e) {