Last active
June 5, 2024 04:40
-
-
Save mishushakov/c03f16942ba4af4c304996de22d72730 to your computer and use it in GitHub Desktop.
A React hook for calling Next.js Server Actions from client components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use client' | |
import { test } from './server' | |
import { useServerAction } from './hook' | |
export default function Home() { | |
const { data, loading, error, execute: testAction } = useServerAction(test) | |
if (loading) return <div>Loading...</div> | |
if (error) return <div>Error: {error.message}</div> | |
return ( | |
<> | |
<form action={testAction}> | |
<input type="text" name='name' /> | |
<button type="submit">Submit</button> | |
</form> | |
<div>{data}</div> | |
</> | |
) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use server' | |
export async function test(form: FormData) { | |
const name = form.get('name') | |
return name?.toString() | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from 'react' | |
type AsyncFunction = (...args: any) => Promise<any> | |
export function useServerAction<T extends AsyncFunction>(action: T) { | |
const [loading, setLoading] = useState(false) | |
const [error, setError] = useState<Error | null | undefined>(null) | |
const [data, setData] = useState<Awaited<ReturnType<T>> | null | undefined>(null) | |
async function execute (...payload: Parameters<T>) { | |
setLoading(true) | |
setError(null) | |
setData(null) | |
try { | |
const res = await action(payload) | |
setData(res) | |
} catch (e: any) { | |
setError(e) | |
} | |
setLoading(false) | |
} | |
return { | |
data, | |
loading, | |
error, | |
execute | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the payload formData is most likely empyt.