GeneIT/geneit_app/src/api/FamilyApi.ts

124 lines
2.5 KiB
TypeScript
Raw Normal View History

2023-06-27 15:13:12 +00:00
import { APIClient } from "./ApiClient";
2023-07-07 16:57:43 +00:00
interface FamilyAPI {
2023-07-07 16:41:00 +00:00
user_id: number;
family_id: number;
name: string;
time_create: number;
is_admin: boolean;
invitation_code: string;
count_members: number;
count_admins: number;
}
2023-06-27 15:13:12 +00:00
2023-07-07 16:57:43 +00:00
export class Family implements FamilyAPI {
user_id: number;
family_id: number;
name: string;
time_create: number;
is_admin: boolean;
invitation_code: string;
count_members: number;
count_admins: number;
constructor(f: FamilyAPI) {
this.user_id = f.user_id;
this.family_id = f.family_id;
this.name = f.name;
this.time_create = f.time_create;
this.is_admin = f.is_admin;
this.invitation_code = f.invitation_code;
this.count_members = f.count_members;
this.count_admins = f.count_admins;
}
/**
* Check if the current user user can leave a family
*/
get CanLeave(): boolean {
return !this.is_admin || this.count_admins > 1;
}
/**
* Get application URL for family
*/
URL(uri?: string): string {
return `/family/${this.family_id}/${uri ?? ""}`;
}
/**
* Get base family URL
*/
get BaseURL(): string {
return this.URL("");
}
}
2023-06-27 16:52:49 +00:00
export enum JoinFamilyResult {
TooManyRequests,
InvalidCode,
AlreadyMember,
Error,
Success,
}
2023-06-27 15:13:12 +00:00
export class FamilyApi {
/**
* Create a new family
*/
static async CreateFamily(name: string): Promise<void> {
await APIClient.exec({
method: "POST",
uri: "/family/create",
jsonData: { name: name },
});
}
2023-06-27 16:52:49 +00:00
/**
* Join an existing family
*/
static async JoinFamily(code: string): Promise<JoinFamilyResult> {
const res = await APIClient.exec({
method: "POST",
uri: "/family/join",
allowFail: true,
jsonData: { code: code },
});
if (res.status >= 200 && res.status < 300) return JoinFamilyResult.Success;
switch (res.status) {
case 429:
return JoinFamilyResult.TooManyRequests;
case 404:
return JoinFamilyResult.InvalidCode;
case 409:
return JoinFamilyResult.AlreadyMember;
default:
return JoinFamilyResult.Error;
}
}
2023-07-04 17:05:36 +00:00
/**
* Get the list of families
*/
2023-07-07 16:41:00 +00:00
static async GetList(): Promise<Family[]> {
return (
await APIClient.exec({
method: "GET",
uri: "/family/list",
})
2023-07-07 16:57:43 +00:00
).data.map((f: FamilyAPI) => new Family(f));
2023-07-07 16:41:00 +00:00
}
/**
* Attempt to leave a family
*/
static async LeaveFamily(id: number): Promise<void> {
await APIClient.exec({
method: "POST",
uri: `/family/${id}/leave`,
});
}
}