25 lines
697 B
TypeScript
25 lines
697 B
TypeScript
|
import { Group } from '@/app/lib/definitions';
|
||
|
|
||
|
export function loadGroups(onLoad?: (groups: Group[]) => void) {
|
||
|
fetch("/api/groups.json")
|
||
|
.then((response) => response.json())
|
||
|
.then((data) => {
|
||
|
onLoad && onLoad(data.map((record: any) => {
|
||
|
return ({
|
||
|
id: record.id,
|
||
|
name: record.name,
|
||
|
color: record.color,
|
||
|
attendance: {
|
||
|
considered: record.considered,
|
||
|
invited: record.invited,
|
||
|
confirmed: record.confirmed,
|
||
|
tentative: record.tentative,
|
||
|
declined: record.declined,
|
||
|
total: record.total,
|
||
|
}
|
||
|
});
|
||
|
}));
|
||
|
}, (error) => {
|
||
|
return [];
|
||
|
});
|
||
|
}
|