Extract a table simulations API
This commit is contained in:
parent
92d929c8e1
commit
28abb23a77
17
app/api/tableSimulations.tsx
Normal file
17
app/api/tableSimulations.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import { TableArrangement } from '@/app/lib/definitions';
|
||||
|
||||
export function loadTableSimulations(onLoad?: (tableSimulations: TableArrangement[]) => void) {
|
||||
fetch('/api/tables_arrangements')
|
||||
.then((response) => response.json())
|
||||
.then((data) => {
|
||||
onLoad && onLoad(data.map((record: any) => {
|
||||
return ({
|
||||
id: record.id,
|
||||
name: record.name,
|
||||
discomfort: record.discomfort,
|
||||
});
|
||||
}));
|
||||
}, (error) => {
|
||||
return [];
|
||||
});
|
||||
}
|
@ -6,31 +6,24 @@ import React, { useState } from "react"
|
||||
import { TableArrangement } from '@/app/lib/definitions';
|
||||
import { classNames } from "../components/button";
|
||||
import TableOfContents from "../components/table-of-contents";
|
||||
import { loadTableSimulations } from "@/app/api/tableSimulations";
|
||||
|
||||
export default function ArrangementsTable ({onArrangementSelected}: {onArrangementSelected: (arrangementId: string) => void}) {
|
||||
const [arrangements, setArrangements] = useState<Array<TableArrangement>>([]);
|
||||
const [arrangementsLoaded, setArrangementsLoaded] = useState(false);
|
||||
|
||||
function loadArrangements() {
|
||||
fetch("/api/tables_arrangements")
|
||||
.then((response) => response.json())
|
||||
.then((data) => {
|
||||
setArrangements(data.map((record: any) => {
|
||||
return ({
|
||||
id: record.id,
|
||||
name: record.name,
|
||||
discomfort: record.discomfort
|
||||
});
|
||||
}));
|
||||
}, (error) => {
|
||||
return [];
|
||||
});
|
||||
function refreshSimulations() {
|
||||
loadTableSimulations((arrangements) => {
|
||||
setArrangements(arrangements);
|
||||
setArrangementsLoaded(true);
|
||||
});
|
||||
}
|
||||
|
||||
function arrangementClicked(e: React.MouseEvent<HTMLElement>) {
|
||||
onArrangementSelected(e.currentTarget.getAttribute('data-arrangement-id') || '');
|
||||
}
|
||||
|
||||
arrangements.length === 0 && loadArrangements();
|
||||
!arrangementsLoaded && refreshSimulations();
|
||||
|
||||
return(
|
||||
<TableOfContents
|
||||
|
Loading…
x
Reference in New Issue
Block a user