api: add Person and StreamingService contexts
This commit is contained in:
40
apis/personApi.ts
Normal file
40
apis/personApi.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
export type PersonHistorySeasonRaw = {
|
||||
seasonId: number;
|
||||
show: number;
|
||||
seasonNumber: number;
|
||||
startDate?: string;
|
||||
endDate?: string | null;
|
||||
seasonParticipants: any[];
|
||||
};
|
||||
|
||||
export type PersonHistoryEntry = {
|
||||
showId: number;
|
||||
seasonId: number;
|
||||
seasonNumber: number;
|
||||
};
|
||||
|
||||
const PERSON_API_BASE = "http://45.157.177.99:8080/persons";
|
||||
|
||||
export async function getPersonHistory(
|
||||
personId: number
|
||||
): Promise<PersonHistoryEntry[]> {
|
||||
const url = `${PERSON_API_BASE}/${personId}/history`;
|
||||
try {
|
||||
console.log("[getPersonHistory] Fetch:", url);
|
||||
const res = await fetch(url);
|
||||
if (!res.ok) throw new Error("History fetch failed " + res.status);
|
||||
const data: unknown = await res.json();
|
||||
if (!Array.isArray(data)) {
|
||||
console.warn("History expected array, got:", data);
|
||||
return [];
|
||||
}
|
||||
return (data as PersonHistorySeasonRaw[]).map((s) => ({
|
||||
showId: s.show,
|
||||
seasonId: s.seasonId,
|
||||
seasonNumber: s.seasonNumber,
|
||||
}));
|
||||
} catch (e) {
|
||||
console.error("getPersonHistory error:", e);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user