/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/ 'use client'; import { AbstractApi } from '@/app/api/abstract-api'; import { TableSimulation, TableSimulationSerializer } from '@/app/lib/tableSimulation'; import Arrangement from '@/app/ui/arrangements/arrangement'; import ArrangementsTable from '@/app/ui/arrangements/arrangements-table'; import { classNames } from '@/app/ui/components/button'; import { Toast } from 'primereact/toast'; import React, { useRef, useState } from 'react'; export default function Page() { const toast = useRef(null); const show = () => { toast.current?.show({ severity: 'success', summary: 'Simulation created', detail: 'Table distributions will be calculated shortly, please come back in some minutes' }); }; const [currentArrangement, setCurrentArrangement] = useState(null); function createSimulation() { const api = new AbstractApi(); const serializer = new TableSimulationSerializer(); api.create(serializer, new TableSimulation(), show); } return ( <>
{currentArrangement && } ) }