Brijesh's Git Server — sse-from-child-process @ 6b7a97585facdecfbcf6f612b23e6d507f4fdb22

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('https://sse.brijesh.dev/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>
  )
}