client/app/page.tsx (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
'use client'; import { useState } from 'react' import { useRouter } from 'next/navigation' export default function Home() { const [loading, setLoading] = useState(false) const router = useRouter() const startTask = async () => { try { setLoading(true) const response = await fetch('http://localhost:4000/api/start-task', { method: 'POST' }) const data = await response.json() // Redirect to the task details page router.push(`/${data.taskId}`) } catch (error) { console.error('Error starting task:', error) } finally { setLoading(false) } } return ( <div style={{ padding: '20px' }}> <h1>SSE Long Task Example</h1> <button onClick={startTask} disabled={loading}> {loading ? 'Creating task...' : 'Start Long Task'} </button> </div> ) } |