-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[front] request matchボタンからmatch をrequest する (#286)
* [frontend] request match ボタンから request 出来る * [front] denyされた後に listener を解除した
- Loading branch information
Showing
2 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
"use client"; | ||
import { Button } from "@/components/ui/button"; | ||
import { useFormState } from "react-dom"; | ||
import { useRequestMatch } from "@/app/lib/hooks/useRequestMatch"; | ||
|
||
export default function MatchRequestButton({ id }: { id: number }) { | ||
// TODO: Implement this | ||
const [code, action] = useFormState( | ||
() => console.log("Match Request to ", id), | ||
undefined, | ||
const { | ||
sendRequestPending, | ||
isRequestingMatch, | ||
requestMatch, | ||
cancelRequestMatch, | ||
} = useRequestMatch(id); | ||
|
||
return isRequestingMatch ? ( | ||
<Button onClick={cancelRequestMatch} disabled={sendRequestPending}> | ||
Cancel Request | ||
</Button> | ||
) : ( | ||
<Button onClick={requestMatch} disabled={sendRequestPending}> | ||
Request Match | ||
</Button> | ||
); | ||
return <Button onClick={action}>Request Match</Button>; | ||
} |